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
c7fffbd0
Commit
c7fffbd0
authored
Jul 19, 2021
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d86276c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
3 deletions
+41
-3
billquery.vue
src/pages/user/billquery.vue
+41
-3
No files found.
src/pages/user/billquery.vue
View file @
c7fffbd0
...
@@ -80,6 +80,22 @@
...
@@ -80,6 +80,22 @@
</q-tooltip>
</q-tooltip>
</span>
</span>
</
template
>
</
template
>
<
template
v-if=
"props.row.ReceiptType==3"
>
<span>
{{
props
.
row
.
DataObj
.
ApplyReason
}}
<q-tooltip
:offset=
"[0, 10]"
>
{{
props
.
row
.
DataObj
.
ApplyReason
}}
</q-tooltip>
</span>
</
template
>
<
template
v-if=
"props.row.ReceiptType==4"
>
<span>
{{
props
.
row
.
DataObj
.
ApplyReason
}}
<q-tooltip
:offset=
"[0, 10]"
>
{{
props
.
row
.
DataObj
.
ApplyReason
}}
</q-tooltip>
</span>
</
template
>
</div>
</div>
</q-td>
</q-td>
</template>
</template>
...
@@ -152,6 +168,13 @@
...
@@ -152,6 +168,13 @@
<ordertrans-form
v-if=
"isShowTransForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
<ordertrans-form
v-if=
"isShowTransForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
@
success=
"refreshPage"
>
</ordertrans-form>
</ordertrans-form>
<stopbill-form
v-if=
"isShowStopBillForm"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
</stopbill-form>
<!-- 订单临时上课邀请-查看 -->
<temporaryClass-form
v-if=
"isShowTemporaryClass"
:seting-obj=
"billObj"
:showType=
"showType"
@
close=
"closeBillForm"
@
success=
"refreshPage"
>
</temporaryClass-form>
</div>
</div>
</div>
</div>
</template>
</template>
...
@@ -170,7 +193,8 @@
...
@@ -170,7 +193,8 @@
import
backbillForm
from
'../../components/sale/backbill-form'
;
import
backbillForm
from
'../../components/sale/backbill-form'
;
import
changebillForm
from
'../../components/sale/changebill-form'
;
import
changebillForm
from
'../../components/sale/changebill-form'
;
import
ordertransForm
from
'../../components/sale/ordertrans-form'
import
ordertransForm
from
'../../components/sale/ordertrans-form'
import
stopbillForm
from
'../../components/sale/stopbill-form'
;
import
temporaryClassForm
from
'../../components/sale/temporaryClassbill-form'
;
export
default
{
export
default
{
meta
:
{
meta
:
{
title
:
"教务单据查询"
title
:
"教务单据查询"
...
@@ -178,7 +202,9 @@
...
@@ -178,7 +202,9 @@
components
:
{
components
:
{
backbillForm
,
backbillForm
,
changebillForm
,
changebillForm
,
ordertransForm
ordertransForm
,
stopbillForm
,
temporaryClassForm
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -273,7 +299,9 @@
...
@@ -273,7 +299,9 @@
EmployeeList
:
[],
EmployeeList
:
[],
AllemployeeList
:
[],
AllemployeeList
:
[],
IsEditEduReceipAudit
:
false
,
//是否有修改审核人权限
IsEditEduReceipAudit
:
false
,
//是否有修改审核人权限
isShowTransForm
:
false
isShowTransForm
:
false
,
isShowStopBillForm
:
false
,
//是否显示停课订单详情
isShowTemporaryClass
:
false
,
//是否显示临时上课邀请订单详情
}
}
},
},
created
()
{
created
()
{
...
@@ -314,6 +342,8 @@
...
@@ -314,6 +342,8 @@
this
.
isShowBackBillForm
=
false
;
this
.
isShowBackBillForm
=
false
;
this
.
isShowChangeBillForm
=
false
;
this
.
isShowChangeBillForm
=
false
;
this
.
isShowTransForm
=
false
;
this
.
isShowTransForm
=
false
;
this
.
isShowStopBillForm
=
false
;
this
.
isShowTemporaryClass
=
false
;
this
.
billObj
=
{};
this
.
billObj
=
{};
},
},
//显示表单
//显示表单
...
@@ -329,6 +359,14 @@
...
@@ -329,6 +359,14 @@
//转班
//转班
else
if
(
item
.
ReceiptType
==
5
){
else
if
(
item
.
ReceiptType
==
5
){
this
.
isShowTransForm
=
true
;
this
.
isShowTransForm
=
true
;
}
//停课
else
if
(
item
.
ReceiptType
==
3
)
{
this
.
isShowStopBillForm
=
true
;
}
//临时上课邀请
else
if
(
item
.
ReceiptType
==
4
){
this
.
isShowTemporaryClass
=
true
;
}
}
this
.
showType
=
type
;
this
.
showType
=
type
;
this
.
billObj
=
item
;
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