Commit 508310b2 authored by zhengke's avatar zhengke

增加转班流程

parent 482da145
......@@ -19,6 +19,10 @@
<!--停课流程-->
<stopclassflow-form></stopclassflow-form>
</template>
<template v-if="tabCheck=='4'">
<!-- 转班流程 -->
<transfer-form></transfer-form>
</template>
</div>
</div>
</template>
......@@ -26,6 +30,7 @@
import backclassflowForm from '../../components/flow/backclassflow-form';
import changeclassflowForm from '../../components/flow/changeclassflow-form';
import stopclassflowForm from '../../components/flow/stopclassflow-form';
import transferForm from '../../components/flow/transfer-form';
export default {
meta: {
title: "流程设置"
......@@ -33,7 +38,8 @@
components: {
backclassflowForm,
changeclassflowForm,
stopclassflowForm
stopclassflowForm,
transferForm
},
data() {
return {
......@@ -48,6 +54,10 @@
{
name: "3",
label: "停课流程",
},
{
name: "4",
label: "转班流程"
}
],
tabCheck: '1',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment