Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
fukai
vue-gjjs
Commits
6bda1321
Commit
6bda1321
authored
Jul 26, 2023
by
WH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复letdrw缺陷
parent
6141521e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
5 deletions
+27
-5
index.js
src/business/letdrw/model/index.js
+1
-1
Aamp.vue
src/business/letdrw/views/Aamp.vue
+26
-4
No files found.
src/business/letdrw/model/index.js
View file @
6bda1321
...
...
@@ -124,7 +124,7 @@ export default class Letdrw {
},
max2
:
{
cur
:
''
,
amt
:
''
amt
:
'
0.000
'
}
},
iss
:
{
...
...
src/business/letdrw/views/Aamp.vue
View file @
6bda1321
...
...
@@ -5,7 +5,7 @@
<c-col
:span=
"13"
>
<el-form-item
label=
"附加金额"
prop=
"ledgrp.cbs.max2.cur"
>
<c-select
v-model=
"m
odel.ledgrp.cbs.max2.
cur"
v-model=
"m
ax2
cur"
style=
"width: 100%"
placeholder=
"请选择附加金额"
disabled
...
...
@@ -26,7 +26,7 @@
<c-col
:span=
"13"
>
<el-form-item
label=
"开立附加金额"
prop=
"ledgrp.cbs.opn2.cur"
>
<c-select
v-model=
"
model.ledgrp.cbs.opn2.
cur"
v-model=
"
opn2
cur"
style=
"width: 100%"
placeholder=
"请选择币种"
disabled
...
...
@@ -37,7 +37,7 @@
<c-col
:span=
"11"
>
<el-form-item
label=
""
label-width=
"5px"
prop=
"ledgrp.cbs.opn2.amt"
>
<c-input
v-model=
"
model.ledgrp.cbs.opn2.
amt"
v-model=
"
opn2
amt"
placeholder=
"请输入"
disabled
></c-input>
...
...
@@ -48,7 +48,7 @@
<el-form-item
label=
"覆盖"
prop=
"ledgrp.blk.addamtcov"
>
<c-input
type=
"textarea"
v-model=
"
model.ledgrp.blk.a
ddamtcov"
v-model=
"
getBlkA
ddamtcov"
maxlength=
"140"
show-word-limit
placeholder=
"请输入"
...
...
@@ -70,6 +70,28 @@ export default {
},
methods
:
{
},
created
:
function
()
{},
computed
:{
max2cur
(){
this
.
model
.
ledgrp
.
cbs
.
max2
.
cur
=
this
.
model
.
ledgrp
.
cbs
.
max
.
cur
return
this
.
model
.
ledgrp
.
cbs
.
max2
.
cur
},
opn2cur
(){
this
.
model
.
ledgrp
.
cbs
.
opn2
.
cur
=
this
.
model
.
ledgrp
.
cbs
.
max
.
cur
return
this
.
model
.
ledgrp
.
cbs
.
opn2
.
cur
},
opn2amt
(){
this
.
model
.
ledgrp
.
cbs
.
opn2
.
amt
=
parseFloat
(
this
.
model
.
ledgrp
.
cbs
.
max2
.
amt
).
toFixed
(
3
)
return
this
.
model
.
ledgrp
.
cbs
.
opn2
.
amt
},
getBlkAddamtcov
(){
this
.
model
.
ledgrp
.
blk
.
addamtcov
=
this
.
model
.
ledgrp
.
cbs
.
opn2
.
cur
+
" "
+
this
.
model
.
ledgrp
.
cbs
.
opn2
.
amt
return
this
.
model
.
ledgrp
.
blk
.
addamtcov
}
}
}
</
script
>
<
style
></
style
>
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