修改bug

featFunction
zhengmingliang 2 years ago
parent 2df6975db9
commit 6a08f94345

@ -228,8 +228,6 @@ export default {
this.$refs["dataForm"].validate(valid => {
if (valid) {
if (this.formData.auditStatus == 1) {
this.$confirm("该证书已审核通过,是否重新提交审核?", "提示", {
confirmButtonText: "确定",
@ -250,6 +248,7 @@ export default {
},
onConfirmSubmit(val) {
this.formData.repeatUpload = val;
if (this.$isNotBlank(this.formData.filePath)) {
if (this.$refs.upload.uploadFiles.length > 0) {
@ -269,8 +268,12 @@ export default {
},
onSubmit() {
this.loading = true;
this.formData.customerId = this.inputQuery.customerId;
if(this.formData.customerId==null){
this.formData.customerId=store.getters.customerId
}
this.formData.type = this.addType;
//1:2.3.
if (this.addType == 2) {

@ -86,6 +86,7 @@
</el-table>
<el-pagination
:page-size="filterQuery.limit"
:current-page.sync="filterQuery.page"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
@ -186,6 +187,7 @@
</el-table>
<el-pagination
:page-size="filterManufacturerQuery.limit"
:current-page.sync="filterManufacturerQuery.page"
@current-change="handleManuChange"
layout="prev, pager, next"
:total="manufacturerTotal"
@ -291,6 +293,7 @@
</el-table>
<el-pagination
:page-size="registrationQuery.limit"
:current-page.sync="registrationQuery.page"
@current-change="certHandleCurrentChange"
layout="prev, pager, next"
:total="certTotal"
@ -552,7 +555,7 @@ export default {
.then((response) => {
this.manufacturerLoading = false;
this.manufacturerList = response.data.list || [];
this.total = response.data.total || 0;
this.manufacturerTotal = response.data.total || 0;
})
.catch(() => {
this.manufacturerLoading = false;
@ -574,10 +577,15 @@ export default {
this.addInfoVisible = true;
},
closeManufacturerDialog(type) {
if(type==true){
this.addInfoVisible = false;
this.enterpriseId = null;
this.manufacturerList = [];
this.getManufacturerList();
}else{
this.getManufacturerList();
}
},
handleManuChange(val) {
@ -638,6 +646,8 @@ export default {
.then((response) => {
this.registrationLoading = false;
this.registrationList = response.data.list || [];
this.certTotal= response.data.total
})
.catch(() => {
this.registrationLoading = false;
@ -646,7 +656,7 @@ export default {
},
certHandleCurrentChange(val) {
this.registrationQuery.page = val;
this.registrationList();
this.getRegistrationList();
}
},

@ -22,6 +22,7 @@
<el-option label="全部" value=""></el-option>
<el-option label="草稿" value="0"></el-option>
<el-option label="未审核" value="6"></el-option>
<el-option label="变更未审核" value="3"></el-option>
<el-option label="已审核" value="1"></el-option>
<el-option label="已拒绝" value="2"></el-option>
</el-select>
@ -92,6 +93,7 @@
</el-table>
<el-pagination
:page-size="filterQuery.limit"
:current-page.sync="filterQuery.page"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
@ -201,6 +203,7 @@
</el-table>
<el-pagination
:page-size="registrationQuery.limit"
:current-page.sync="registrationQuery.page"
@current-change="certHandleCurrentChange"
layout="prev, pager, next"
:total="certTotal"
@ -360,6 +363,7 @@ export default {
this.registrationList = [];
},
onSubmit() {
this.filterQuery.page=1
this.getList();
this.registrationList = [];
},
@ -374,6 +378,7 @@ export default {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
@ -479,6 +484,7 @@ export default {
this.$message.error("请先选中生产企业!");
return
}
this.registrationQuery.page=1;
this.getRegistrationList();
},
registrationDialog(row) {
@ -548,6 +554,7 @@ export default {
.then((response) => {
this.registrationLoading = false;
this.registrationList = response.data.list || [];
this.certTotal = response.data.total;
})
.catch(() => {
this.registrationLoading = false;
@ -560,7 +567,7 @@ export default {
},
certHandleCurrentChange(val) {
this.registrationQuery.page = val;
this.registrationList();
this.getRegistrationList();
}
},

@ -502,18 +502,18 @@ export default {
,
getCompanyCertList() {
this.certLoading = true;
this.certQuery.customerId = this.inputQuery.customerId;
this.certQuery.type = 1;
if(this.editType==2){
this.certQuery.auditStatus=25;
}
this.certQuery.auditStatus=25;
filterCompanyCert(this.certQuery)
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total
})
.catch(() => {
this.certLoading = false;

@ -543,6 +543,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -426,7 +426,9 @@ export default {
this.selectedOptions = this.inputQuery.placeAreaCode.split(",");
if(this.inputQuery.productionAreaCode!=null){
this.selectedOptions2 = this.inputQuery.productionAreaCode.split(",");
}
this.getCompanyCertList();
this.findMethod();
@ -459,6 +461,7 @@ export default {
}
});
}).catch(() => {
this.addCloseDialog(false);
});
},
@ -501,6 +504,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -559,8 +559,10 @@ export default {
this.certLoading = true;
filterCompanyCert(this.certQuery)
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total
})
.catch(() => {
this.certLoading = false;

@ -590,6 +590,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -710,6 +710,11 @@ export default {
}).catch(() => {
});
},
certHandleCurrentChange(val) {
this.certQuery.page = val;
this.getCompanyCertList();
},
getCompanyCertList() {
this.certLoading = true;
this.certQuery.customerId = this.inputQuery.customerId;
@ -719,6 +724,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total
})
.catch(() => {
this.certLoading = false;

@ -235,8 +235,8 @@
center
>
<div style="display: flex; margin-top: -30px">
<el-button style="margin: 0 20px 0 auto"type="primary" size="small" @click.native="formSubmit(2)">允许变更</el-button>
<el-button style="margin: 0 20px 0 0"type="primary" size="small" @click.native="formSubmit(3)">拒绝变更</el-button>
<el-button style="margin: 0 20px 0 auto" type="primary" size="small" @click.native="formSubmit(2)">允许变更</el-button>
<el-button style="margin: 0 20px 0 0" type="primary" size="small" @click.native="formSubmit(3)">拒绝变更</el-button>
<el-button style="margin: 0 20px 0 0" @click="centerDialogVisible = false">取消</el-button>
</div>
<el-card>
@ -974,6 +974,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -1061,6 +1061,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -287,8 +287,8 @@
center
>
<div style="display: flex; margin-top: -30px">
<el-button style="margin: 0 20px 0 auto"type="primary" size="small" @click.native="formSubmit(null, 1)">通过</el-button>
<el-button style="margin: 0 20px 0 0"type="primary" size="small" @click.native="formSubmit(null, 2)">不通过</el-button>
<el-button style="margin: 0 20px 0 auto" type="primary" size="small" @click.native="formSubmit(null, 1)">通过</el-button>
<el-button style="margin: 0 20px 0 0" type="primary" size="small" @click.native="formSubmit(null, 2)">不通过</el-button>
<el-button style="margin: 0 20px 0 0" @click="centerDialogVisible = false">取消</el-button>
</div>
<el-card>
@ -1087,6 +1087,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

@ -516,6 +516,7 @@ export default {
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal=response.data.total;
})
.catch(() => {
this.certLoading = false;

Loading…
Cancel
Save