@ -143,7 +143,7 @@
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
<el-table-column label="操作" width="150">
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
@ -551,7 +551,13 @@ export default {
}
if(val==3){
this.$confirm( "已审核通过,是否需要重新提交变更", {
let msg =null;
if(this.inputQuery.auditStatus == 1 || this.inputQuery.auditStatus == 4){
msg = "已审核通过,是否需要重新提交变更";
}else if(this.inputQuery.auditStatus == 2){
msg = "审核拒绝,是否需要重新提交变更";
this.$confirm( msg, {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,