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
88fd6fbd
Commit
88fd6fbd
authored
Feb 12, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
d5d1c614
361c43d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
VisaProductEditOrder.vue
src/components/SalesVisa/VisaProductEditOrder.vue
+6
-4
TeamBalancePayment.vue
...omponents/TravelManager/TravelList/TeamBalancePayment.vue
+4
-2
No files found.
src/components/SalesVisa/VisaProductEditOrder.vue
View file @
88fd6fbd
...
@@ -118,6 +118,7 @@
...
@@ -118,6 +118,7 @@
<th
width=
"8%"
>
平台税金
</th>
<th
width=
"8%"
>
平台税金
</th>
<th
width=
"8%"
>
预计提成
</th>
<th
width=
"8%"
>
预计提成
</th>
<th
width=
"8%"
>
报名日期
</th>
<th
width=
"8%"
>
报名日期
</th>
<th
width=
"8%"
>
状态
</th>
<th
width=
"10%"
>
操作
</th>
<th
width=
"10%"
>
操作
</th>
</tr>
</tr>
<tbody
v-for=
'item in dataList'
>
<tbody
v-for=
'item in dataList'
>
...
@@ -143,6 +144,7 @@
...
@@ -143,6 +144,7 @@
<span
class=
"peopleNum"
>
¥
{{
moneyFormat
(
item
.
commission
)
}}
</span>
<span
class=
"peopleNum"
>
¥
{{
moneyFormat
(
item
.
commission
)
}}
</span>
</td>
</td>
<td>
{{
item
.
createTime
}}
</td>
<td>
{{
item
.
createTime
}}
</td>
<td>
{{
item
.
visaOrderStatus
==
1
?
"正常"
:
"取消"
}}
</td>
<td
class=
"groupTourOrderIcon"
>
<td
class=
"groupTourOrderIcon"
>
<el-button-group>
<el-button-group>
<el-tooltip
v-if=
"item.income
<
=
0
&&
item
.
visaOrderStatus=
=1&&item.visaStatus==1"
class=
"item"
effect=
"dark"
content=
"修改"
placement=
"top-start"
>
<el-tooltip
v-if=
"item.income
<
=
0
&&
item
.
visaOrderStatus=
=1&&item.visaStatus==1"
class=
"item"
effect=
"dark"
content=
"修改"
placement=
"top-start"
>
...
@@ -162,7 +164,7 @@
...
@@ -162,7 +164,7 @@
</tr>
</tr>
<tr>
<tr>
<td
colspan=
"1
1
"
class=
"RL_Order"
style=
"height:40px;"
>
<td
colspan=
"1
2
"
class=
"RL_Order"
style=
"height:40px;"
>
<span
class=
"VD-remarkTitle"
>
名单:
</span>
<span
class=
"VD-remarkTitle"
>
名单:
</span>
<span
class=
"VD-redType VD-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
class=
"VD-redType VD-remarkCon"
v-if=
"item.guestList.length>0"
>
<span
v-for=
"(childItem) in item.guestList"
style=
"margin-right:10px;"
>
{{
childItem
.
userName
}}
</span>
<span
v-for=
"(childItem) in item.guestList"
style=
"margin-right:10px;"
>
{{
childItem
.
userName
}}
</span>
...
@@ -173,7 +175,7 @@
...
@@ -173,7 +175,7 @@
</td>
</td>
</tr>
</tr>
<tr>
<tr>
<td
colspan=
"
7
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<td
colspan=
"
8
"
class=
"groupTourOrder_remarks"
style=
"height: 40px;"
>
<div>
<div>
<div>
<div>
<span
class=
"VD-remarkTitle"
>
备注:
</span>
<span
class=
"VD-remarkTitle"
>
备注:
</span>
...
@@ -181,7 +183,7 @@
...
@@ -181,7 +183,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>
<span>
财务单据:
</span>
<span>
财务单据:
</span>
...
@@ -197,7 +199,7 @@
...
@@ -197,7 +199,7 @@
</tr>
</tr>
</tbody>
</tbody>
<tr
v-show=
"dataList.length==0"
>
<tr
v-show=
"dataList.length==0"
>
<td
v-show=
"dataList.length==0"
colspan=
"
7
"
align=
"center"
>
暂无数据
</td>
<td
v-show=
"dataList.length==0"
colspan=
"
12
"
align=
"center"
>
暂无数据
</td>
</tr>
</tr>
</table>
</table>
...
...
src/components/TravelManager/TravelList/TeamBalancePayment.vue
View file @
88fd6fbd
...
@@ -217,7 +217,8 @@
...
@@ -217,7 +217,8 @@
</td>
</td>
<td
style=
"font-size:14px;"
>
<td
style=
"font-size:14px;"
>
应收:
{{
item
.
Money
}}
应收:
{{
item
.
Money
}}
<span
class=
"TB_PayMoney"
>
实收:
{{
item
.
PayMoney
}}
</span>
<!--
<span
class=
"TB_PayMoney"
>
实收:
{{
item
.
PayMoney
}}
</span>
-->
<span
class=
"TB_PayMoney"
>
实收:
{{
item
.
Money
}}
</span>
</td>
</td>
<td>
{{
item
.
TradeDate
}}
</td>
<td>
{{
item
.
TradeDate
}}
</td>
<td>
<td>
...
@@ -265,7 +266,8 @@
...
@@ -265,7 +266,8 @@
</td>
</td>
<td
style=
"font-size:14px;"
>
<td
style=
"font-size:14px;"
>
应付:
{{
item
.
Money
}}
应付:
{{
item
.
Money
}}
<span
class=
"TB_PayMoney"
>
实付:
{{
item
.
PayMoney
}}
</span>
<!--
<span
class=
"TB_PayMoney"
>
实付:
{{
item
.
PayMoney
}}
</span>
-->
<span
class=
"TB_PayMoney"
>
实付:
{{
item
.
Money
}}
</span>
</td>
</td>
<td>
{{
item
.
TradeDate
}}
</td>
<td>
{{
item
.
TradeDate
}}
</td>
<td>
<td>
...
...
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