修改资质功能bug

tagView
zhengmingliang 2 years ago
parent 51a3a0c67a
commit d936ea4fe6

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

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

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

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

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

Loading…
Cancel
Save