Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
71b66f62
Commit
71b66f62
authored
Aug 11, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
46213b92
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
494 additions
and
66 deletions
+494
-66
leave-form.vue
src/components/flow/leave-form.vue
+410
-0
processSet.vue
src/pages/system/processSet.vue
+84
-66
No files found.
src/components/flow/leave-form.vue
0 → 100644
View file @
71b66f62
This diff is collapsed.
Click to expand it.
src/pages/system/processSet.vue
View file @
71b66f62
<
style
>
</
style
>
<
template
>
<div
class=
"page-body"
>
<q-tabs
style=
"margin-bottom:20px;"
v-model=
"tabCheck"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tab
:ripple=
"false"
v-for=
"(qitem,qindex) in tabList"
:name=
"qitem.name"
:label=
"qitem.label"
:key=
"qindex"
/>
<q-tabs
style=
"margin-bottom: 20px"
v-model=
"tabCheck"
narrow-indicator
dense
align=
"left"
class=
"text-primary"
>
<q-tab
:ripple=
"false"
v-for=
"(qitem, qindex) in tabList"
:name=
"qitem.name"
:label=
"qitem.label"
:key=
"qindex"
/>
</q-tabs>
<div>
<template
v-if=
"tabCheck
==
'1'"
>
<template
v-if=
"tabCheck
==
'1'"
>
<!--退课流程-->
<backclassflow-form></backclassflow-form>
</
template
>
<
template
v-if=
"tabCheck
==
'2'"
>
<
template
v-if=
"tabCheck
==
'2'"
>
<!--调课流程-->
<changeclassflow-form></changeclassflow-form>
</
template
>
<
template
v-if=
"tabCheck==
'3'"
>
<
template
v-if=
"tabCheck ==
'3'"
>
<!--停课流程-->
<stopclassflow-form></stopclassflow-form>
</
template
>
<
template
v-if=
"tabCheck
==
'4'"
>
<
template
v-if=
"tabCheck
==
'4'"
>
<!-- 转班流程 -->
<transfer-form></transfer-form>
</
template
>
<
template
v-if=
"tabCheck
==
'5'"
>
<
template
v-if=
"tabCheck
==
'5'"
>
<!-- 临时上课邀请流程 -->
<temporaryClass-form></temporaryClass-form>
</
template
>
<
template
v-if=
"tabCheck
==
'6'"
>
<
template
v-if=
"tabCheck
==
'6'"
>
<!-- 分拆 -->
<separate-form></separate-form>
</
template
>
<
template
v-if=
"tabCheck == '7'"
>
<!-- 请假流程 -->
<leave-form></leave-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'
;
import
transferForm
from
'../../components/flow/transfer-form'
;
import
temporaryClassForm
from
'../../components/flow/temporaryClass-form'
;
import
separateForm
from
'../../components/flow/separate-form'
export
default
{
meta
:
{
title
:
"流程设置"
},
components
:
{
backclassflowForm
,
changeclassflowForm
,
stopclassflowForm
,
transferForm
,
temporaryClassForm
,
separateForm
},
data
()
{
return
{
tabList
:
[{
name
:
"1"
,
label
:
"退课流程"
,
},
{
name
:
"2"
,
label
:
"调课流程"
,
},
{
name
:
"3"
,
label
:
"停课流程"
,
},
{
name
:
"4"
,
label
:
"转班流程"
},
{
name
:
"5"
,
label
:
"临时上课邀请流程"
},
{
name
:
"6"
,
label
:
"分拆"
}
],
tabCheck
:
'1'
,
}
},
created
()
{},
mounted
()
{
},
methods
:
{
}
}
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"
;
import
temporaryClassForm
from
"../../components/flow/temporaryClass-form"
;
import
separateForm
from
"../../components/flow/separate-form"
;
import
leaveForm
from
"../../components/flow/leave-form"
;
export
default
{
meta
:
{
title
:
"流程设置"
,
},
components
:
{
backclassflowForm
,
changeclassflowForm
,
stopclassflowForm
,
transferForm
,
temporaryClassForm
,
separateForm
,
leaveForm
,
},
data
()
{
return
{
tabList
:
[
{
name
:
"1"
,
label
:
"退课流程"
,
},
{
name
:
"2"
,
label
:
"调课流程"
,
},
{
name
:
"3"
,
label
:
"停课流程"
,
},
{
name
:
"4"
,
label
:
"转班流程"
,
},
{
name
:
"5"
,
label
:
"临时上课邀请流程"
,
},
{
name
:
"6"
,
label
:
"分拆"
,
},
{
name
:
"7"
,
label
:
"请假流程"
,
},
],
tabCheck
:
"1"
,
};
},
created
()
{},
mounted
()
{},
methods
:
{},
};
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment