修改资质功能bug

tagView
zhengmingliang 2 years ago
parent d936ea4fe6
commit b9bb79bd9e

@ -4,7 +4,7 @@
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="filterQuery.name"
v-model="filterQuery.originAction"
placeholder="业务类型"
style="width: 400px"
></el-input>

@ -142,11 +142,7 @@
</el-row>
</el-card>
<el-card>
<div style=" float: right;
text-align: right;
margin-bottom: 8px;"
>
<div style="float: right;text-align: right;margin-bottom: 8px;">
<el-button type="primary" size="mini" icon="search" @click="selectCert"
style="text-align:right"
>选入资质证书
@ -214,6 +210,14 @@
>删除
</el-button
>
<el-button
type="text"
size="small"
v-if="scope.row.auditStatus == 2"
@click.native="explainCompanyCert(scope.row)"
>说明
</el-button
>
<!-- <el-button-->
<!-- type="text"-->
@ -281,6 +285,19 @@
></supCertSetSelectDialog>
</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>
</div>
@ -421,6 +438,8 @@ export default {
productLoading: false,
uuid: null,
companyApplyUpdateVisible: false,
explainCertVisible:false,
explainMsg:'',
companyEditDisabled: true,
companyEditButtonStr: "编辑",
addType: "1", //1:2.3.
@ -604,7 +623,16 @@ export default {
this.certList = [];
});
},
explainCompanyCert(row) {
this.$confirm(row.auditComment, "拒绝原因", {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,
}).then(() => {
});
},
deleteCompanyCert(row) {
this.$confirm("是否删除?", "提示", {
confirmButtonText: "确定",

@ -189,6 +189,13 @@
>删除
</el-button
>
<el-button
type="text"
size="small"
v-if="scope.row.auditStatus === 2"
@click.native.stop="rejectInfo(scope.row)"
>说明
</el-button>
</template>
</el-table-column>
</el-table>
@ -477,6 +484,7 @@ export default {
this.$message.error("请先选中生产企业!");
return
}
if (this.$isNotBlank(row)) {
this.registrationId = row.id;
this.curProductQuery = row;

@ -331,6 +331,7 @@ import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {getSupComapnys} from "@/api/purchase/supCompany";
import {getUUID} from "@/utils/strUtil";
import supCertSetSelectDialog from "@/views/purchase/supCertSetSelectDialog";
import {getCompany} from "@/api/warehouse/company";
export default {
name: "supManufacturerEdit",
@ -500,12 +501,22 @@ export default {
methods: {
onModifySubmit(type) {
//
if(type==3){
let query = {
customerId: this.$store.getters.customerId
}
getCompany(query)
.then((response) => {
if(response.data.auditStatus!=1){
this.$message.error("本企业信息还未通过审核!");
return;
}else{
this.$refs["inputQuery"].validate(valid => {
if (valid) {
let formData = JSON.parse(JSON.stringify(this.inputQuery));
formData.auditStatus = type;
this.loading = true;
let urlName = this.editType == 0 ? 'add' : 'update';
addOrModifyCompany(formData, urlName).then(response => {
@ -522,6 +533,13 @@ export default {
return false;
}
});
}
}).catch(() => {
});
}
},
certHandleCurrentChange(val) {
this.certQuery.page = val;

@ -291,6 +291,13 @@
>删除
</el-button
>
<el-button
type="text"
size="small"
v-if="scope.row.auditStatus === 2"
@click.native.stop="rejectInfo(scope.row)"
>说明
</el-button>
</template>
</el-table-column>
</el-table>
@ -564,6 +571,16 @@ export default {
toViewCompanyCert(row) {
window.open(this.certFileUrl + row.filePath);
},
rejectInfo(row) {
this.$confirm(row.auditComment, "拒绝说明", {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,
})
.then(() => {
});
},
findMethod(query) {
this.fromOptions = [];

@ -138,13 +138,13 @@
</el-button>
</div>
<el-button
<!-- <el-button
v-if="isSp ==110"
type="text"
size="small"
@click.native="rollback(scope.row)"
>撤回
</el-button>
</el-button> -->
</template>
</el-table-column>

Loading…
Cancel
Save