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
5d7386e3
Commit
5d7386e3
authored
Oct 13, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
6eed361f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
OrderList.vue
src/components/scenicSpot/reservation/OrderList.vue
+5
-0
ReservationOrder.vue
src/components/scenicSpot/reservation/ReservationOrder.vue
+3
-2
No files found.
src/components/scenicSpot/reservation/OrderList.vue
View file @
5d7386e3
...
...
@@ -612,6 +612,11 @@
<span
class=
"fz15 fbold"
>
{{
scope
.
row
.
Refund
?
scope
.
row
.
Refund
:
"-"
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"平台在途"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<span
class=
"fz15 fbold"
>
{{
scope
.
row
.
PlatformMoney
?
scope
.
row
.
PlatformMoney
:
"-"
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"待收"
min-width=
"100"
>
<
template
slot-scope=
"scope"
>
<span
class=
"fz15 fbold"
...
...
src/components/scenicSpot/reservation/ReservationOrder.vue
View file @
5d7386e3
...
...
@@ -440,10 +440,11 @@ export default {
Income
:
item
.
Income
,
CostMoney
:
item
.
CostMoney
,
PlatformTax
:
item
.
PlatformTax
,
Refund
:
item
.
Refund
Refund
:
item
.
Refund
,
PlatformMoney
:
item
.
PlatformMoney
}
let
DaiShou
DaiShou
=
Number
(
item
.
Money
-
item
.
Income
-
item
.
PlatformTax
+
item
.
Refund
)
DaiShou
=
Number
(
item
.
Money
-
item
.
Income
-
item
.
PlatformTax
-
item
.
PlatformMoney
+
item
.
Refund
)
item
.
DaiShou
=
DaiShou
.
toFixed
(
2
)
===
'-0.00'
?
'0.00'
:
DaiShou
.
toFixed
(
2
)
item
.
list
.
push
(
datas
)
})
...
...
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