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
77dca767
Commit
77dca767
authored
Feb 28, 2025
by
wanghuazhou
Committed by
332784038@qq.com
Feb 28, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 汇率页面格式调整
parent
ea359513
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
45 deletions
+31
-45
index.vue
src/views/ecw/currencyRate/index.vue
+13
-19
logs.vue
src/views/ecw/currencyRate/logs.vue
+18
-26
No files found.
src/views/ecw/currencyRate/index.vue
View file @
77dca767
...
@@ -12,17 +12,17 @@
...
@@ -12,17 +12,17 @@
<el-table
v-loading=
"query.loading"
:data=
"query.result.list"
>
<el-table
v-loading=
"query.loading"
:data=
"query.result.list"
>
<el-table-column
align=
"center"
:label=
"$t('原币种')"
>
<el-table-column
align=
"center"
:label=
"$t('原币种')"
>
<template
v-slot=
"
{ row }">
<template
v-slot=
"
{ row }">
{{
$l
(
currency
(
row
.
sourceId
)
,
'
title
'
)
}}
{{
$l
(
row
.
source
,
'
title
'
)
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
:label=
"$t('支付币种')"
>
<el-table-column
align=
"center"
:label=
"$t('支付币种')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
{{
$l
(
currency
(
row
.
targetId
)
,
'
title
'
)
}}
{{
$l
(
row
.
target
,
'
title
'
)
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('汇率')"
>
<el-table-column
align=
"center"
:label=
"$t('汇率')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
{{
currency
(
row
.
sourceId
).
fuhao
}}
{{
row
.
sourceAmount
}}
:
{{
row
.
targetAmount
}}
{{
currency
(
row
.
targetId
)
.
fuhao
}}
{{
row
.
source
.
fuhao
}}
{{
row
.
sourceAmount
}}
:
{{
row
.
targetAmount
}}
{{
row
.
target
.
fuhao
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"center"
:label=
"$t('有效期')"
>
<el-table-column
align=
"center"
:label=
"$t('有效期')"
>
...
@@ -30,19 +30,19 @@
...
@@ -30,19 +30,19 @@
{{
parseTime
(
row
.
expiration
)
}}
{{
parseTime
(
row
.
expiration
)
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
align=
"
left
"
:label=
"$t('国家')"
prop=
"countries"
:formatter=
"countries"
/>
<el-table-column
align=
"
center
"
:label=
"$t('国家')"
prop=
"countries"
:formatter=
"countries"
/>
<el-table-column
:label=
"$t('备注')"
prop=
"remarks"
/>
<el-table-column
align=
"center"
:label=
"$t('备注')"
prop=
"remarks"
/>
<el-table-column
:label=
"$t('状态')"
>
<el-table-column
align=
"center"
:label=
"$t('状态')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
<dict-tag
:type=
"DICT_TYPE.CURRENCY_RATE_STATUS"
:value=
"expired(row.expiration)"
/>
<dict-tag
:type=
"DICT_TYPE.CURRENCY_RATE_STATUS"
:value=
"expired(row.expiration)"
/>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('最后修改时间')"
>
<el-table-column
align=
"center"
:label=
"$t('最后修改时间')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
{{
parseTime
(
row
.
updateTime
)
}}
{{
parseTime
(
row
.
updateTime
)
}}
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('最后修改人')"
>
<el-table-column
align=
"center"
:label=
"$t('最后修改人')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
{{
user
(
row
.
updater
).
nickname
}}
{{
user
(
row
.
updater
).
nickname
}}
</
template
>
</
template
>
...
@@ -102,7 +102,9 @@ export default Vue.extend({
...
@@ -102,7 +102,9 @@ export default Vue.extend({
async
pagination
()
{
async
pagination
()
{
this
.
query
.
loading
=
true
this
.
query
.
loading
=
true
try
{
try
{
this
.
query
.
result
=
await
getCurrencyRatePage
(
this
.
query
.
params
).
then
(
it
=>
it
.
data
)
const
result
=
await
getCurrencyRatePage
(
this
.
query
.
params
).
then
(
it
=>
it
.
data
)
result
.
list
=
result
.
list
.
map
(
e
=>
(
e
.
source
=
this
.
currency
(
e
.
sourceId
),
e
.
target
=
this
.
currency
(
e
.
targetId
),
e
))
this
.
query
.
result
=
result
}
finally
{
}
finally
{
this
.
query
.
loading
=
false
this
.
query
.
loading
=
false
}
}
...
@@ -110,14 +112,6 @@ export default Vue.extend({
...
@@ -110,14 +112,6 @@ export default Vue.extend({
expired
(
day
)
{
expired
(
day
)
{
return
dayjs
().
isAfter
(
day
)
?
1
:
0
return
dayjs
().
isAfter
(
day
)
?
1
:
0
},
},
amount
(
row
)
{
const
source
=
this
.
currency
(
row
.
sourceId
)
const
target
=
this
.
currency
(
row
.
targetId
)
return
`
${
source
.
fuhao
}
${
row
.
sourceAmount
}
:
${
target
.
fuhao
}
${
row
.
targetAmount
}
`
},
rate
(
row
)
{
return
this
.
decimal
(
row
.
targetAmount
).
dividedBy
(
row
.
sourceAmount
).
toFixed
(
8
)
},
add
()
{
add
()
{
this
.
dialogs
.
form
=
{
visible
:
true
,
id
:
null
,
data
:
{},
}
this
.
dialogs
.
form
=
{
visible
:
true
,
id
:
null
,
data
:
{},
}
},
},
...
@@ -128,7 +122,7 @@ export default Vue.extend({
...
@@ -128,7 +122,7 @@ export default Vue.extend({
this
.
$confirm
(
this
.
$t
(
'
确定要删除吗?
'
),
this
.
$t
(
'
确认
'
),
{
type
:
'
warning
'
}).
then
(()
=>
deleteCurrencyRate
(
row
.
id
)).
catch
(()
=>
{}).
finally
(
this
.
pagination
)
this
.
$confirm
(
this
.
$t
(
'
确定要删除吗?
'
),
this
.
$t
(
'
确认
'
),
{
type
:
'
warning
'
}).
then
(()
=>
deleteCurrencyRate
(
row
.
id
)).
catch
(()
=>
{}).
finally
(
this
.
pagination
)
},
},
logs
(
row
)
{
logs
(
row
)
{
this
.
dialogs
.
logs
=
{
visible
:
true
,
id
:
row
.
id
,
source
:
this
.
currency
(
row
.
sourceId
),
target
:
this
.
currency
(
row
.
targetId
)
,
}
this
.
dialogs
.
logs
=
{
visible
:
true
,
id
:
row
.
id
,
source
:
row
.
source
,
target
:
row
.
target
,
}
},
},
async
reverse
(
row
)
{
async
reverse
(
row
)
{
var
swap
=
{
sourceId
:
row
.
targetId
,
targetId
:
row
.
sourceId
,
}
var
swap
=
{
sourceId
:
row
.
targetId
,
targetId
:
row
.
sourceId
,
}
...
...
src/views/ecw/currencyRate/logs.vue
View file @
77dca767
...
@@ -8,15 +8,15 @@
...
@@ -8,15 +8,15 @@
<el-table-column
:label=
"$t('修改人')"
>
<el-table-column
:label=
"$t('修改人')"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
<div>
<div>
<div><
b>
{{
(
users
[
row
.
updater
]
||
{
nickname
:
row
.
updater
}
).
nickname
}}
<
/b
>: <i class="remarks">{{ row.remarks || $t
(
'无'
)
}}
</i
><
/div
>
<div><
i>
{{
user
(
row
.
updater
).
nickname
}}
</i
>
:
<i
class=
"remarks"
>
{{
row
.
remarks
||
$t
(
'
无
'
)
}}
</i></div>
<div><i>
{{
parseTime
(
row
.
updateTime
)
}}
</i></div>
<div><i>
{{
parseTime
(
row
.
updateTime
)
}}
</i></div>
</div>
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<
el
-
table
-
column
:
label
=
"
$t('金额修改')
"
align
=
"
right
"
>
<el-table-column
:label=
"$t('金额修改')"
align=
"
center
"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
<
div
v
-
if
=
"
row.sourceAmount1 ==
row.sourceAmount2 && row.targetAmount1
== row.targetAmount2
"
>
<div
v-if=
"row.sourceAmount1 ==
= row.sourceAmount2 && row.targetAmount1 =
== row.targetAmount2"
>
<
div
>
{{
amount
(
row
.
sourceAmount
1
,
row
.
targetAmount1
)
}}
<
/div
>
<div>
{{
amount
(
row
.
sourceAmount
2
,
row
.
targetAmount2
)
}}
</div>
</div>
</div>
<div
v-else
>
<div
v-else
>
<div
class=
"after"
>
{{
amount
(
row
.
sourceAmount2
,
row
.
targetAmount2
)
}}
</div>
<div
class=
"after"
>
{{
amount
(
row
.
sourceAmount2
,
row
.
targetAmount2
)
}}
</div>
...
@@ -24,37 +24,26 @@
...
@@ -24,37 +24,26 @@
</div>
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<
el
-
table
-
column
:
label
=
"
$t('
汇率变化')
"
align
=
"
left
"
>
<el-table-column
:label=
"$t('
国家变化')"
align=
"center
"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
<
div
v
-
if
=
"
row.
sourceAmount1 == row.sourceAmount2 && row.targetAmount1 == row.targetAmount2
"
>
<div
v-if=
"row.
countries1String === row.countries2String
"
>
<
div
>
1
:
{{
rate
(
row
.
sourceAmount1
,
row
.
targetAmount1
)
}}
<
/div
>
<div>
{{
countriesString
(
row
.
countries2
)
}}
</div>
</div>
</div>
<div
v-else
>
<div
v-else
>
<
div
class
=
"
after
"
>
1
:
{{
rate
(
row
.
sourceAmount2
,
row
.
targetAmount2
)
}}
<
/div
>
<div
class=
"after"
>
{{
row
.
countries2String
}}
</div>
<
div
class
=
"
before
"
>
1
:
{{
rate
(
row
.
sourceAmount1
,
row
.
targetAmount1
)
}}
<
/div
>
<div
class=
"before"
>
{{
row
.
countries1String
}}
</div>
</div>
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<
el
-
table
-
column
:
label
=
"
$t('
国家变化')
"
>
<el-table-column
:label=
"$t('
日期变化')"
align=
"center
"
>
<
template
v-slot=
"{ row }"
>
<
template
v-slot=
"{ row }"
>
<
div
v
-
if
=
"
countriesString(row.countries1) != countriesString(row.countries2)
"
>
<div
v-if=
"row.expiration1 === row.expiration2"
>
<
div
class
=
"
after
"
>
{{
countriesString
(
row
.
countries2
)
}}
<
/div
>
<div>
{{
parseTime
(
row
.
expiration2
)
}}
</div>
<
div
class
=
"
before
"
>
{{
countriesString
(
row
.
countries1
)
}}
<
/div
>
</div>
</div>
<div
v-else
>
<div
v-else
>
<
div
>
{{
countriesString
(
row
.
countries1
)
}}
<
/div
>
<
/div
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('日期变化')
"
>
<
template
v
-
slot
=
"
{ row
}
"
>
<
div
v
-
if
=
"
row.expiration1 != row.expiration2
"
>
<div
class=
"after"
>
{{
parseTime
(
row
.
expiration2
)
}}
</div>
<div
class=
"after"
>
{{
parseTime
(
row
.
expiration2
)
}}
</div>
<div
class=
"before"
>
{{
parseTime
(
row
.
expiration1
)
}}
</div>
<div
class=
"before"
>
{{
parseTime
(
row
.
expiration1
)
}}
</div>
</div>
</div>
<
div
v
-
else
>
<
div
>
{{
parseTime
(
row
.
expiration1
)
}}
<
/div
>
<
/div
>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</el-table>
...
@@ -92,6 +81,9 @@ export default Vue.extend({
...
@@ -92,6 +81,9 @@ export default Vue.extend({
close
()
{
close
()
{
this
.
$emit
(
'
update:visible
'
,
false
)
this
.
$emit
(
'
update:visible
'
,
false
)
},
},
user
(
id
)
{
return
this
.
users
[
id
]
||
{
id
,
nickname
:
id
,
}
},
countriesString
(
list
)
{
countriesString
(
list
)
{
return
(
list
||
[]).
map
(
e
=>
this
.
countries
[
e
]).
filter
(
e
=>
e
).
map
(
c
=>
this
.
$l
(
c
,
'
name
'
)).
join
(
'
,
'
)
return
(
list
||
[]).
map
(
e
=>
this
.
countries
[
e
]).
filter
(
e
=>
e
).
map
(
c
=>
this
.
$l
(
c
,
'
name
'
)).
join
(
'
,
'
)
},
},
...
@@ -107,9 +99,9 @@ export default Vue.extend({
...
@@ -107,9 +99,9 @@ export default Vue.extend({
async
pagination
()
{
async
pagination
()
{
this
.
loading
=
true
this
.
loading
=
true
try
{
try
{
const
data
=
await
getCurrencyRateLogs
({
id
:
this
.
id
,
page
:
this
.
page
,
rows
:
this
.
limit
,
}
).
then
(
it
=>
it
.
data
)
const
result
=
await
getCurrencyRateLogs
({
id
:
this
.
id
,
page
:
this
.
page
,
rows
:
this
.
limit
,
}).
then
(
it
=>
it
.
data
)
this
.
list
=
data
.
list
this
.
list
=
result
.
list
.
map
(
e
=>
(
e
.
countries1String
=
this
.
countriesString
(
e
.
countries1
),
e
.
countries2String
=
this
.
countriesString
(
e
.
countries2
),
e
))
this
.
total
=
data
.
total
this
.
total
=
result
.
total
}
finally
{
}
finally
{
this
.
loading
=
false
this
.
loading
=
false
}
}
...
...
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