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
150f9ce1
Commit
150f9ce1
authored
Aug 29, 2022
by
panziyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitset修改
parent
44698b53
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
12 deletions
+52
-12
index.js
src/config/CodeTable/index.js
+8
-0
Gitsetp.vue
src/views/Business/Gitset/Gitsetp.vue
+2
-8
Outp.vue
src/views/Business/Gitset/Outp.vue
+13
-0
index.vue
src/views/Business/Gitset/index.vue
+29
-4
No files found.
src/config/CodeTable/index.js
View file @
150f9ce1
...
...
@@ -1910,6 +1910,13 @@ const CodeTable = {
{
label
:
"Generate Files ( PS/PDF )"
,
value
:
"S"
},
{
label
:
"Windows Server Printing"
,
value
:
"X"
},
],
cmtflg
:
[
{
label
:
"代理行模式"
,
value
:
"C"
},
{
label
:
"Other"
,
value
:
"O"
},
{
label
:
"CIPS系统"
,
value
:
"P"
},
],
cmpflg
:
[
{
label
:
"不计复息"
,
value
:
"0"
},
{
label
:
"计复息"
,
value
:
"1"
},
...
...
@@ -4424,6 +4431,7 @@ const CodeTable = {
{
label
:
"票汇"
,
value
:
"D"
},
{
label
:
"电汇"
,
value
:
"T"
},
{
label
:
"信汇"
,
value
:
"M"
},
{
label
:
"保函"
,
value
:
"G"
},
],
methods1
:
[
{
label
:
"票汇"
,
value
:
"D"
},
...
...
src/views/Business/Gitset/Gitsetp.vue
View file @
150f9ce1
...
...
@@ -450,7 +450,7 @@
:disabled=
"model.gcdgrp.rec.frepaylg=='X'"
>
<el-option
v-for=
"item in cmtflg"
v-for=
"item in c
odes.c
mtflg"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
...
...
@@ -733,13 +733,7 @@ export default {
props
:
[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
()
{
return
{
cmtflg
:
[
{
label
:
"代理行模式"
,
value
:
"C"
},
{
label
:
"Other"
,
value
:
"O"
},
{
label
:
"CIPS系统"
,
value
:
"P"
},
],
};
return
{};
},
watch
:{
...
...
src/views/Business/Gitset/Outp.vue
View file @
150f9ce1
...
...
@@ -49,6 +49,9 @@
v-model=
"model.cnybop.cnyout.spayercountrycode"
maxlength=
"3"
placeholder=
""
@
keyup
.
enter
.
native=
"
showGridPromptDialog('cnybop.cnyout.spayercountrycode')
"
></c-input>
</c-col>
<c-col
:span=
"4"
style=
"text-align: right"
>
...
...
@@ -56,6 +59,16 @@
size=
"small"
type=
"primary"
icon=
"el-icon-search"
@
click=
"
showGridPromptDialog(
'cnybop.outcty',
null,
null,
{ TXT: 'cnybop.cnyout.spayercountrycode' },
{ TXT: false },
'doxpDialog'
)
"
>
</c-button>
</c-col>
</el-form-item>
...
...
src/views/Business/Gitset/index.vue
View file @
150f9ce1
...
...
@@ -84,7 +84,7 @@
</el-tab-pane>
<el-tab-pane
label=
"
境
外付款/承兑通知书-基础信息"
label=
"
对
外付款/承兑通知书-基础信息"
name=
"basp"
v-if=
"model.bopmod.basflg && model.bopmod.szflg == '1'"
>
...
...
@@ -137,7 +137,7 @@
</el-tab-pane>
<!--PD000130 -->
<el-tab-pane
label=
"Payment 756 BEN USD 330.00"
name=
"det756"
>
<el-tab-pane
:label=
this.det756Name
name=
"det756"
>
<c-content>
<m-det756
:model=
"model"
:codes=
"codes"
/>
</c-content>
...
...
@@ -145,10 +145,10 @@
<!--PD000131 -->
<el-tab-pane
label=
"Payment 202 BEN USD 330.00"
:label=
this.det202cvName
name=
"det202cv"
v-if=
"
model.trnmod.cmtflg == '
1
' ||
model.trnmod.cmtflg == '
C
' ||
model.gcdgrp.cbs.max.cur != 'CNY'
"
>
...
...
@@ -243,6 +243,8 @@ export default {
mixins
:
[
commonProcess
,
commonFuncs
],
// 里面包含了Default、Check等的公共处理
data
()
{
return
{
det202cvName
:
"Payment 202 PRB"
,
det756Name
:
"Payment 756 PRB"
,
tabVal
:
"gitsetp1"
,
trnName
:
"gitset"
,
model
:
new
Gitset
().
data
,
...
...
@@ -253,6 +255,28 @@ export default {
codes
:
{
...
CodeTable
},
};
},
watch
:{
"model.setmod.doccur"
:{
immediate
:
true
,
handler
(){
let
cur
=
this
.
model
.
setmod
.
doccur
;
let
amt
=
this
.
model
.
setmod
.
docamt
;
let
doc
=
this
.
model
.
gcdgrp
.
rec
.
docprbrol
this
.
det202cvName
=
"Payment 202 "
+
doc
+
" "
+
cur
+
" "
+
amt
;
this
.
det756Name
=
"Payment 756 "
+
doc
+
" "
+
cur
+
" "
+
amt
;
}
},
"model.mtabut.clsflg"
:{
immediate
:
true
,
handler
(){
let
cur
=
this
.
model
.
setmod
.
doccur
;
let
amt
=
this
.
model
.
setmod
.
docamt
;
let
doc
=
this
.
model
.
gcdgrp
.
rec
.
docprbrol
this
.
det202cvName
=
"Payment 202 "
+
doc
+
" "
+
cur
+
" "
+
amt
;
this
.
det756Name
=
"Payment 756 "
+
doc
+
" "
+
cur
+
" "
+
amt
;
}
},
},
methods
:
{
mimeTabClick
(
tab
)
{
this
.
tabClick
(
tab
);
...
...
@@ -282,6 +306,7 @@ export default {
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
updateModel
(
rtnmsg
.
data
);
this
.
model
.
mtabut
.
clsflg
=
"X"
;
}
else
{
this
.
$notify
.
error
({
title
:
"错误"
,
message
:
"服务请求失败!"
});
}
...
...
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