|
@@ -133,6 +133,12 @@
|
|
ref="ApplyAuditHistory"
|
|
ref="ApplyAuditHistory"
|
|
:flow-id="modalForm.flowId"
|
|
:flow-id="modalForm.flowId"
|
|
></apply-audit-history>
|
|
></apply-audit-history>
|
|
|
|
+ <apply-submit-history
|
|
|
|
+ v-if="needReview"
|
|
|
|
+ v-show="curMenu.id === '3'"
|
|
|
|
+ ref="ApplySubmitHistory"
|
|
|
|
+ :flow-id="modalForm.flowId"
|
|
|
|
+ ></apply-submit-history>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div slot="footer"></div>
|
|
<div slot="footer"></div>
|
|
@@ -142,6 +148,7 @@
|
|
<script>
|
|
<script>
|
|
import ApplyContent from "./ApplyContent";
|
|
import ApplyContent from "./ApplyContent";
|
|
import ApplyAuditHistory from "./ApplyAuditHistory";
|
|
import ApplyAuditHistory from "./ApplyAuditHistory";
|
|
|
|
+import ApplySubmitHistory from "./ApplySubmitHistory";
|
|
import { examRuleDetail } from "../../base/api";
|
|
import { examRuleDetail } from "../../base/api";
|
|
import { cancelOrRestartTaskApply, taskApplyExamObject } from "../api";
|
|
import { cancelOrRestartTaskApply, taskApplyExamObject } from "../api";
|
|
import { parseTimeRangeDateAndTime } from "@/plugins/utils";
|
|
import { parseTimeRangeDateAndTime } from "@/plugins/utils";
|
|
@@ -174,7 +181,7 @@ const initModalForm = {
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "modify-task-apply",
|
|
name: "modify-task-apply",
|
|
- components: { ApplyContent, ApplyAuditHistory },
|
|
+ components: { ApplyContent, ApplyAuditHistory, ApplySubmitHistory },
|
|
props: {
|
|
props: {
|
|
instance: {
|
|
instance: {
|
|
type: Object,
|
|
type: Object,
|
|
@@ -216,7 +223,8 @@ export default {
|
|
examRule: {},
|
|
examRule: {},
|
|
menus: [
|
|
menus: [
|
|
{ id: "1", name: "命题处理", component: "apply-content" },
|
|
{ id: "1", name: "命题处理", component: "apply-content" },
|
|
- { id: "2", name: "审核意见", component: "apply-audit-history" }
|
|
+ { id: "2", name: "审核意见", component: "apply-audit-history" },
|
|
|
|
+ { id: "3", name: "提交记录", component: "apply-submit-history" }
|
|
],
|
|
],
|
|
curMenu: {},
|
|
curMenu: {},
|
|
flows: [],
|
|
flows: [],
|