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
5f367cb2
Commit
5f367cb2
authored
3 years ago
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
汇出汇款相关页面调整
parent
e16ad4b2
master
…
bochk-demo-202202
bochk-poc
bochk-poc-1113
development-202206
origin/development-202206
revert-594e4a5c
revert-8c42ad65
revert-d0d76887
settle-test-20230110
train
vue-gjjs-template
No related merge requests found
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
32 additions
and
16 deletions
+32
-16
index.js
src/config/CodeTable/index.js
+7
-0
Event.js
src/model/Cptopn/Event.js
+15
-2
Cnyp.vue
src/views/Business/Cptopn/Cnyp.vue
+7
-10
Coninfp.vue
src/views/Business/Cptopn/Coninfp.vue
+3
-4
Finp.vue
src/views/Business/Cptopn/Finp.vue
+0
-0
Opnp1.vue
src/views/Business/Cptopn/Opnp1.vue
+0
-0
Outp.vue
src/views/Business/Cptopn/Outp.vue
+0
-0
No files found.
src/config/CodeTable/index.js
View file @
5f367cb2
...
...
@@ -5942,5 +5942,11 @@ const CodeTable = {
{
label
:
'ORD Correction'
,
value
:
'CMR'
},
{
label
:
'ReRouting'
,
value
:
'ROU'
},
],
swftypOpnp
:[
{
label
:
'MT103'
,
value
:
'103'
},
{
label
:
'Mt202 COV'
,
value
:
'202'
},
{
label
:
'MT202'
,
value
:
'200'
},
{
label
:
'Other'
,
value
:
'OTH'
},
]
}
export
default
CodeTable
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/model/Cptopn/Event.js
View file @
5f367cb2
...
...
@@ -217,6 +217,18 @@ export default {
}
},
async
onOpnpButgetref
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"ditp.butgetref"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
model
.
didgrp
.
rec
.
ownref
=
rtnmsg
.
data
.
didgrp_rec_ownref
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Cnyp.vue
View file @
5f367cb2
<
template
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"11"
>
<c-col
:span=
"24"
>
<el-form-item
label=
"是否报送跨境人民币2101表
"
>
<el-form-item
label=
"是否报送跨境人民币2101表"
label-width=
"40%
"
>
<c-select
v-model=
"model.cnybop.cnyflg"
style=
"width: 20%"
placeholder=
"请选择"
disabled
>
...
...
@@ -19,10 +19,9 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"是否报送跨境人民币2107表
"
>
<el-form-item
label=
"是否报送跨境人民币2107表"
label-width=
"40%
"
>
<c-select
v-model=
"model.cnybop.traflg"
style=
"width: 20%"
placeholder=
"请选择"
disabled
>
...
...
@@ -37,10 +36,9 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"是否报送跨境人民币2111表
"
>
<el-form-item
label=
"是否报送跨境人民币2111表"
label-width=
"40%
"
>
<c-select
v-model=
"model.cnybop.outflg"
style=
"width: 20%"
placeholder=
"请选择"
>
<el-option
...
...
@@ -54,10 +52,9 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"是否报送跨境人民币2106表
"
>
<el-form-item
label=
"是否报送跨境人民币2106表"
label-width=
"40%
"
>
<c-select
v-model=
"model.cnybop.libflg"
style=
"width: 20%"
placeholder=
"请选择"
disabled
>
...
...
@@ -72,10 +69,9 @@
</c-col>
<c-col
:span=
"24"
>
<el-form-item
label=
"是否报送跨境人民币2122表
"
>
<el-form-item
label=
"是否报送跨境人民币2122表"
label-width=
"40%
"
>
<c-select
v-model=
"model.cnybop.vouflg"
style=
"width: 20%"
placeholder=
"请选择"
disabled
>
...
...
@@ -88,6 +84,7 @@
</c-select>
</el-form-item>
</c-col>
</c-col>
</div>
</
template
>
<
script
>
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Coninfp.vue
View file @
5f367cb2
...
...
@@ -65,23 +65,22 @@
</c-col>
-->
<c-col
:span=
"1
1
"
>
<c-col
:span=
"1
4
"
>
<el-form-item
label=
"Execution Date"
>
<c-date-picker
style=
"width:100%"
type=
"date"
v-model=
"model.mtabut.coninf.conexedat"
style=
"width: 50%"
placeholder=
""
></c-date-picker>
</el-form-item>
</c-col>
<c-col
:span=
"
11"
:offset=
"1
"
>
<c-col
:span=
"
8
"
>
<el-form-item
label=
"Send for Release to"
>
<c-input
v-model=
"model.mtabut.coninf.usr.extkey"
maxlength=
"8"
style=
"width: 90%"
placeholder=
""
readonly
></c-input>
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Finp.vue
View file @
5f367cb2
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Opnp1.vue
View file @
5f367cb2
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Outp.vue
View file @
5f367cb2
This diff is collapsed.
Click to expand it.
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