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
f6db8716
Commit
f6db8716
authored
Oct 22, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
b7bf1364
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1157 additions
and
0 deletions
+1157
-0
tougao-form.vue
src/components/flow/tougao-form.vue
+410
-0
tougao-form.vue
src/components/sale/tougao-form.vue
+726
-0
processSet.vue
src/pages/system/processSet.vue
+10
-0
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+11
-0
No files found.
src/components/flow/tougao-form.vue
0 → 100644
View file @
f6db8716
This diff is collapsed.
Click to expand it.
src/components/sale/tougao-form.vue
0 → 100644
View file @
f6db8716
This diff is collapsed.
Click to expand it.
src/pages/system/processSet.vue
View file @
f6db8716
...
...
@@ -47,6 +47,10 @@
<!-- 请假流程 -->
<leave-form></leave-form>
</
template
>
<
template
v-if=
"tabCheck == '8'"
>
<!-- 投稿审批 -->
<tougao-form></tougao-form>
</
template
>
</div>
</div>
</template>
...
...
@@ -58,6 +62,7 @@ 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"
;
import
tougaoForm
from
"../../components/flow/tougao-form"
;
export
default
{
meta
:
{
title
:
"流程设置"
,
...
...
@@ -70,6 +75,7 @@ export default {
temporaryClassForm
,
separateForm
,
leaveForm
,
tougaoForm
},
data
()
{
return
{
...
...
@@ -102,6 +108,10 @@ export default {
name
:
"7"
,
label
:
"请假流程"
,
},
{
name
:
"8"
,
label
:
"投稿审批"
}
],
tabCheck
:
"1"
,
};
...
...
src/pages/teacher/changeClassManager.vue
View file @
f6db8716
...
...
@@ -160,6 +160,9 @@
<!-- 考试申请 -->
<examBillForm
v-if=
"isShowExamBillForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
></examBillForm>
<!-- 投稿审批 -->
<tougaoForm
v-if=
"isShowTougaoForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
></tougaoForm>
</div>
</div>
</template>
...
...
@@ -179,6 +182,7 @@
import
leaveBillForm
from
"../../components/sale/leavebill-form.vue"
;
import
zujuanBillForm
from
"../../components/sale/zujuanbill-form.vue"
;
import
examBillForm
from
"../../components/sale/exambill-form.vue"
;
import
tougaoForm
from
"../../components/sale/tougao-form.vue"
;
export
default
{
meta
:
{
title
:
"业务单据"
,
...
...
@@ -193,6 +197,7 @@
leaveBillForm
,
zujuanBillForm
,
examBillForm
,
tougaoForm
},
data
()
{
return
{
...
...
@@ -284,6 +289,7 @@
isShowLeaveBillForm
:
false
,
//是否显示请假申请单详情
isShowZujuanBillForm
:
false
,
//是否显示组卷申请单详情
isShowExamBillForm
:
false
,
//是否显示考试申请详情
isShowTougaoForm
:
false
//是否显示投稿申请详情
};
},
created
()
{
...
...
@@ -340,6 +346,7 @@
this
.
isShowLeaveBillForm
=
false
;
this
.
isShowZujuanBillForm
=
false
;
this
.
isShowExamBillForm
=
false
;
this
.
isShowTougaoForm
=
false
;
this
.
billObj
=
{};
},
//显示表单
...
...
@@ -376,6 +383,10 @@
else
if
(
item
.
ReceiptType
==
9
)
{
this
.
isShowExamBillForm
=
true
;
}
//投稿审批
else
if
(
item
.
ReceiptType
==
10
){
this
.
isShowTougaoForm
=
true
;
}
this
.
showType
=
type
;
this
.
billObj
=
item
;
},
...
...
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