Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
97291d02
Commit
97291d02
authored
Jul 16, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
佣金付款单去最新活率接口
parent
bb8635ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
commission-requestFunds.vue
src/views/ecw/financial/commission-requestFunds.vue
+6
-3
No files found.
src/views/ecw/financial/commission-requestFunds.vue
View file @
97291d02
...
...
@@ -213,7 +213,7 @@
<
el
-
table
-
column
:
label
=
"
$t('应付金额')
"
align
=
"
center
"
prop
=
"
totalAmount
"
/>
<
el
-
table
-
column
:
label
=
"
$t('币种')
"
align
=
"
center
"
prop
=
"
currencyId
"
>
<
template
slot
-
scope
=
"
scope
"
>
{{
getCurrencyLabel
(
scope
.
row
.
currencyId
)
}}
{{
getCurrencyLabel
(
scope
.
row
.
currencyId
)
}}
<!--
<
dict
-
tag
:
type
=
"
DICT_TYPE.BOX_SHIPPING_PRICE_UNIT
"
:
value
=
"
scope.row.currencyId
"
/>
-->
<
/template
>
<
/el-table-column
>
...
...
@@ -474,6 +474,7 @@ import {getWarehouseList} from '@/api/ecw/warehouse'
import
WorkFlow
from
'
@/components/WorkFlow/
'
import
{
getCustomer
,
getCustomerPage
}
from
"
@/api/ecw/customer
"
;
import
Template
from
"
@/views/cms/template/index.vue
"
;
import
{
getExchangeRatePage
}
from
"
@/api/ecw/exchangeRate
"
;
export
default
{
name
:
"
commission-requestFunds
"
,
...
...
@@ -515,10 +516,12 @@ export default {
dialogVisible
:
false
,
interdict
:
false
,
bankAccountList
:[],
rateList
:[],
}
;
}
,
async
created
()
{
await
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
await
getExchangeRatePage
({
page
:
1
,
rows
:
100
}
).
then
(
res
=>
this
.
rateList
=
res
.
data
.
list
)
getWarehouseList
().
then
(
res
=>
this
.
warehouseList
=
res
.
data
)
let
that
=
this
;
if
(
that
.
$route
.
query
.
payableId
&&
that
.
$route
.
query
.
payableId
!==
'
0
'
)
{
...
...
@@ -742,8 +745,8 @@ export default {
}
,
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
.
map
(
v
=>
{
var
rate
=
NP
.
divide
(
this
.
currencyList
.
find
(
vs
=>
vs
.
id
===
v
.
currencyId
).
huilv
,
100
).
toFixed
(
6
)
return
Object
.
assign
(
v
,
{
exchangeRate
:
r
ate
}
)
let
p
=
this
.
rateList
.
find
(
i
=>
i
.
sourceCurrencyId
===
v
.
currencyId
&&
i
.
targetCurrencyId
===
3
)
return
Object
.
assign
(
v
,
{
exchangeRate
:
p
.
currencyR
ate
}
)
}
);
}
,
hiddenDialog
()
{
...
...
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