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
a931e984
Commit
a931e984
authored
Jul 13, 2023
by
邓春圆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
备注回显问题修改
parent
afcca4a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
index.vue
src/views/ecw/exchangeRate/index.vue
+6
-4
No files found.
src/views/ecw/exchangeRate/index.vue
View file @
a931e984
...
...
@@ -37,7 +37,7 @@
<el-table
v-loading=
"loading"
:data=
"list"
>
<el-table-column
:label=
"$t('序号')"
align=
"center"
>
<template
v-slot=
"
{row, $index}">
{{
(
queryParams
.
page
No
-
1
)
*
queryParams
.
pageSize
+
(
$index
+
1
)
}}
{{
(
queryParams
.
page
-
1
)
*
queryParams
.
rows
+
(
$index
+
1
)
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('币种1')"
align=
"center"
prop=
"sourceCurrencyId"
>
...
...
@@ -307,7 +307,8 @@ export default {
this.reset();
const id = row.id;
getExchangeRate(id).then(response => {
this.form = response.data;
this.form = {...this.form,...response.data};
console.log( this.form,' this.form')
this.open = true;
this.title = "修改";
});
...
...
@@ -323,11 +324,12 @@ export default {
let p = {
currencyRate: Number(this.form.currencyRate),
id: this.form.id,
note: this.form.no,
note: this.form.no
te
,
sourceCurrencyCode: this.form.sourceCurrencyCode,
sourceCurrencyId: this.form.sourceCurrencyId ,
targetCurrencyCode: this.form.targetCurrencyCode,
targetCurrencyId: this.form.targetCurrencyId
targetCurrencyId: this.form.targetCurrencyId,
}
updateExchangeRate(p).then(response => {
this.$modal.msgSuccess(this.$t('修改成功'));
...
...
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