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

1

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