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
2106598a
Commit
2106598a
authored
3 years ago
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
汇出汇款汇款信息调整
parent
5c57e73c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
38 deletions
+28
-38
Event.js
src/model/Cptopn/Event.js
+18
-2
Opnp1.vue
src/views/Business/Cptopn/Opnp1.vue
+5
-5
Payment103.vue
src/views/Business/Cptopn/Payment103.vue
+0
-26
index.vue
src/views/Business/Cptopn/index.vue
+5
-5
CptOpnp1Common.vue
src/views/Public/CptOpnp1Common.vue
+0
-0
No files found.
src/model/Cptopn/Event.js
View file @
2106598a
import
Api
from
"~/service/Api"
import
Utils
from
"~/utils/index"
export
default
{
async
onCptpGetref
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"cptp_getref"
)
...
...
@@ -218,10 +219,25 @@ export default {
},
async
onOpnpButgetref
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"
ditp.but
getref"
)
let
rtnmsg
=
await
this
.
executeRule
(
"
cptp.
getref"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
model
.
didgrp
.
rec
.
ownref
=
rtnmsg
.
data
.
didgrp_rec_ownref
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
swftypChange
()
{
let
rtnmsg
=
await
this
.
executeRule
(
"cpdgrp.rec.swftyp"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
Utils
.
copyValueFromVO
(
this
.
model
,
rtnmsg
.
data
);
this
.
$message
({
type
:
'success'
,
message
:
'获取成功!'
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Opnp1.vue
View file @
2106598a
...
...
@@ -13,12 +13,12 @@
<c-col
:span=
"11"
>
<el-form-item
label=
"业务编号"
prop=
"cp
tp.recget.sdamod.dadsnd
"
prop=
"cp
dgrp.rec.ownref
"
style=
"width: 100%"
>
<c-fullbox>
<c-input
v-model=
"model.cp
tp.recget.sdamod.dadsnd
"
v-model=
"model.cp
dgrp.rec.ownref
"
maxlength=
"16"
placeholder=
"请输入Reference"
disabled
...
...
@@ -322,6 +322,7 @@
:disabled=
"
model.cpdgrp.cbs.nom1.amt === '0.000'
"
@
change=
"swftypChange"
>
<!-- :disabled="model.cptp.liqtyp != 'C' && model.cptp.liqtyp != 'S' && model.cptp.liqtyp != ''" -->
<el-option
...
...
@@ -465,14 +466,13 @@ export default {
...
Event
,
onCptpGetref
()
{},
onCptpGetmod
()
{},
},
created
:
function
()
{},
computed
:
{
flag
()
{
return
(
this
.
model
.
cpdgrp
.
orc
.
pts
.
extkey
==
""
||
this
.
model
.
cpdgrp
.
rec
.
ownref
!=
""
this
.
model
.
cpdgrp
.
orc
.
pts
.
extkey
==
""
// &&
this.model.cpdgrp.rec.ownref != ""
);
},
},
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/Payment103.vue
View file @
2106598a
...
...
@@ -383,21 +383,6 @@
<c-col
:span=
"24"
>
<el-form-item
label=
"Details of Charges(Tag 71a)"
label-width=
"35%"
>
<c-select
v-model=
"model.cptp.liqtyp"
style=
"width: 100%"
placeholder=
"请选择清算模式"
:disabled=
"
model.cpdgrp.cbs.nom1.amt === '0.000'
"
>
<el-option
v-for=
"item in liqtypOptions"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
></el-option>
</c-select>
</el-form-item>
</c-col>
...
...
@@ -426,20 +411,9 @@ import Event from "~/model/Cptopn/Event";
export
default
{
inject
:
[
"root"
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
CommonProcess
],
data
()
{
return
{};
},
watch
:
{
"model.cptp.qsfysd"
:
function
()
{
if
(
this
.
model
.
cptp
.
qsfysd
==
""
)
{
this
.
model
.
cptp
.
fwtgyh
==
""
;
}
else
{
this
.
model
.
cptp
.
fwtgyh
=
"CHASUS33XXX"
;
console
.
log
(
this
.
model
.
cptp
.
fwtgyh
);
}
},
},
methods
:
{
...
Event
},
created
:
function
()
{},
};
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Cptopn/index.vue
View file @
2106598a
...
...
@@ -11,7 +11,7 @@
:validate-on-rule-change=
"false"
>
<el-tabs
:value=
"tabVal"
ref=
"elment"
type=
"card"
@
tab-click=
"tabClick"
>
<el-tab-pane
label=
"
Overview
"
name=
"opnp1"
>
<el-tab-pane
label=
"
汇款信息
"
name=
"opnp1"
>
<!--PD000020 -->
<c-content>
<m-opnp1
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -23,7 +23,7 @@
<m-AdditionalInfo
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"
Settlement
"
name=
"setpan"
>
<el-tab-pane
label=
"
账务
"
name=
"setpan"
>
<!--PD000000 -->
<m-setpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
...
...
@@ -33,17 +33,17 @@
<m-glepan
:model=
"model"
:codes=
"codes"
ref=
"glepan"
/>
</el-tab-pane>
<el-tab-pane
label=
"
Completion
"
name=
"coninfp"
>
<el-tab-pane
label=
"
附言
"
name=
"coninfp"
>
<!--PD000000 -->
<m-coninfp
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"
Messages
"
name=
"docpan"
>
<el-tab-pane
label=
"
报文及面函
"
name=
"docpan"
>
<!--PD000529 -->
<m-docpan
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<el-tab-pane
label=
"
Attachments
"
name=
"doctre"
>
<el-tab-pane
label=
"
附件
"
name=
"doctre"
>
<!--PD000546 -->
<m-doctre
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
...
...
This diff is collapsed.
Click to expand it.
src/views/Public/CptOpnp1Common.vue
View file @
2106598a
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