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
zhouqian
vue-gjjs
Commits
bbe94ffe
Commit
bbe94ffe
authored
Jul 28, 2022
by
wangyanjiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setpan错误修改恢复
parent
a888fcf1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
21 deletions
+25
-21
Dftcrep.vue
src/views/Business/Bdtset/Dftcrep.vue
+24
-2
Setpan.vue
src/views/Public/Setpan.vue
+1
-19
No files found.
src/views/Business/Bdtset/Dftcrep.vue
View file @
bbe94ffe
...
...
@@ -60,6 +60,7 @@
v-model=
"model.dftcre.oricur"
style=
"width: 95%"
placeholder=
"请选择单据金额:"
:code=
"codes.cur"
>
</c-select>
</el-form-item>
...
...
@@ -79,6 +80,7 @@
v-model=
"model.dftcre.dfdgrp.cbs.max.cur"
style=
"width: 95%"
placeholder=
"请选择代付金额:"
:code=
"codes.cur"
>
</c-select>
</el-form-item>
...
...
@@ -97,6 +99,7 @@
v-model=
"model.dftcre.dfdgrp.cbs.opn1.cur"
style=
"width: 95%"
placeholder=
"请选择代付余额:"
:code=
"codes.cur"
>
</c-select>
</el-form-item>
...
...
@@ -121,6 +124,7 @@
v-model=
"model.dftcre.dfdgrp.rec.fintyp"
style=
"width: 95%"
placeholder=
"请选择代付类型:"
:code=
"fintyp"
>
</c-select>
</el-form-item>
...
...
@@ -132,6 +136,7 @@
v-model=
"model.dftcre.dfdgrp.rec.dfuflg"
style=
"width: 95%"
placeholder=
"请选择境内境外代付:"
:code=
"codes.dfuflg"
>
</c-select>
</el-form-item>
...
...
@@ -146,6 +151,7 @@
v-model=
"model.dftcre.dfdgrp.rec.invtyp"
style=
"width: 100%"
placeholder=
"请选择发票类型"
:code=
"codes.invtyp"
>
</c-select>
</el-form-item>
...
...
@@ -157,6 +163,7 @@
v-model=
"model.dftcre.dfdgrp.rec.trntyp"
style=
"width: 95%"
placeholder=
"请选择交易类型:"
:code=
"trntyp"
>
</c-select>
</el-form-item>
...
...
@@ -197,6 +204,7 @@
v-model=
"model.dftcre.dfdgrp.rec.intprd"
style=
"width: 95%"
placeholder=
"请选择计息周期:"
:code=
"codes.intprd"
>
</c-select>
</el-form-item>
...
...
@@ -216,6 +224,7 @@
v-model=
"model.dftcre.dfdgrp.rec.flttyp"
style=
"width: 95%"
placeholder=
"请选择利率浮动方式:"
:code=
"codes.flttyp"
>
</c-select>
</el-form-item>
...
...
@@ -234,6 +243,7 @@
v-model=
"model.dftcre.dfdgrp.rec.guaflg"
style=
"width: 95%"
placeholder=
"请选择货押标识:"
:code=
"codes.guaflg"
>
</c-select>
</el-form-item>
...
...
@@ -377,7 +387,7 @@
<c-input
v-model=
"model.dftcre.dfdgrp.rec.bnkact"
maxlength=
"32"
placeholder=
"请输入同业代付内部
�'�
号"
placeholder=
"请输入同业代付内部
账
号"
></c-input>
</el-form-item>
</c-col>
...
...
@@ -548,7 +558,19 @@ export default {
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
()
{
return
{};
return
{
trntyp
:
[
{
label
:
"买方单据"
,
value
:
"BD"
},
{
label
:
"汇出汇款"
,
value
:
"CP"
},
{
label
:
"进口代收"
,
value
:
"BC"
},
{
label
:
"卖方信用证"
,
value
:
"BF"
},
{
label
:
"进口信用证"
,
value
:
"BR"
},
],
fintyp
:[
{
label
:
"我行融资"
,
value
:
"A"
},
{
label
:
"我行风险参与"
,
value
:
"B"
},
],
};
},
methods
:
{
...
Event
},
created
:
function
()
{},
...
...
src/views/Public/Setpan.vue
View file @
bbe94ffe
...
...
@@ -220,7 +220,7 @@
</el-table-column>
<el-table-column
label=
"Currency"
prop=
"cur"
width=
"100px"
>
</el-table-column>
<el-table-column
label=
"Original Amount"
prop=
"ogiamt"
v-model=
"ogiamt"
width=
"150px"
>
<el-table-column
label=
"Original Amount"
prop=
"ogiamt"
width=
"150px"
>
</el-table-column>
<el-table-column
label=
"Fee Amount"
prop=
"amt"
width=
"150px"
>
</el-table-column>
...
...
@@ -912,24 +912,6 @@ export default {
components
:
{
SetpanDialog
},
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
watch
:
{
ogiamt
:
{
handler
(
num
)
{
console
.
log
(
"================================="
)
num
=
this
.
ogiamt
;
num
=
num
.
toFixed
(
2
);
num
=
parseFloat
(
num
);
num
=
num
.
toLocaleString
();
return
num
;
//返回的是字符串23,245.12保留2位小数
},
immediate
:
true
}
},
data
()
{
return
{
dialogVisible
:
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