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
d6e3bf1f
Commit
d6e3bf1f
authored
Aug 22, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
6d4be798
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
11 deletions
+18
-11
leaderReimbursement.vue
src/components/LeaderManagement/leaderReimbursement.vue
+18
-11
No files found.
src/components/LeaderManagement/leaderReimbursement.vue
View file @
d6e3bf1f
...
...
@@ -903,7 +903,7 @@
{{
currencyTypeObj
[
cur
.
CurrencyId
]
}}
</
template
>
)
</span>
<
/br
></span>
<
br
/
></span>
</td>
<td
style=
"padding: 5px 20px;"
>
<div
style=
"margin:10px 0"
v-for=
"cur in CurrencyListMoney"
>
...
...
@@ -1500,9 +1500,9 @@
}
if
(
!
num
)
{
if
(
totailMoney
>
leadrPlanPrice
)
//return this.$message.error("最大领款为预付合计金额的95%!");
if
(
!
leadr
.
LeaderGetPriceT
||
leadr
.
LeaderGetPriceT
<=
0
)
return
this
.
$message
.
error
(
"请输入金额!"
);
//
return this.$message.error("最大领款为预付合计金额的95%!");
if
(
!
leadr
.
LeaderGetPriceT
||
leadr
.
LeaderGetPriceT
<=
0
)
return
this
.
$message
.
error
(
"请输入金额!"
);
}
if
(
this
.
list
.
hotelNoSureInfo
!==
""
)
{
this
.
$confirm
(
...
...
@@ -1768,14 +1768,21 @@
});
this
.
CurrencyListMoney
.
forEach
((
cur
,
i
)
=>
{
cur
.
LeaderGetPriceArr
.
forEach
(
lead
=>
{
if
(
lead
.
LeaderGetPrice
==
0
){
lead
.
LeaderGetPriceT
=
(
Math
.
floor
((
cur
.
money
*
this
.
comRate
-
cur
.
yiLing
)
*
100
)
/
100
)
/
10000
;
lead
.
LeaderGetPriceT
=
lead
.
LeaderGetPriceT
.
toFixed
(
1
)
*
10000
}
else
{
lead
.
LeaderGetPriceT
=
Math
.
floor
((
cur
.
money
*
this
.
comRate
-
cur
.
yiLing
)
*
100
)
/
100
;
var
tempMoney
=
(
cur
.
money
*
this
.
comRate
-
cur
.
yiLing
);
if
(
lead
.
LeaderGetPrice
==
0
)
{
if
(
this
.
myLineId
==
14
)
{
lead
.
LeaderGetPriceT
=
Math
.
round
(
tempMoney
/
10000
)
*
10000
;
}
else
{
//其它线路可能不精确到"万"
lead
.
LeaderGetPriceT
=
Math
.
round
(
tempMoney
/
10000
)
*
10000
;
}
}
else
{
if
(
this
.
myLineId
==
14
)
{
lead
.
LeaderGetPriceT
=
Math
.
round
(
tempMoney
*
100
)
/
100
;
}
else
{
lead
.
LeaderGetPriceT
=
Math
.
round
(
tempMoney
*
100
)
/
100
;
}
}
lead
.
PlanPrice
=
cur
.
money
*
this
.
comRate
;
});
});
...
...
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