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
cc969d15
Commit
cc969d15
authored
Jul 19, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
6b2bd6ae
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+14
-2
No files found.
src/pages/teacher/changeClassManager.vue
View file @
cc969d15
...
...
@@ -122,6 +122,10 @@
<ordertrans-form
v-if=
"isShowClassTrans"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
</ordertrans-form>
<!-- 订单临时上课邀请-查看 -->
<temporaryClass-form
v-if=
"isShowTemporaryClass"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
</temporaryClass-form>
</div>
</div>
</template>
...
...
@@ -137,6 +141,7 @@
import
stopbillForm
from
'../../components/sale/stopbill-form'
;
import
createbackbillForm
from
'../../components/sale/createbackbill-form'
;
import
ordertransForm
from
'../../components/sale/ordertrans-form'
;
import
temporaryClassForm
from
'../../components/sale/temporaryClassbill-form'
;
export
default
{
meta
:
{
title
:
"退课单据"
...
...
@@ -146,7 +151,8 @@
createbackbillForm
,
changebillForm
,
stopbillForm
,
ordertransForm
ordertransForm
,
temporaryClassForm
},
data
()
{
return
{
...
...
@@ -232,8 +238,9 @@
billObj
:
{},
//单据信息
showType
:
1
,
//1-查看,2-审核
OrderTypeList
:
[],
isShowStopBillForm
:
false
,
isShowStopBillForm
:
false
,
//是否显示停课订单详情
isShowClassTrans
:
false
,
//是否显示订单转班详情
isShowTemporaryClass
:
false
,
//是否显示临时上课邀请订单详情
}
},
created
()
{
...
...
@@ -268,6 +275,7 @@
this
.
isShowCreateBillForm
=
false
;
this
.
isShowStopBillForm
=
false
;
this
.
isShowClassTrans
=
false
;
this
.
isShowTemporaryClass
=
false
;
this
.
billObj
=
{};
},
//显示表单
...
...
@@ -283,6 +291,10 @@
//停课
else
if
(
item
.
ReceiptType
==
3
)
{
this
.
isShowStopBillForm
=
true
;
}
//临时上课邀请
else
if
(
item
.
ReceiptType
==
4
){
this
.
isShowTemporaryClass
=
true
;
}
//转班
else
if
(
item
.
ReceiptType
==
5
){
...
...
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