|
@@ -403,7 +403,9 @@ const initTaskApply = {
|
|
// 考务规则
|
|
// 考务规则
|
|
review: false,
|
|
review: false,
|
|
includePaper: false,
|
|
includePaper: false,
|
|
- customCard: false
|
|
|
|
|
|
+ customCard: false,
|
|
|
|
+ // 是否有子流程
|
|
|
|
+ subFlowReject: false
|
|
};
|
|
};
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -511,7 +513,10 @@ export default {
|
|
},
|
|
},
|
|
IS_AUDIT_APPLY() {
|
|
IS_AUDIT_APPLY() {
|
|
// IS_PRELAST_STEP
|
|
// IS_PRELAST_STEP
|
|
- return this.curTaskApply.setup === this.flows.length - 1;
|
|
|
|
|
|
+ return (
|
|
|
|
+ this.curTaskApply.subFlowReject &&
|
|
|
|
+ this.curTaskApply.setup === this.flows.length - 1
|
|
|
|
+ );
|
|
},
|
|
},
|
|
cardTodoName() {
|
|
cardTodoName() {
|
|
let name = "创建答题卡";
|
|
let name = "创建答题卡";
|