修改资质功能bug

tagView
zhengmingliang 2 years ago
parent 51a3a0c67a
commit d936ea4fe6

@ -88,8 +88,8 @@
<el-col :span="8">
<el-form-item prop="need">
<el-select v-model="formData.status" style="width: 100%">
<el-option label="禁用" :value=1></el-option>
<el-option label="启用" :value=0></el-option>
<el-option label="失效" :value=1></el-option>
<el-option label="有效" :value=0></el-option>
</el-select>
</el-form-item>
</el-col>

@ -184,6 +184,7 @@
<el-button
type="text"
size="small"
:disabled="scope.row.auditStatus === 1"
@click.native="deleteRegistration(scope.row)"
>删除
</el-button
@ -464,6 +465,10 @@ export default {
this.getRegistrationList();
},
onSubmit2() {
if(this.currentManufacturer==null){
this.$message.error("请先选中生产企业!");
return
}
this.getRegistrationList();
},
registrationDialog(row) {

@ -142,6 +142,11 @@
<el-table-column label="有效期" prop="vailDate"></el-table-column>
<el-table-column label="失效期" prop="expireDate"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="证书状态" prop="status">
<template slot-scope="scope">
{{ supStatus[scope.row.status] }}
</template>
</el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
@ -355,6 +360,10 @@ export default {
3: "变更未审核",
6: "未审核",
},
supStatus: {
0: "有效",
1: "失效",
},
certAuditVisible: false,
currentAudit: {},
};

@ -226,7 +226,7 @@
type="text"
size="small"
@click.native="addCert(scope.row)"
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus == 2|| scope.row.auditStatus == 6"
>编辑
</el-button
>
@ -358,7 +358,7 @@ export default {
classesDisplay: false,
selectedOptions: [],
selectedOptions2: [],
options: regionDataPlus,
options: regionData,
rules: {
customerId: [
@ -478,7 +478,10 @@ export default {
} else {
this.certQuery.customerId = this.inputQuery.customerId;
this.selectedOptions = this.inputQuery.placeAreaCode.split(",");
this.selectedOptions2 = this.inputQuery.productionAreaCode.split(",");
if(this.inputQuery.productionAreaCode!="" && this.inputQuery.productionAreaCode!=null && this.inputQuery.productionAreaCode!=undefined){
this.selectedOptions2 = this.inputQuery.productionAreaCode.split(",");
}
}
this.certQuery.manufacturerIdFk = this.inputQuery.manufacturerId;

@ -42,7 +42,7 @@
size="mini"
icon="search"
v-if="inputQuery.auditStatus == 4|| inputQuery.auditStatus == 1|| inputQuery.auditStatus == 2"
@click="onModifySubmit(4)"
@click="onModifySubmit(3)"
>提交审核
</el-button
>
@ -286,6 +286,7 @@
<el-button
type="text"
size="small"
:disabled="scope.row.auditStatus === 1"
@click.native="deleteCompanyCert(scope.row)"
>删除
</el-button

Loading…
Cancel
Save