|
|
|
@ -251,7 +251,7 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="物资名称:">
|
|
|
|
|
<el-input v-model="registrationQuery.recordProductName" style="width: 90%;" clearable="true"
|
|
|
|
|
<el-input v-model="registrationQuery.cpmctymc" style="width: 90%;" clearable="true"
|
|
|
|
|
placeholder="请输入物资名称"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -283,7 +283,7 @@
|
|
|
|
|
<el-table v-loading="registrationLoading" :data="registrationList" border highlight-current-row
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="recordProductName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="recordCode" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案人名称" prop="recordPeopleName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufacturerName" show-overflow-tooltip></el-table-column>
|
|
|
|
@ -583,11 +583,12 @@ export default {
|
|
|
|
|
|
|
|
|
|
/**-------------------------生产企业资质--------------------------*/
|
|
|
|
|
onManufacturerReset() {
|
|
|
|
|
let customerId = this.filterManufacturerQuery.customerId;
|
|
|
|
|
let companyIdFk = this.filterManufacturerQuery.customerId;
|
|
|
|
|
// let customerId = this.filterManufacturerQuery.customerId;
|
|
|
|
|
|
|
|
|
|
this.filterManufacturerQuery = {
|
|
|
|
|
customerId: "",
|
|
|
|
|
companyIdFk:customerId,
|
|
|
|
|
companyIdFk:companyIdFk,
|
|
|
|
|
companyName: "",
|
|
|
|
|
creditCode: "",
|
|
|
|
|
placeArea: "",
|
|
|
|
@ -663,7 +664,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
supManufacturerClick(row) {
|
|
|
|
|
this.registrationQuery.customerId = row.customerId;
|
|
|
|
|
//bur的id
|
|
|
|
|
this.registrationQuery.customerId = row.id;
|
|
|
|
|
//sm的manufacturerId
|
|
|
|
|
this.registrationQuery.manufacturerIdFk = row.manufacturerId;
|
|
|
|
|
this.onReset2();
|
|
|
|
|
},
|
|
|
|
@ -672,12 +675,13 @@ export default {
|
|
|
|
|
/**-------------------------配送产品资质--------------------------*/
|
|
|
|
|
onReset2() {
|
|
|
|
|
|
|
|
|
|
let customerId = this.registrationQuery.customerId;
|
|
|
|
|
let burId = this.registrationQuery.customerId;
|
|
|
|
|
let manufacturerIdFk = this.registrationQuery.manufacturerIdFk;
|
|
|
|
|
|
|
|
|
|
this.registrationQuery = {
|
|
|
|
|
customerId: customerId,
|
|
|
|
|
// customerId: customerId,
|
|
|
|
|
manufacturerIdFk: manufacturerIdFk,
|
|
|
|
|
burId: burId,
|
|
|
|
|
recordProductName: "",
|
|
|
|
|
recordCode: "",
|
|
|
|
|
recordPeopleName: "",
|
|
|
|
|