Commit 900c64af authored by 罗超's avatar 罗超

1

parent ae6000d0
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
data() { data() {
return { return {
msg: { msg: {
FlowId: 2 FlowId: 3
}, },
isShowProcess: false, //显示旁边弹窗 isShowProcess: false, //显示旁边弹窗
processObj: {}, //传递子组件 processObj: {}, //传递子组件
......
...@@ -15,20 +15,25 @@ ...@@ -15,20 +15,25 @@
<!--调课流程--> <!--调课流程-->
<changeclassflow-form></changeclassflow-form> <changeclassflow-form></changeclassflow-form>
</template> </template>
<template v-if="tabCheck=='3'">
<!--停课流程-->
<stopclassflow-form></stopclassflow-form>
</template>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import backclassflowForm from '../../components/flow/backclassflow-form'; import backclassflowForm from '../../components/flow/backclassflow-form';
import changeclassflowForm from '../../components/flow/changeclassflow-form'; import changeclassflowForm from '../../components/flow/changeclassflow-form';
import stopclassflowForm from '../../components/flow/stopclassflow-form';
export default { export default {
meta: { meta: {
title: "流程设置" title: "流程设置"
}, },
components: { components: {
backclassflowForm, backclassflowForm,
changeclassflowForm changeclassflowForm,
stopclassflowForm
}, },
data() { data() {
return { return {
...@@ -39,6 +44,10 @@ ...@@ -39,6 +44,10 @@
{ {
name: "2", name: "2",
label: "调课流程", label: "调课流程",
},
{
name: "3",
label: "停课流程",
} }
], ],
tabCheck: '1', 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