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
eb8de9b7
Commit
eb8de9b7
authored
May 29, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
ef4f1219
d61371cf
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
76 additions
and
33 deletions
+76
-33
ShoppingStore.vue
src/components/ShoppingStore/ShoppingStore.vue
+51
-10
TeamBalancePayment.vue
...omponents/TravelManager/TravelList/TeamBalancePayment.vue
+16
-21
BusInfo.vue
src/components/busManagement/BusInfo.vue
+9
-2
No files found.
src/components/ShoppingStore/ShoppingStore.vue
View file @
eb8de9b7
...
...
@@ -509,11 +509,44 @@
<button
class=
"normalBtn"
type=
"button"
@
click=
"showDiv"
>
{{
$t
(
'pub.addBtn'
)
}}
</button>
<button
class=
"normalBtn importBtn"
type=
"button"
@
click=
"outerVisible=true"
>
导入营销数据
</button>
<a
class=
"hollowFixedBtn downBtn"
:href=
"downList"
>
下载模板
</a>
<button
class=
"hollowFixedBtn"
type=
"button"
style=
"display:none;"
@
click=
"DownLoadShop()"
>
导出
</button>
</li>
</ul>
</div>
<!--不要删除-->
<div
style=
"display:none"
>
<table>
<tr>
<td>
进店时间:
</td>
<td>
<el-date-picker
class=
"w150"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
""
v-model=
"DownLoadmsg.EnterTime"
></el-date-picker>
</td>
<td>
创建时间:
</td>
<td>
<el-date-picker
class=
"w150"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
""
v-model=
"DownLoadmsg.CreateDate"
>
</el-date-picker>
</td>
<td>
购物店:
</td>
<td>
<el-select
multiple=
""
class=
"w150"
v-model=
'DownLoadmsg.ShopIds'
filterable
placeholder=
"请选择购物店"
>
<el-option
v-for=
'item in getShop'
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
>
</el-option>
</el-select>
</td>
<td>
<button
class=
"hollowFixedBtn"
type=
"button"
@
click=
"DownLoadShop()"
>
导出
</button>
</td>
</tr>
</table>
</div>
<div
class=
"hotelResource clearfix"
v-loading=
"loading"
:class=
"
{'divTop':isShow,'fillTop':fillShow}">
<div
class=
"resourceList"
v-for=
"item in dataInfo"
:key=
"item.subCode"
>
<div
class=
"reTopInfo"
>
...
...
@@ -804,6 +837,17 @@
QDistrict
:
""
,
Name
:
""
},
//文件下载参数
DownLoadmsg
:
{
//创建日期
CreateDate
:
""
,
//进店时间
EnterTime
:
""
,
//操作人
CreateBy
:
0
,
//购物店Ids
ShopIds
:
""
},
addMsg
:
{
ID
:
"0"
,
Name
:
""
,
...
...
@@ -852,12 +896,9 @@
//下载Excel
DownLoadShop
()
{
this
.
loading
=
true
;
let
qMsg
=
{
queryMsg
:
this
.
msg
,
uid
:
this
.
getLocalStorage
().
EmployeeId
};
this
.
DownLoadmsg
.
CreateBy
=
this
.
getLocalStorage
().
EmployeeId
;
let
fileName
=
"购物店单据导出"
+
this
.
$commonUtils
.
getCurrentDate
()
+
".xls"
;
this
.
GetLocalFile
(
"shop_get_downloadShopFinaceList"
,
qM
sg
,
fileName
,
this
.
GetLocalFile
(
"shop_get_downloadShopFinaceList"
,
this
.
DownLoadm
sg
,
fileName
,
res
=>
{
this
.
loading
=
false
;
});
...
...
src/components/TravelManager/TravelList/TeamBalancePayment.vue
View file @
eb8de9b7
...
...
@@ -102,10 +102,6 @@
color
:
#4d7afd
;
}
.Team_Incontent
{
margin-left
:
35px
;
}
.Team_firstTitle
span
{
margin-right
:
10px
;
text-align
:
center
;
...
...
@@ -114,7 +110,6 @@
}
.Team_Incontent
span
{
margin-left
:
20px
;
font-size
:
14px
;
font-family
:
'PingFangSC-Fine'
;
}
...
...
@@ -174,9 +169,9 @@
</span>
团费收入
</div>
<div
class=
"Team_Incontent"
>
<div>
应收
<span>
¥
{{
DataList
.
TeamBalance
.
ShouldReceive
}}
</span></div>
<div>
实收
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualReceive
}}
</span></div>
<div>
待收
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
WaitRecive
}}
</span></div>
<div>
应收
:
<span>
¥
{{
DataList
.
TeamBalance
.
ShouldReceive
}}
</span></div>
<div>
实收
:
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualReceive
}}
</span></div>
<div>
待收
:
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
WaitRecive
}}
</span></div>
<div>
注:应收=订单应收总额,实收=订单实收总额
</div>
...
...
@@ -191,9 +186,9 @@
</span>
其他收入
</div>
<div
class=
"Team_Incontent"
>
<div>
应收
<span>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalyf
)
}}
</span></div>
<div>
实收
<span
class=
"Team_Coins"
>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalsf
)
}}
</span></div>
<div>
待收
<span
class=
"Team_Coins"
>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalyf
-
moneyAll
.
otheryTotalsf
)
}}
</span></div>
<div>
应收
:
<span>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalyf
)
}}
</span></div>
<div>
实收
:
<span
class=
"Team_Coins"
>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalsf
)
}}
</span></div>
<div>
待收
:
<span
class=
"Team_Coins"
>
¥
{{
moneyFormat
(
moneyAll
.
otheryTotalyf
-
moneyAll
.
otheryTotalsf
)
}}
</span></div>
<!--
<div>
注:应收=订单应收总额,实收=订单实收总额
</div>
-->
...
...
@@ -208,9 +203,9 @@
</span>
支出
</div>
<div
class=
"Team_Incontent"
>
<div>
应付
<span>
¥
{{
DataList
.
TeamBalance
.
ShouldPay
}}
</span></div>
<div>
实付
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualPay
}}
</span></div>
<div>
待付
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
WaitPay
}}
</span></div>
<div>
应付
:
<span>
¥
{{
DataList
.
TeamBalance
.
ShouldPay
}}
</span></div>
<div>
实付
:
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualPay
}}
</span></div>
<div>
待付
:
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
WaitPay
}}
</span></div>
<div>
注:成本单据总额(包含退款)+提成-小费收入-地接收入
</div>
...
...
@@ -225,8 +220,8 @@
</span>
利润
</div>
<div
class=
"Team_Incontent"
>
<div>
实际利润
<span>
¥
{{
DataList
.
TeamBalance
.
ExpectedProfit
}}
</span></div>
<div>
当前利润
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualProfit
}}
</span></div>
<div>
实际利润
:
<span>
¥
{{
DataList
.
TeamBalance
.
ExpectedProfit
}}
</span></div>
<div>
当前利润
:
<span
class=
"Team_Coins"
>
¥
{{
DataList
.
TeamBalance
.
ActualProfit
}}
</span></div>
<div>
注:实收-(应付/实付)+佣金收入+自费收入-联运成本
</div>
...
...
@@ -240,16 +235,16 @@
<i
class=
"iconfont icon-qian"
></i>
</span>
其他
</div>
<div
class=
"Team_Incontent"
style=
"height:80px;overflow:auto;"
>
<div>
提成:
</div>
<div
class=
"Team_Incontent"
style=
"height:50px;overflow:auto;margin-bottom:10px;"
>
<div>
<div>
提
成
</div>
<div
style=
"margin-bottom:6px;"
>
<template
v-for=
"subItem in DataList.ExpectedCutList"
>
<div
style=
"margin-bottom:
10
px;"
>
{{
subItem
.
BranchName
}}
¥
{{
subItem
.
expectedCut
}}
</div>
<div
style=
"margin-bottom:
5
px;"
>
{{
subItem
.
BranchName
}}
¥
{{
subItem
.
expectedCut
}}
</div>
</
template
>
</div>
</div>
<div>
联运成本
<span>
¥{{DataList.LYCB}}
</span></div>
<div>
联运成本
:
<span>
¥{{DataList.LYCB}}
</span></div>
</div>
<div
class=
"Team_firstTitle"
>
<span
class=
"Team_comCoinType Team_lirun"
>
...
...
@@ -257,7 +252,7 @@
</span>
优惠
</div>
<div
class=
"Team_Incontent"
>
<div>
金
额
<span>
¥{{DataList.TeamBalance.DiscountMoney}}
</span></div>
<div>
金
额:
<span>
¥{{DataList.TeamBalance.DiscountMoney}}
</span></div>
</div>
</div>
</el-col>
...
...
src/components/busManagement/BusInfo.vue
View file @
eb8de9b7
...
...
@@ -534,9 +534,16 @@
tempHighSpeedFee
+=
parseFloat
(
busTypeObj
.
AllDayHighSpeedFee
);
}
});
if
(
obj
.
HighSpeedPrice
==
0
)
{
obj
.
HighSpeedPrice
=
tempHighSpeedFee
;
}
if
(
obj
.
CostPrice
==
0
)
{
obj
.
CostPrice
=
tempCostFee
;
}
}
}
else
{
obj
.
PayType
=
null
;
}
...
...
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