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
888b7bf8
Commit
888b7bf8
authored
Jul 16, 2021
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
df53cdfa
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
706 additions
and
3 deletions
+706
-3
ordertrans-form.vue
src/components/sale/ordertrans-form.vue
+693
-0
changeClassManager.vue
src/pages/teacher/changeClassManager.vue
+13
-3
No files found.
src/components/sale/ordertrans-form.vue
0 → 100644
View file @
888b7bf8
This diff is collapsed.
Click to expand it.
src/pages/teacher/changeClassManager.vue
View file @
888b7bf8
...
@@ -118,6 +118,8 @@
...
@@ -118,6 +118,8 @@
<stopbill-form
v-if=
"isShowStopBillForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
<stopbill-form
v-if=
"isShowStopBillForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
@
success=
"refreshPage"
>
</stopbill-form>
</stopbill-form>
<!-- 订单转班-查看 -->
<ordertrans-form
v-if=
"isShowClassTrans"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
></ordertrans-form>
</div>
</div>
</div>
</div>
</template>
</template>
...
@@ -132,6 +134,8 @@
...
@@ -132,6 +134,8 @@
import
changebillForm
from
'../../components/sale/changebill-form'
;
import
changebillForm
from
'../../components/sale/changebill-form'
;
import
stopbillForm
from
'../../components/sale/stopbill-form'
;
import
stopbillForm
from
'../../components/sale/stopbill-form'
;
import
createbackbillForm
from
'../../components/sale/createbackbill-form'
;
import
createbackbillForm
from
'../../components/sale/createbackbill-form'
;
import
ordertransForm
from
'../../components/sale/ordertrans-form'
;
export
default
{
export
default
{
meta
:
{
meta
:
{
title
:
"退课单据"
title
:
"退课单据"
...
@@ -140,7 +144,8 @@
...
@@ -140,7 +144,8 @@
backbillForm
,
backbillForm
,
createbackbillForm
,
createbackbillForm
,
changebillForm
,
changebillForm
,
stopbillForm
stopbillForm
,
ordertransForm
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -227,7 +232,7 @@
...
@@ -227,7 +232,7 @@
showType
:
1
,
//1-查看,2-审核
showType
:
1
,
//1-查看,2-审核
OrderTypeList
:
[],
OrderTypeList
:
[],
isShowStopBillForm
:
false
,
isShowStopBillForm
:
false
,
isShowClassTrans
:
false
,
//是否显示订单转班详情
}
}
},
},
created
()
{
created
()
{
...
@@ -260,7 +265,8 @@
...
@@ -260,7 +265,8 @@
this
.
isShowBillForm
=
false
;
this
.
isShowBillForm
=
false
;
this
.
isShowChangeBillForm
=
false
;
this
.
isShowChangeBillForm
=
false
;
this
.
isShowCreateBillForm
=
false
;
this
.
isShowCreateBillForm
=
false
;
this
.
isShowStopBillForm
=
false
this
.
isShowStopBillForm
=
false
;
this
.
isShowClassTrans
=
false
;
this
.
billObj
=
{};
this
.
billObj
=
{};
},
},
//显示表单
//显示表单
...
@@ -277,6 +283,10 @@
...
@@ -277,6 +283,10 @@
else
if
(
item
.
ReceiptType
==
3
)
{
else
if
(
item
.
ReceiptType
==
3
)
{
this
.
isShowStopBillForm
=
true
;
this
.
isShowStopBillForm
=
true
;
}
}
//转班
else
if
(
item
.
ReceiptType
==
5
){
this
.
isShowClassTrans
=
true
;
}
this
.
showType
=
type
;
this
.
showType
=
type
;
this
.
billObj
=
item
;
this
.
billObj
=
item
;
console
.
log
(
item
,
'item'
);
console
.
log
(
item
,
'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