|
@@ -78,7 +78,7 @@
|
|
|
<el-row>
|
|
|
<el-col :xs="24" :sm="12" :lg="12" :span="6">
|
|
|
<el-form-item label="审核状态:" prop="declareResult" label-width="140px" class="postInfo-container-item">
|
|
|
- <el-input :value="declareForm.declareResult" readonly disabled>
|
|
|
+ <el-input :value="declareForm.declareResult" :class="['filter-item','resaon_input']" readonly disabled>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -148,7 +148,9 @@ export default {
|
|
|
businessSubId: null,
|
|
|
businessId: null,
|
|
|
currentInstanceNodeId: null,
|
|
|
- production: []
|
|
|
+ production: [],
|
|
|
+ ifSkip:false,
|
|
|
+ currentNodeCode:null
|
|
|
},
|
|
|
doWorkflow: false,
|
|
|
declareForm: {
|
|
@@ -192,6 +194,7 @@ export default {
|
|
|
}).then(res => {
|
|
|
if (res.code === 200 && res.data!=null) {
|
|
|
this.nodeBusinessInfo.currentInstanceNodeId = res.data.instanceId;
|
|
|
+ this.nodeBusinessInfo.currentNodeCode = res.data.nodeCode;
|
|
|
}
|
|
|
this.$refs.board.getInstanceArray(this.nodeBusinessInfo.mainBusiness,this.nodeBusinessInfo.businessId);
|
|
|
})
|
|
@@ -226,7 +229,14 @@ export default {
|
|
|
},
|
|
|
//提交节点
|
|
|
commit(state){
|
|
|
- this.$refs.board.commit(state);
|
|
|
+ if (this.declareForm.businessCate==='一般业务'
|
|
|
+ && this.nodeBusinessInfo.currentNodeCode === 'DEPARTMENT_LEADER_CHECK'
|
|
|
+ && this.nodeBusinessInfo.mainBusiness === 'COMMISSION_DECLARE_MAJOR_EVALUATE'){
|
|
|
+
|
|
|
+ this.nodeBusinessInfo.ifSkip = true;
|
|
|
+
|
|
|
+ }
|
|
|
+ this.$refs.board.commit(state);
|
|
|
},
|
|
|
|
|
|
},
|
|
@@ -239,4 +249,10 @@ export default {
|
|
|
top: 70px;
|
|
|
right: 50px;
|
|
|
}
|
|
|
+.resaon_input{
|
|
|
+ /deep/ .el-input__inner{
|
|
|
+ color: red !important;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|