|
|
@ -142,11 +142,7 @@
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
<div style=" float: right;
|
|
|
|
<div style="float: right;text-align: right;margin-bottom: 8px;">
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
margin-bottom: 8px;"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="selectCert"
|
|
|
|
<el-button type="primary" size="mini" icon="search" @click="selectCert"
|
|
|
|
style="text-align:right"
|
|
|
|
style="text-align:right"
|
|
|
|
>选入资质证书
|
|
|
|
>选入资质证书
|
|
|
@ -214,6 +210,14 @@
|
|
|
|
>删除
|
|
|
|
>删除
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
v-if="scope.row.auditStatus == 2"
|
|
|
|
|
|
|
|
@click.native="explainCompanyCert(scope.row)"
|
|
|
|
|
|
|
|
>说明
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
<!-- <el-button-->
|
|
|
|
<!-- type="text"-->
|
|
|
|
<!-- type="text"-->
|
|
|
@ -281,6 +285,19 @@
|
|
|
|
></supCertSetSelectDialog>
|
|
|
|
></supCertSetSelectDialog>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-dialog
|
|
|
|
|
|
|
|
:title="拒绝原因"
|
|
|
|
|
|
|
|
:visible.sync="explainCertVisible"
|
|
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
|
|
width="40%"
|
|
|
|
|
|
|
|
v-if="explainCertVisible"
|
|
|
|
|
|
|
|
append-to-body
|
|
|
|
|
|
|
|
@close='closeLocalDialog'
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-form-item label="拒绝原因:"><el-input v-model="explainMsg" placeholder="请输入内容"></el-input></el-form-item>
|
|
|
|
|
|
|
|
</el-dialog> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -421,6 +438,8 @@ export default {
|
|
|
|
productLoading: false,
|
|
|
|
productLoading: false,
|
|
|
|
uuid: null,
|
|
|
|
uuid: null,
|
|
|
|
companyApplyUpdateVisible: false,
|
|
|
|
companyApplyUpdateVisible: false,
|
|
|
|
|
|
|
|
explainCertVisible:false,
|
|
|
|
|
|
|
|
explainMsg:'',
|
|
|
|
companyEditDisabled: true,
|
|
|
|
companyEditDisabled: true,
|
|
|
|
companyEditButtonStr: "编辑",
|
|
|
|
companyEditButtonStr: "编辑",
|
|
|
|
addType: "1", //证书类型:1:供应商;2.生产企业;3.产品品种
|
|
|
|
addType: "1", //证书类型:1:供应商;2.生产企业;3.产品品种
|
|
|
@ -604,7 +623,16 @@ export default {
|
|
|
|
this.certList = [];
|
|
|
|
this.certList = [];
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
explainCompanyCert(row) {
|
|
|
|
|
|
|
|
this.$confirm(row.auditComment, "拒绝原因", {
|
|
|
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
|
|
|
type: "warning",
|
|
|
|
|
|
|
|
showCancelButton: false,
|
|
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
deleteCompanyCert(row) {
|
|
|
|
deleteCompanyCert(row) {
|
|
|
|
this.$confirm("是否删除?", "提示", {
|
|
|
|
this.$confirm("是否删除?", "提示", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
confirmButtonText: "确定",
|
|
|
|