修改资质功能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 :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
v-model="filterQuery.name" v-model="filterQuery.originAction"
placeholder="业务类型" placeholder="业务类型"
style="width: 400px" style="width: 400px"
></el-input> ></el-input>

@ -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: "确定",

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

@ -331,6 +331,7 @@ import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {getSupComapnys} from "@/api/purchase/supCompany"; import {getSupComapnys} from "@/api/purchase/supCompany";
import {getUUID} from "@/utils/strUtil"; import {getUUID} from "@/utils/strUtil";
import supCertSetSelectDialog from "@/views/purchase/supCertSetSelectDialog"; import supCertSetSelectDialog from "@/views/purchase/supCertSetSelectDialog";
import {getCompany} from "@/api/warehouse/company";
export default { export default {
name: "supManufacturerEdit", name: "supManufacturerEdit",
@ -500,12 +501,22 @@ export default {
methods: { methods: {
onModifySubmit(type) { onModifySubmit(type) {
this.$refs["inputQuery"].validate(valid => { //
if (valid) { 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)); let formData = JSON.parse(JSON.stringify(this.inputQuery));
formData.auditStatus = type; formData.auditStatus = type;
this.loading = true; this.loading = true;
let urlName = this.editType == 0 ? 'add' : 'update'; let urlName = this.editType == 0 ? 'add' : 'update';
addOrModifyCompany(formData, urlName).then(response => { addOrModifyCompany(formData, urlName).then(response => {
@ -522,6 +533,13 @@ export default {
return false; return false;
} }
}); });
}
}).catch(() => {
});
}
}, },
certHandleCurrentChange(val) { certHandleCurrentChange(val) {
this.certQuery.page = val; this.certQuery.page = val;

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

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

Loading…
Cancel
Save