|
|
@@ -37,7 +37,7 @@
|
|
|
<div slot="header" class="clearfix">
|
|
|
<span>供方基本信息表</span>
|
|
|
</div>
|
|
|
- <goods-info ref="TechInfo" :formData.sync="formData" :dictData.sync="dictData" :disabled="true">
|
|
|
+ <goods-info ref="GoodsInfo" :formData.sync="formData" :dictData.sync="dictData" :disabled="true">
|
|
|
</goods-info>
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
@@ -159,8 +159,8 @@
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="准入范围" :disabled="!certId">
|
|
|
- <business-list ref="businessList" :data.sync="businessList" :canadd="add_flat" height="360px"
|
|
|
- style="margin-top: 20px"></business-list>
|
|
|
+ <goods-list ref="goodsList" :data.sync="goodsList" :canadd="add_flat" :candelete="delete_flat" height="360px"
|
|
|
+ style="margin-top: 20px"></goods-list>
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane label="企业资质">
|
|
|
@@ -354,7 +354,7 @@
|
|
|
import WinningList from '@/components/oilsupplier/winninglist'
|
|
|
import AuditbusList from '@/components/oilsupplier/auditbuslist'
|
|
|
import GoodsInfo from '@/components/oilsupplier/goodsinfo'
|
|
|
- import BusinessList from '@/components/oilsupplier/businesslist'
|
|
|
+ import GoodsList from '@/components/oilsupplier/goodslist'
|
|
|
import ChooseAuditor from '@/components/oilsupplier/chooseauditor'
|
|
|
|
|
|
export default {
|
|
|
@@ -371,7 +371,7 @@
|
|
|
PatentList, // 专利及专有技术列表
|
|
|
WinningList, // 近三年省部级及以上获奖项目列表
|
|
|
AuditbusList, // 待审核业务
|
|
|
- BusinessList, // 选择准入范围
|
|
|
+ GoodsList, // 选择准入范围
|
|
|
GoodsInfo
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -394,7 +394,7 @@
|
|
|
winningList: [], // 近三年省部级及以上获奖项目
|
|
|
auditbusList: [], // 待审核业务
|
|
|
auditerOptions: [], // 审核人员
|
|
|
- businessList: [], // 准入业务
|
|
|
+ goodsList: [], // 准入业务
|
|
|
secauditerOptions: [],
|
|
|
auditerCurOptions: [],
|
|
|
organizeOption: [],
|
|
|
@@ -420,6 +420,7 @@
|
|
|
dialogMakeSure2: false,
|
|
|
dialogAllocation: false,
|
|
|
add_flat: false,
|
|
|
+ delete_flat:true,
|
|
|
aduitlabel: '审核人',
|
|
|
auditTitle: '审批',
|
|
|
auditBtn: false,
|
|
|
@@ -630,6 +631,20 @@
|
|
|
if (this.formData.Id) {
|
|
|
api.getEntityAndCert(this.certId, this.$axios).then(res => {
|
|
|
this.formData = res.data
|
|
|
+ this.$refs["GoodsInfo"].CityAry = [];
|
|
|
+ this.$refs["GoodsInfo"].CityAry.push(this.formData.Province);
|
|
|
+ this.$refs["GoodsInfo"].CityAry.push(this.formData.City);
|
|
|
+ this.$refs["GoodsInfo"].CityAry.push(this.formData.Street);
|
|
|
+ this.$refs["GoodsInfo"].LinkCityAry = [];
|
|
|
+ this.$refs["GoodsInfo"].LinkCityAry.push(this.formData.LinkProvince);
|
|
|
+ this.$refs["GoodsInfo"].LinkCityAry.push(this.formData.LinkCity);
|
|
|
+ this.$refs["GoodsInfo"].LinkCityAry.push(this.formData.LinkStreet);
|
|
|
+ if (this.formData.CredentialFlag != "") {
|
|
|
+ this.$refs["GoodsInfo"].showorhid(this.formData.CredentialFlag)
|
|
|
+ }
|
|
|
+ if (this.formData.Status != 4) {
|
|
|
+ this.delete_flat = false
|
|
|
+ }
|
|
|
console.log("--this.formData--", this.formData)
|
|
|
this.formDataCert.WorkerTotal = this.formData.WorkerTotal
|
|
|
this.formDataCert.ContractNum = this.formData.ContractNum
|
|
|
@@ -682,7 +697,7 @@
|
|
|
this.$refs['performanceList'].getvalue(this.formData.Id, this.formData.SupplierTypeCode, this.certId)
|
|
|
this.$refs['patentList'].getvalue(this.formData.Id, this.formData.SupplierTypeCode, this.certId)
|
|
|
this.$refs['winningList'].getvalue(this.formData.Id, this.formData.SupplierTypeCode, this.certId)
|
|
|
- this.$refs['businessList'].getvalue(this.formData.Id, this.formData.SupplierTypeCode, this.certId)
|
|
|
+ this.$refs['goodsList'].getvalue(this.formData.Id, this.formData.SupplierTypeCode, this.certId)
|
|
|
this.isAccess()
|
|
|
}).catch(err => {
|
|
|
console.error(err)
|