Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
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
华国豪
CRM
Commits
7c6628d4
Commit
7c6628d4
authored
May 23, 2022
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
69cc4865
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
orderProfits.vue
src/components/customerManage/orderProfits.vue
+1
-0
index.vue
src/components/planeTicketOrder/index.vue
+21
-1
No files found.
src/components/customerManage/orderProfits.vue
View file @
7c6628d4
...
...
@@ -50,6 +50,7 @@
<div>
应付:
<span>
¥
{{
d
.
CostYFMoney
}}
</span></div>
<div>
实付:
<span
class=
"Team_Coins"
>
¥
{{
d
.
CostSFMoney
}}
</span></div>
<div>
待付:
<span
class=
"Team_Coins"
>
¥
{{
d
.
CostDFMoney
}}
</span></div>
<div>
提成:
<span
class=
"Team_Coins"
>
¥
{{
d
.
Commission
}}
</span></div>
<div>
注:成本总额+订单提成
</div>
...
...
src/components/planeTicketOrder/index.vue
View file @
7c6628d4
...
...
@@ -418,7 +418,27 @@
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"TaxMoney"
label=
"平台费用"
>
</el-table-column>
<el-table-column
prop=
"TaxMoney"
label=
"平台费用"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
TaxMoney
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"GrossMoney"
label=
"当前利润"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
GrossMoney
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"Commission"
label=
"提成"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
Commission
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"Profit"
label=
"订单毛利"
>
<
template
slot-scope=
"scope"
>
<span
:style=
"
{color:scope.row.Profit
<
=
0
?'
red
'
:
'#
000
'}"
>
...
...
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