Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
967a26d3
Commit
967a26d3
authored
Mar 21, 2019
by
huangyuanyuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加优惠
parent
9d329b92
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
345 additions
and
84 deletions
+345
-84
RecPayQueryTeam.vue
src/components/FinancialModule/RecPayQueryTeam.vue
+4
-2
MonthReport.vue
src/components/FinancialModule/ReportForm/MonthReport.vue
+1
-3
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+3
-4
enrollTotal.vue
src/components/SalesModule/enrollTotal.vue
+35
-2
enrollTotalTwo.vue
src/components/SalesModule/enrollTotalTwo.vue
+37
-1
groupTourOrder.vue
src/components/SalesModule/groupTourOrder.vue
+38
-2
groupTourOrderByTuan.vue
src/components/SalesModule/groupTourOrderByTuan.vue
+49
-37
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+106
-3
TeamBalancePayment.vue
...omponents/TravelManager/TravelList/TeamBalancePayment.vue
+33
-29
todayOrderTotal.vue
src/components/TravelManager/TravelList/todayOrderTotal.vue
+39
-1
No files found.
src/components/FinancialModule/RecPayQueryTeam.vue
View file @
967a26d3
...
@@ -250,6 +250,7 @@
...
@@ -250,6 +250,7 @@
<th>
业务员
</th>
<th>
业务员
</th>
<th>
应收金额
</th>
<th>
应收金额
</th>
<th>
实收金额
</th>
<th>
实收金额
</th>
<th>
优惠金额
</th>
<th>
待收金额
</th>
<th>
待收金额
</th>
<th>
已退款
</th>
<th>
已退款
</th>
<th>
平台税金
</th>
<th>
平台税金
</th>
...
@@ -258,7 +259,7 @@
...
@@ -258,7 +259,7 @@
<tr
v-for=
" ( item , index ) in DataList "
>
<tr
v-for=
" ( item , index ) in DataList "
>
<td>
<span
class=
"_link_hover"
@
click=
"jumpPage('RegistrationList', item.TCID, 1, 0)"
>
{{
item
.
TCNUM
}}
(
{{
item
.
TCID
}}
)
</span>
</td>
<td>
<span
class=
"_link_hover"
@
click=
"jumpPage('RegistrationList', item.TCID, 1, 0)"
>
{{
item
.
TCNUM
}}
(
{{
item
.
TCID
}}
)
</span>
</td>
<td>
{{
item
.
StartDate
}}
</td>
<td>
{{
item
.
StartDate
}}
</td>
<td
colspan=
"
9
"
>
<td
colspan=
"
10
"
>
<table
class=
"_singeRowTable_two"
style=
"width: 100%;table-layout: fixed;border-collapse: collapse;"
cellspacing=
"0"
cellpadding=
"0"
border=
"0"
>
<table
class=
"_singeRowTable_two"
style=
"width: 100%;table-layout: fixed;border-collapse: collapse;"
cellspacing=
"0"
cellpadding=
"0"
border=
"0"
>
<tbody>
<tbody>
<tr
v-for=
" ( son , sIndex ) in item.OrderList "
>
<tr
v-for=
" ( son , sIndex ) in item.OrderList "
>
...
@@ -267,6 +268,7 @@
...
@@ -267,6 +268,7 @@
<td>
{{
son
.
EmName
}}
<br/>
{{
son
.
CreateDate
}}
</td>
<td>
{{
son
.
EmName
}}
<br/>
{{
son
.
CreateDate
}}
</td>
<td>
{{
son
.
PreferPrice
}}
</td>
<td>
{{
son
.
PreferPrice
}}
</td>
<td>
<span
:class=
"son.DaiShou != 0 ? '_color_red':''"
>
{{
son
.
Income
}}
</span>
</td>
<td>
<span
:class=
"son.DaiShou != 0 ? '_color_red':''"
>
{{
son
.
Income
}}
</span>
</td>
<td>
{{
son
.
DiscountMoney
}}
</td>
<td>
{{
son
.
DaiShou
}}
</td>
<td>
{{
son
.
DaiShou
}}
</td>
<td>
{{
son
.
Refund
}}
</td>
<td>
{{
son
.
Refund
}}
</td>
<td>
{{
son
.
PlatformTax
}}
</td>
<td>
{{
son
.
PlatformTax
}}
</td>
...
@@ -280,6 +282,7 @@
...
@@ -280,6 +282,7 @@
<td
colspan=
"5"
>
合计
</td>
<td
colspan=
"5"
>
合计
</td>
<td>
{{
Statistics
.
PreferPrice
}}
</td>
<td>
{{
Statistics
.
PreferPrice
}}
</td>
<td>
{{
Statistics
.
Income
}}
</td>
<td>
{{
Statistics
.
Income
}}
</td>
<td>
{{
Statistics
.
DiscountMoney
}}
</td>
<td>
{{
Statistics
.
DueinMoney
}}
</td>
<td>
{{
Statistics
.
DueinMoney
}}
</td>
<td>
{{
Statistics
.
Refund
}}
</td>
<td>
{{
Statistics
.
Refund
}}
</td>
<td>
{{
Statistics
.
PlatformTax
}}
</td>
<td>
{{
Statistics
.
PlatformTax
}}
</td>
...
@@ -457,7 +460,6 @@ export default {
...
@@ -457,7 +460,6 @@ export default {
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
startCityList1
=
res
.
data
.
data
;
this
.
startCityList1
=
res
.
data
.
data
;
}
else
{
}
else
{
console
.
log
(
res
.
data
)
}
}
});
});
},
},
...
...
src/components/FinancialModule/ReportForm/MonthReport.vue
View file @
967a26d3
...
@@ -986,7 +986,6 @@ export default {
...
@@ -986,7 +986,6 @@ export default {
},
},
// 数据筛选
// 数据筛选
filterMethod
(
filters
)
{
filterMethod
(
filters
)
{
console
.
log
(
"filters"
,
filters
)
this
.
total
=
tableData
.
length
;
this
.
total
=
tableData
.
length
;
},
},
...
@@ -996,10 +995,9 @@ export default {
...
@@ -996,10 +995,9 @@ export default {
"admin_get_BranchGetList"
,
"admin_get_BranchGetList"
,
this
.
getCompanyMsg
,
this
.
getCompanyMsg
,
res
=>
{
res
=>
{
console
.
log
(
"出团公司"
,
res
)
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
CompanyList
=
res
.
data
.
data
;
this
.
CompanyList
=
res
.
data
.
data
;
this
.
msg
.
OutBranchId
=
this
.
CompanyList
[
0
].
Id
;
//
this.msg.OutBranchId=this.CompanyList[0].Id;
}
else
{
}
else
{
}
}
},
},
...
...
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
967a26d3
...
@@ -1352,8 +1352,10 @@ export default {
...
@@ -1352,8 +1352,10 @@ export default {
this
.
msg
.
DataType
=
"1"
;
this
.
msg
.
DataType
=
"1"
;
}
}
if
(
this
.
msg
.
LineId
==-
1
){
if
(
this
.
msg
.
LineId
==-
1
){
// 其余都是不限
this
.
msg
.
DataType
=
"-1"
;
this
.
msg
.
DataType
=
"-1"
;
this
.
msg
.
OutBranchId
=
45
;
this
.
msg
.
OutBranchId
=
45
;
this
.
msg
.
LineId
=
0
;
}
}
if
(
this
.
msg
.
LineId
==-
2
){
if
(
this
.
msg
.
LineId
==-
2
){
this
.
msg
.
DataType
=
"2"
;
this
.
msg
.
DataType
=
"2"
;
...
@@ -1364,9 +1366,6 @@ export default {
...
@@ -1364,9 +1366,6 @@ export default {
if
(
this
.
msg
.
LineId
==-
4
){
if
(
this
.
msg
.
LineId
==-
4
){
this
.
msg
.
DataType
=
"3"
;
this
.
msg
.
DataType
=
"3"
;
}
}
// startDate: "",
// endDate: "",
// this.msg.lineID=this.$route.query.lineID;
},
},
components
:
{},
components
:
{},
mounted
()
{
mounted
()
{
...
...
src/components/SalesModule/enrollTotal.vue
View file @
967a26d3
...
@@ -221,7 +221,41 @@
...
@@ -221,7 +221,41 @@
<span
v-if=
'item.isEnd==0'
style=
"cursor: pointer;"
>
{{
item
.
income
}}
</span>
<span
v-if=
'item.isEnd==0'
style=
"cursor: pointer;"
>
{{
item
.
income
}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
>
{{
item
.
income
}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
>
{{
item
.
income
}}
</span>
</td>
</td>
<td>
{{
moneyFormat
(
item
.
discountMoney
)
}}
</td>
<!-- 优惠 -->
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.couponAllotList.length>0'
v-for=
"(item2,index2) in item.couponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
couponsName
}}
</td>
<td>
<span
v-if=
"item2.couponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.couponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
denomination
}}
</td>
<td>
满
{{
item2
.
useCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.accessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
acessDate
}}
</td>
</tr>
<tr
v-if=
'item.couponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
moneyFormat
(
item
.
discountMoney
)
}}
</span>
</el-popover>
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-else
>
0.00
</td>
<td
v-else
>
0.00
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
refund
}}
</td>
...
@@ -536,7 +570,6 @@
...
@@ -536,7 +570,6 @@
"sellorder_post_GetOrderList"
,
"sellorder_post_GetOrderList"
,
this
.
msg
,
this
.
msg
,
res
=>
{
res
=>
{
// console.log("list",res);
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
loading
=
false
;
this
.
loading
=
false
;
this
.
total
=
res
.
data
.
data
.
count
;
this
.
total
=
res
.
data
.
data
.
count
;
...
...
src/components/SalesModule/enrollTotalTwo.vue
View file @
967a26d3
...
@@ -213,6 +213,7 @@
...
@@ -213,6 +213,7 @@
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
优惠
</th>
<th
width=
"60"
>
小费
</th>
<th
width=
"60"
>
小费
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台税金
</th>
...
@@ -262,6 +263,40 @@
...
@@ -262,6 +263,40 @@
<span
v-if=
'item.isEnd==0'
style=
"cursor: pointer;"
>
{{
moneyFormat
(
item
.
income
)
}}
</span>
<span
v-if=
'item.isEnd==0'
style=
"cursor: pointer;"
>
{{
moneyFormat
(
item
.
income
)
}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
>
{{
moneyFormat
(
item
.
income
)
}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
>
{{
moneyFormat
(
item
.
income
)
}}
</span>
</td>
</td>
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.couponAllotList.length>0'
v-for=
"(item2,index2) in item.couponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
couponsName
}}
</td>
<td>
<span
v-if=
"item2.couponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.couponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
denomination
}}
</td>
<td>
满
{{
item2
.
useCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.accessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
acessDate
}}
</td>
</tr>
<tr
v-if=
'item.couponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-else
>
0.00
</td>
<td
v-else
>
0.00
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
refund
}}
</td>
...
@@ -540,6 +575,7 @@
...
@@ -540,6 +575,7 @@
this
.
loading
=
false
;
this
.
loading
=
false
;
this
.
total
=
res
.
data
.
data
.
count
;
this
.
total
=
res
.
data
.
data
.
count
;
this
.
list
=
res
.
data
.
data
.
pageData
;
this
.
list
=
res
.
data
.
data
.
pageData
;
this
.
getCount
();
}
else
{
}
else
{
this
.
loading
=
false
;
this
.
loading
=
false
;
this
.
$message
.
error
(
res
.
data
.
message
);
this
.
$message
.
error
(
res
.
data
.
message
);
...
@@ -547,7 +583,7 @@
...
@@ -547,7 +583,7 @@
},
},
err
=>
{}
err
=>
{}
);
);
this
.
getCount
();
},
},
handleCurrentChange
(
val
)
{
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
msg
.
pageIndex
=
val
;
...
...
src/components/SalesModule/groupTourOrder.vue
View file @
967a26d3
...
@@ -1490,6 +1490,7 @@
...
@@ -1490,6 +1490,7 @@
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
优惠
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"80"
>
平台在途
</th>
...
@@ -1597,6 +1598,41 @@
...
@@ -1597,6 +1598,41 @@
slot=
"reference"
>
{{
item
.
income
}}
</span>
slot=
"reference"
>
{{
item
.
income
}}
</span>
</el-popover>
</el-popover>
</td>
</td>
<!-- 优惠 -->
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.couponAllotList.length>0'
v-for=
"(item2,index2) in item.couponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
couponsName
}}
</td>
<td>
<span
v-if=
"item2.couponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.couponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
denomination
}}
</td>
<td>
满
{{
item2
.
useCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.accessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
acessDate
}}
</td>
</tr>
<tr
v-if=
'item.couponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
platformTax
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
<td>
{{
item
.
zaiTuMoney
}}
</td>
...
@@ -1684,7 +1720,7 @@
...
@@ -1684,7 +1720,7 @@
</td>
</td>
</tr>
</tr>
<tr
style=
"height:20px"
>
<tr
style=
"height:20px"
>
<td
colspan=
"1
5
"
class=
"RL_Order"
style=
"height:20px"
>
<td
colspan=
"1
6
"
class=
"RL_Order"
style=
"height:20px"
>
<span
class=
"RL-remarkTitle"
>
名单:
</span>
<span
class=
"RL-remarkTitle"
>
名单:
</span>
<span
class=
"RL-redType RL-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
class=
"RL-redType RL-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
v-for=
"(childItem) in item.guestList"
>
{{
childItem
.
userName
}}
</span>
<span
v-for=
"(childItem) in item.guestList"
>
{{
childItem
.
userName
}}
</span>
...
@@ -2488,7 +2524,6 @@
...
@@ -2488,7 +2524,6 @@
this
.
showID
=
data
this
.
showID
=
data
},
},
getRemarks
(
obj
)
{
getRemarks
(
obj
)
{
console
.
log
(
obj
,
'ssss'
);
this
.
isShowLayerRemarks
=
true
this
.
isShowLayerRemarks
=
true
this
.
isShowLayer
=
false
this
.
isShowLayer
=
false
this
.
$refs
[
'addMsg'
].
resetFields
()
this
.
$refs
[
'addMsg'
].
resetFields
()
...
@@ -3356,6 +3391,7 @@
...
@@ -3356,6 +3391,7 @@
'sellorder_post_GetTravelOrderList'
,
'sellorder_post_GetTravelOrderList'
,
this
.
msg
,
this
.
msg
,
res
=>
{
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
loading
=
false
this
.
loading
=
false
this
.
total
=
res
.
data
.
data
.
count
this
.
total
=
res
.
data
.
data
.
count
...
...
src/components/SalesModule/groupTourOrderByTuan.vue
View file @
967a26d3
...
@@ -1512,6 +1512,7 @@
...
@@ -1512,6 +1512,7 @@
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
优惠
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台在途
</th>
<th
width=
"80"
>
平台在途
</th>
...
@@ -1527,7 +1528,7 @@
...
@@ -1527,7 +1528,7 @@
<template
v-for=
"op in list"
>
<template
v-for=
"op in list"
>
<tbody
class=
"not_border"
>
<tbody
class=
"not_border"
>
<tr>
<tr>
<td
colspan=
"1
5
"
>
类型:
<span
style=
"color: #e95252;"
>
{{
op
.
groupName
}}
</span></td>
<td
colspan=
"1
6
"
>
类型:
<span
style=
"color: #e95252;"
>
{{
op
.
groupName
}}
</span></td>
</tr>
</tr>
</tbody>
</tbody>
<tbody
v-for=
"(item,index) in op.list"
:key=
"index"
>
<tbody
v-for=
"(item,index) in op.list"
:key=
"index"
>
...
@@ -1627,6 +1628,43 @@
...
@@ -1627,6 +1628,43 @@
<span
v-else
>
******
</span>
<span
v-else
>
******
</span>
</el-popover>
</el-popover>
<!--
<span
v-if=
'item.isOwn!=1 && userId!=1&&userId!=5 && isUpdateOrder==false'
>
******
</span>
-->
<!--
<span
v-if=
'item.isOwn!=1 && userId!=1&&userId!=5 && isUpdateOrder==false'
>
******
</span>
-->
</td>
<!-- 优惠 -->
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.couponAllotList.length>0'
v-for=
"(item2,index2) in item.couponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
couponsName
}}
</td>
<td>
<span
v-if=
"item2.couponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.couponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
denomination
}}
</td>
<td>
满
{{
item2
.
useCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.accessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
acessDate
}}
</td>
</tr>
<tr
v-if=
'item.couponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
v-if=
'item.isEnd==0'
style=
"cursor: pointer;"
@
click=
"getOrderDetail(item)"
slot=
"reference"
>
{{
item
.
income
}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
@
click=
"getOrderDetail(item)"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
</td>
<td>
<td>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
{{
item
.
refund
}}
</span>
<span
v-if=
"item.isOwn==1 || userId==1||userId==5 || isUpdateOrder"
>
{{
item
.
refund
}}
</span>
...
@@ -1715,7 +1753,7 @@
...
@@ -1715,7 +1753,7 @@
</td>
</td>
</tr>
</tr>
<tr
style=
"height:20px"
>
<tr
style=
"height:20px"
>
<td
colspan=
"1
4
"
class=
"RL_Order"
style=
"height:20px"
>
<td
colspan=
"1
5
"
class=
"RL_Order"
style=
"height:20px"
>
<span
class=
"RL-remarkTitle"
>
名单:
</span>
<span
class=
"RL-remarkTitle"
>
名单:
</span>
<span
class=
"RL-redType RL-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
class=
"RL-redType RL-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
v-for=
"(childItem) in item.guestList"
>
{{
childItem
.
userName
}}
</span>
<span
v-for=
"(childItem) in item.guestList"
>
{{
childItem
.
userName
}}
</span>
...
@@ -1756,7 +1794,7 @@
...
@@ -1756,7 +1794,7 @@
</div>
</div>
</div>
</div>
</td>
</td>
<td
colspan=
"
5
"
class=
"groupTourOrder_tickets"
style=
"height: 40px;"
>
<td
colspan=
"
6
"
class=
"groupTourOrder_tickets"
style=
"height: 40px;"
>
<div
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<div
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<div>
收款单据:
</div>
<div>
收款单据:
</div>
<div>
<div>
...
@@ -1788,7 +1826,7 @@
...
@@ -1788,7 +1826,7 @@
<tbody
v-show=
"list.length!==0"
>
<tbody
v-show=
"list.length!==0"
>
<tr>
<tr>
<td></td>
<td></td>
<td
colspan=
"1
4
"
class=
"groupTourOrderByTuan_seat"
>
<td
colspan=
"1
5
"
class=
"groupTourOrderByTuan_seat"
>
<div>
<div>
<span>
本团机位:
</span>
<span>
本团机位:
</span>
<span>
{{tuanInfo.config
&&
tuanInfo.config.YSeat}}Y + {{tuanInfo.config
&&
tuanInfo.config.CSeat}}E + {{tuanInfo.config
&&
tuanInfo.config.FSeat}}F
</span>
<span>
{{tuanInfo.config
&&
tuanInfo.config.YSeat}}Y + {{tuanInfo.config
&&
tuanInfo.config.CSeat}}E + {{tuanInfo.config
&&
tuanInfo.config.FSeat}}F
</span>
...
@@ -1821,7 +1859,7 @@
...
@@ -1821,7 +1859,7 @@
<!-- 取消订单 -->
<!-- 取消订单 -->
<tr
v-if=
"cancelRtData!=null && cancelRtData.length>0"
>
<tr
v-if=
"cancelRtData!=null && cancelRtData.length>0"
>
<td
colspan=
"1
5
"
>
<td
colspan=
"1
6
"
>
<span
class=
"RL-redType"
@
click=
"isShowCancelOrder=!isShowCancelOrder"
style=
"cursor:pointer"
title=
"点击查看"
>
取消订单(
<span
<span
class=
"RL-redType"
@
click=
"isShowCancelOrder=!isShowCancelOrder"
style=
"cursor:pointer"
title=
"点击查看"
>
取消订单(
<span
style=
"color:blue;"
>
{{!isShowCancelOrder?"展开":"收起"}}
</span>
)
</span>
style=
"color:blue;"
>
{{!isShowCancelOrder?"展开":"收起"}}
</span>
)
</span>
</td>
</td>
...
@@ -1845,35 +1883,7 @@
...
@@ -1845,35 +1883,7 @@
<p
v-if=
'item.isOwn==2&&userId!=1&&userId!=5&&positionId!=168'
>
*****
</p>
<p
v-if=
'item.isOwn==2&&userId!=1&&userId!=5&&positionId!=168'
>
*****
</p>
</td>
</td>
<td>
<td>
<!-- <el-popover style='padding: 0;' width="470" trigger="click" > -->
<!-- <div class="personNolayer">
<p>
<span>成人:{{item.manNum}}人</span>
<span>儿童:{{item.chirdNum}}人</span>
<span>老人:{{item.oldPeopleNum}}人</span>
<span>婴儿:{{item.babyNum}}人</span>
<span>单地接:{{item.airticketNum}}人</span>
</p>
<table border="0" cellspacing="1" cellpadding="1">
<tr>
<th>姓名</th>
<th>护照</th>
<th>性别</th>
<th>年龄</th>
<th width="110">联系电话</th>
</tr>
<tr v-if='memberList.length>0' v-for="(item2,index2) in memberList" :key="index2">
<td>{{item2.userName}}</td>
<td>{{item2.passportNo}}</td>
<td>{{item2.sexStr}}</td>
<td>{{item2.age}}</td>
<td>{{item2.mobilePhone}}</td>
</tr>
<tr v-if='memberList.length==0'>
<td colspan="5" align="center">暂无数据</td>
</tr>
</table>
</div> -->
<span
v-if=
'item.guestNumStatus==1'
style=
"color:#1AA86B;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
<span
v-if=
'item.guestNumStatus==1'
style=
"color:#1AA86B;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
<span
v-if=
'item.guestNumStatus==2'
style=
"color:#E95252;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
<span
v-if=
'item.guestNumStatus==2'
style=
"color:#E95252;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
<span
v-if=
'item.guestNumStatus==3'
style=
"color:#666;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
<span
v-if=
'item.guestNumStatus==3'
style=
"color:#666;"
class=
"personNo"
slot=
"reference"
@
click=
"getMembersDetail(item)"
>
{{item.guestNum}}/{{item.ySeatNum>0? item.ySeatNum+'Y ':''}}{{item.eSeatNum>0? item.eSeatNum+'E ':''}}{{item.fSeatNum>0? item.fSeatNum+'F ':''}}
</span>
...
@@ -1917,6 +1927,10 @@
...
@@ -1917,6 +1927,10 @@
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
@
click=
"getOrderDetail(item)"
slot=
"reference"
>
{{item.income}}
</span>
<span
v-if=
'item.isEnd!=0'
style=
"cursor: pointer;color: #e95252;"
@
click=
"getOrderDetail(item)"
slot=
"reference"
>
{{item.income}}
</span>
</el-popover>
</el-popover>
</td>
</td>
<!-- 取消订单的优惠,金额直接为0-->
<td>
0.00
</td>
<td>
{{item.refund}}
</td>
<td>
{{item.refund}}
</td>
<td>
{{item.platformTax}}
</td>
<td>
{{item.platformTax}}
</td>
<td>
{{item.DueInMoney}}
</td>
<td>
{{item.DueInMoney}}
</td>
...
@@ -2002,7 +2016,7 @@
...
@@ -2002,7 +2016,7 @@
</div>
</div>
</div>
</div>
</td>
</td>
<td
colspan=
"
7
"
class=
"groupTourOrder_tickets"
style=
"height: 40px;"
>
<td
colspan=
"
8
"
class=
"groupTourOrder_tickets"
style=
"height: 40px;"
>
<div>
<div>
<div>
收款单据:
</div>
<div>
收款单据:
</div>
<div>
<div>
...
@@ -2644,7 +2658,6 @@ export default {
...
@@ -2644,7 +2658,6 @@ export default {
"travel_get_GetTravelConfigTCID"
,
"travel_get_GetTravelConfigTCID"
,
{
TCID
:
this
.
$route
.
query
.
id
},
{
TCID
:
this
.
$route
.
query
.
id
},
res
=>
{
res
=>
{
console
.
log
(
"111"
,
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
tuanInfo
=
res
.
data
.
data
;
this
.
tuanInfo
=
res
.
data
.
data
;
}
}
...
@@ -3868,7 +3881,6 @@ submitYSZEForm(){
...
@@ -3868,7 +3881,6 @@ submitYSZEForm(){
this
.
seat
.
leaderNum
=
res
.
data
.
data
.
pageData
.
leaderNum
this
.
seat
.
leaderNum
=
res
.
data
.
data
.
pageData
.
leaderNum
this
.
seat
.
ownVisaNum
=
res
.
data
.
data
.
pageData
.
ownVisaNum
this
.
seat
.
ownVisaNum
=
res
.
data
.
data
.
pageData
.
ownVisaNum
console
.
log
(
"this.seat"
,
this
.
seat
)
}
else
{
}
else
{
this
.
$message
.
error
(
res
.
data
.
message
);
this
.
$message
.
error
(
res
.
data
.
message
);
}
}
...
...
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
967a26d3
...
@@ -1540,7 +1540,41 @@
...
@@ -1540,7 +1540,41 @@
slot=
"reference"
>
{{
item
.
Income
}}
</span>
slot=
"reference"
>
{{
item
.
Income
}}
</span>
</el-popover>
</el-popover>
</td>
</td>
<td>
{{
moneyFormat
(
item
.
DiscountMoney
)
}}
</td>
<!-- 优惠 -->
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.CouponAllotList.length>0'
v-for=
"(item2,index2) in item.CouponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
CouponsName
}}
</td>
<td>
<span
v-if=
"item2.CouponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.CouponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
Denomination
}}
</td>
<td>
满
{{
item2
.
UseCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.AccessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
AcessDate
}}
</td>
</tr>
<tr
v-if=
'item.CouponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
moneyFormat
(
item
.
DiscountMoney
)
}}
</span>
</el-popover>
</td>
<td>
{{
item
.
Refund
}}
</td>
<td>
{{
item
.
Refund
}}
</td>
<td>
{{
item
.
PlatformTax
}}
</td>
<td>
{{
item
.
PlatformTax
}}
</td>
<td>
{{
item
.
ZaiTuMoney
}}
</td>
<td>
{{
item
.
ZaiTuMoney
}}
</td>
...
@@ -1726,7 +1760,42 @@
...
@@ -1726,7 +1760,42 @@
@
click=
"getOrderDetail(childItem)"
slot=
"reference"
>
{{
childItem
.
Income
}}
</span>
@
click=
"getOrderDetail(childItem)"
slot=
"reference"
>
{{
childItem
.
Income
}}
</span>
</el-popover>
</el-popover>
</td>
</td>
<td
class=
"nowrap"
>
{{
moneyFormat
(
childItem
.
DiscountMoney
)
}}
</td>
<!-- 其他类型的优惠 -->
<td
class=
"nowrap"
>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'childItem.CouponAllotList.length>0'
v-for=
"(item2,index2) in childItem.CouponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
CouponsName
}}
</td>
<td>
<span
v-if=
"item2.CouponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.CouponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
Denomination
}}
</td>
<td>
满
{{
item2
.
UseCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.AccessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
AcessDate
}}
</td>
</tr>
<tr
v-if=
'childItem.CouponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
childItem
.
DiscountMoney
}}
</span>
</el-popover>
</td>
<td
class=
"nowrap"
>
{{
childItem
.
Refund
}}
</td>
<td
class=
"nowrap"
>
{{
childItem
.
Refund
}}
</td>
<td
class=
"nowrap"
>
{{
childItem
.
PlatformTax
}}
</td>
<td
class=
"nowrap"
>
{{
childItem
.
PlatformTax
}}
</td>
<td
class=
"nowrap"
>
{{
childItem
.
ZaiTuMoney
}}
</td>
<td
class=
"nowrap"
>
{{
childItem
.
ZaiTuMoney
}}
</td>
...
@@ -1952,7 +2021,40 @@
...
@@ -1952,7 +2021,40 @@
slot=
"reference"
>
{{item.Income}}
</span>
slot=
"reference"
>
{{item.Income}}
</span>
</el-popover>
</el-popover>
</td>
</td>
<td
class=
"nowrap"
>
{{moneyFormat(item.DiscountMoney)}}
</td>
<td
class=
"nowrap"
>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.CouponAllotList.length>0'
v-for=
"(item2,index2) in item.CouponAllotList"
:key=
"index2"
>
<td>
{{item2.CouponsName}}
</td>
<td>
<span
v-if=
"item2.CouponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.CouponsType==2"
>
折扣卷
</span>
</td>
<td>
{{item2.Denomination}}
</td>
<td>
满{{item2.UseCondition}}可用
</td>
<td>
<span
v-if=
"item2.AccessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{item2.AcessDate}}
</td>
</tr>
<tr
v-if=
'item.CouponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{moneyFormat(item.DiscountMoney)}}
</span>
</el-popover>
</td>
<td>
{{item.Refund}}
</td>
<td>
{{item.Refund}}
</td>
<td>
{{item.PlatformTax}}
</td>
<td>
{{item.PlatformTax}}
</td>
<td>
{{item.ZaiTuMoney}}
</td>
<td>
{{item.ZaiTuMoney}}
</td>
...
@@ -3888,6 +3990,7 @@ submitYSZEForm(){
...
@@ -3888,6 +3990,7 @@ submitYSZEForm(){
IsTravelMoney
:
1
IsTravelMoney
:
1
},
},
res
=>
{
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
orderList
=
res
.
data
.
data
;
this
.
orderList
=
res
.
data
.
data
;
}
}
...
...
src/components/TravelManager/TravelList/TeamBalancePayment.vue
View file @
967a26d3
...
@@ -1024,35 +1024,39 @@
...
@@ -1024,35 +1024,39 @@
<td>
{{
item
.
ContactMobile
}}
</td>
<td>
{{
item
.
ContactMobile
}}
</td>
<td>
{{
item
.
CreateDate
}}
</td>
<td>
{{
item
.
CreateDate
}}
</td>
<td>
<td>
<el-popover
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
placement=
"right"
<div
class=
"personNolayer"
>
width=
"720"
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
trigger=
"hover"
>
<tr>
<el-table
:data=
"item.CouponAllotList"
>
<th>
优惠券名称
</th>
<el-table-column
width=
"120"
property=
"CouponsName"
label=
"优惠券名称"
></el-table-column>
<th>
优惠券类型
</th>
<!--
<el-table-column
property=
"CouponId"
label=
"优惠券id"
></el-table-column>
-->
<th>
抵扣金额/折扣
</th>
<el-table-column
width=
"120"
label=
"优惠券类型"
>
<th>
使用条件
</th>
<template
slot-scope=
"scope"
>
<th>
获取方式
</th>
<span
v-if=
"scope.row.CouponsType==1"
>
抵用券
</span>
<th>
获取日期
</th>
<span
v-if=
"scope.row.CouponsType==2"
>
折扣卷
</span>
</tr>
</
template
>
<tr
v-if=
'item.CouponAllotList.length>0'
v-for=
"(item2,index2) in item.CouponAllotList"
:key=
"index2"
>
</el-table-column>
<td>
{{
item2
.
CouponsName
}}
</td>
<el-table-column
width=
"120"
property=
"Denomination"
label=
"抵扣金额/折扣"
></el-table-column>
<td>
<el-table-column
property=
"UseCondition"
label=
"使用条件"
>
<span
v-if=
"item2.CouponsType==1"
>
抵用券
</span>
<
template
slot-scope=
"scope"
>
<span
v-if=
"item2.CouponsType==2"
>
折扣卷
</span>
<span>
满
{{
scope
.
row
.
UseCondition
}}
可用
</span>
</td>
</
template
>
<td>
{{
item2
.
Denomination
}}
</td>
</el-table-column>
<td>
满
{{
item2
.
UseCondition
}}
可用
</td>
<el-table-column
property=
""
label=
"获取方式"
>
<td>
<
template
slot-scope=
"scope"
>
<span
v-if=
"item2.AccessType==1"
>
抽奖
</span>
<span
v-if=
"scope.row.AccessType==1"
>
抽奖
</span>
<span
v-else
></span>
<span
v-else
></span>
</
template
>
</td>
</el-table-column>
<td>
{{
item2
.
AcessDate
}}
</td>
<el-table-column
width=
"160"
property=
"AcessDate"
label=
"获取日期"
></el-table-column>
</tr>
</el-table>
<tr
v-if=
'item.CouponAllotList.length==0'
>
<span
slot=
"reference"
style=
"cursor:pointer"
>
{{moneyFormat(item.DiscountMoney)}}
</span>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
moneyFormat
(
item
.
DiscountMoney
)
}}
</span>
</el-popover>
</el-popover>
</td>
</td>
</tr>
</tr>
</
template
>
</
template
>
...
...
src/components/TravelManager/TravelList/todayOrderTotal.vue
View file @
967a26d3
...
@@ -192,6 +192,7 @@
...
@@ -192,6 +192,7 @@
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
成交单价
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
应收总额
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
实收
</th>
<th
width=
"80"
>
优惠
</th>
<th
width=
"60"
>
小费
</th>
<th
width=
"60"
>
小费
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
退款
</th>
<th
width=
"80"
>
平台税金
</th>
<th
width=
"80"
>
平台税金
</th>
...
@@ -249,10 +250,46 @@
...
@@ -249,10 +250,46 @@
<td>
<td>
<p
style=
"color:#FF9C00"
>
¥
{{
item
.
preferPrice
}}
</p>
<p
style=
"color:#FF9C00"
>
¥
{{
item
.
preferPrice
}}
</p>
</td>
</td>
<td>
<td>
<span
v-if=
"item.isEnd==0"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd==0"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd!=0"
style=
"color: #e95252;"
>
{{
item
.
income
}}
</span>
<span
v-if=
"item.isEnd!=0"
style=
"color: #e95252;"
>
{{
item
.
income
}}
</span>
</td>
</td>
<!-- 优惠 -->
<td>
<el-popover
style=
'padding: 0;'
width=
"600"
trigger=
"click"
>
<div
class=
"personNolayer"
>
<table
border=
"0"
cellspacing=
"1"
cellpadding=
"1"
>
<tr>
<th>
优惠券名称
</th>
<th>
优惠券类型
</th>
<th>
抵扣金额/折扣
</th>
<th>
使用条件
</th>
<th>
获取方式
</th>
<th>
获取日期
</th>
</tr>
<tr
v-if=
'item.couponAllotList.length>0'
v-for=
"(item2,index2) in item.couponAllotList"
:key=
"index2"
>
<td>
{{
item2
.
couponsName
}}
</td>
<td>
<span
v-if=
"item2.couponsType==1"
>
抵用券
</span>
<span
v-if=
"item2.couponsType==2"
>
折扣卷
</span>
</td>
<td>
{{
item2
.
denomination
}}
</td>
<td>
满
{{
item2
.
useCondition
}}
可用
</td>
<td>
<span
v-if=
"item2.accessType==1"
>
抽奖
</span>
<span
v-else
></span>
</td>
<td>
{{
item2
.
acessDate
}}
</td>
</tr>
<tr
v-if=
'item.couponAllotList.length==0'
>
<td
colspan=
"6"
align=
"center"
>
暂无数据
</td>
</tr>
</table>
</div>
<span
style=
"cursor: pointer;color: #e95252;"
slot=
"reference"
>
{{
item
.
discountMoney
}}
</span>
</el-popover>
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-if=
"item.tipMoney"
>
{{
item
.
tipMoney
}}
</td>
<td
v-else
>
0.00
</td>
<td
v-else
>
0.00
</td>
<td>
{{
item
.
refund
}}
</td>
<td>
{{
item
.
refund
}}
</td>
...
@@ -312,7 +349,7 @@
...
@@ -312,7 +349,7 @@
</div>
</div>
</div>
</div>
</td>
</td>
<td
colspan=
"
7
"
class=
"groupTourOrder_tickets"
style=
"height: 20px;cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<td
colspan=
"
8
"
class=
"groupTourOrder_tickets"
style=
"height: 20px;cursor: pointer;"
@
click=
"goUrlSFD('SalesFinancialDetail', '销售财务单据', item)"
>
<div>
<div>
<div
style=
"white-space: nowrap"
>
收款单据:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
暂无数据
</span>
<div
style=
"white-space: nowrap"
>
收款单据:
<span
v-if=
"item.financeList.length===0"
style=
"cursor: default;"
>
暂无数据
</span>
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
<span
v-for=
"(item2,index2) in item.financeList"
:key=
"index2"
>
...
@@ -614,6 +651,7 @@ export default {
...
@@ -614,6 +651,7 @@ export default {
"sellorder_post_OP_GetOrderList"
,
"sellorder_post_OP_GetOrderList"
,
this
.
msg
,
this
.
msg
,
res
=>
{
res
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
this
.
total
=
res
.
data
.
data
.
count
;
...
...
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