|
|
|
@ -162,9 +162,11 @@
|
|
|
|
|
:data="registrationList"
|
|
|
|
|
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="recordProductName"
|
|
|
|
|
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="recordPeopleName"
|
|
|
|
|
show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产企业" prop="manufacturerName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="所属供应商" prop="supName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" prop="auditStatus" width="120">
|
|
|
|
@ -285,7 +287,7 @@ export default {
|
|
|
|
|
add: "新增生产企业资质信息",
|
|
|
|
|
update: "编辑生产企业资质信息",
|
|
|
|
|
},
|
|
|
|
|
tital:"",
|
|
|
|
|
tital: "",
|
|
|
|
|
currentManufacturer: null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -363,7 +365,7 @@ export default {
|
|
|
|
|
this.registrationList = [];
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.filterQuery.page=1
|
|
|
|
|
this.filterQuery.page = 1
|
|
|
|
|
this.getList();
|
|
|
|
|
this.registrationList = [];
|
|
|
|
|
},
|
|
|
|
@ -393,11 +395,11 @@ export default {
|
|
|
|
|
this.enterpriseId = row.id;
|
|
|
|
|
this.editType = 1;
|
|
|
|
|
this.inputQuery = row;
|
|
|
|
|
this.tital="编辑生产企业资质信息";
|
|
|
|
|
this.tital = "编辑生产企业资质信息";
|
|
|
|
|
} else {
|
|
|
|
|
this.enterpriseId = null;
|
|
|
|
|
this.editType = 0;
|
|
|
|
|
this.tital="新增生产企业资质信息";
|
|
|
|
|
this.tital = "新增生产企业资质信息";
|
|
|
|
|
this.inputQuery = {
|
|
|
|
|
auditStatus: 0
|
|
|
|
|
};
|
|
|
|
@ -480,16 +482,16 @@ export default {
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
onSubmit2() {
|
|
|
|
|
if(this.currentManufacturer==null){
|
|
|
|
|
if (this.currentManufacturer == null) {
|
|
|
|
|
this.$message.error("请先选中生产企业!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.registrationQuery.page=1;
|
|
|
|
|
this.registrationQuery.page = 1;
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
registrationDialog(row) {
|
|
|
|
|
|
|
|
|
|
if(this.currentManufacturer==null){
|
|
|
|
|
if (this.currentManufacturer == null) {
|
|
|
|
|
this.$message.error("请先选中生产企业!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
@ -497,7 +499,7 @@ export default {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
this.registrationId = row.id;
|
|
|
|
|
this.curProductQuery = row;
|
|
|
|
|
this.curProductQuery.cuStatus=this.currentManufacturer.auditStatus;
|
|
|
|
|
this.curProductQuery.cuStatus = this.currentManufacturer.auditStatus;
|
|
|
|
|
this.formName = "update";
|
|
|
|
|
this.editProductType = 1;
|
|
|
|
|
} else {
|
|
|
|
@ -505,7 +507,7 @@ export default {
|
|
|
|
|
this.formName = "add";
|
|
|
|
|
this.curProductQuery = {
|
|
|
|
|
auditStatus: 0,
|
|
|
|
|
cuStatus:this.currentManufacturer.auditStatus
|
|
|
|
|
cuStatus: this.currentManufacturer.auditStatus
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
this.registrationVisible = true;
|
|
|
|
@ -579,7 +581,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.fileUrl = BASE_URL + "/udiwms/image/register/file/getImage?type=image4&name=";
|
|
|
|
|
this.getList();
|
|
|
|
|
// this.getRegistrationList();
|
|
|
|
|
// this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|