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
99af9e88
Commit
99af9e88
authored
Aug 26, 2022
by
wangna
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infgid、infgcd进/出口保函查询条件添加(#637)
parent
ef88a611
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
62 additions
and
22 deletions
+62
-22
index.js
src/config/CodeTable/index.js
+4
-0
Event.js
src/model/Infgcd/Event.js
+4
-1
Event.js
src/model/Infgid/Event.js
+5
-2
BusRouter.js
src/views/Business/BusRouter.js
+1
-1
Infsea.vue
src/views/Business/Infgcd/Infsea.vue
+24
-8
Infsea.vue
src/views/Business/Infgid/Infsea.vue
+21
-7
SideMenu.vue
src/views/Layout/SideMenu.vue
+3
-3
No files found.
src/config/CodeTable/index.js
View file @
99af9e88
...
...
@@ -7140,5 +7140,9 @@ const CodeTable = {
ELC022
:
[
{
label
:
"拒绝通知"
,
value
:
"ADRE"
},
],
guarantee
:
[
{
label
:
"进口保函"
,
value
:
"LG"
},
{
label
:
"出口保函"
,
value
:
"AG"
},
],
}
export
default
CodeTable
;
src/model/Infgcd/Event.js
View file @
99af9e88
...
...
@@ -86,7 +86,10 @@ export default {
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
let
params
=
{
"isGuarantee"
:
this
.
isGuarantee
,
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
,
params
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
...
...
src/model/Infgid/Event.js
View file @
99af9e88
...
...
@@ -391,8 +391,11 @@ export default {
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'查询结束日期必输!'
});
return
;
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
let
params
=
{
"isGuarantee"
:
this
.
isGuarantee
,
}
let
rtnmsg
=
await
this
.
executeRule
(
"infbut.searow"
,
params
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
this
.
stmData
.
data
=
rtnmsg
.
data
.
infbut_dspstm
.
rows
;
}
...
...
src/views/Business/BusRouter.js
View file @
99af9e88
...
...
@@ -358,7 +358,7 @@ const BusRouter = [
{
path
:
'gitopn'
,
component
:
Gitopn
,
name
:
'Gitopn'
,
meta
:
{
title
:
'进口保函开立'
}
},
{
path
:
'gitame'
,
component
:
Gitame
,
name
:
'Gitame'
,
meta
:
{
title
:
'进口保函修改'
}
},
{
path
:
'gitsel'
,
component
:
Gitsel
,
name
:
'Gitsel'
,
meta
:
{
title
:
'进口保函查询'
}
},
{
path
:
'infgid'
,
component
:
Infgid
,
name
:
'Infgid'
,
meta
:
{
title
:
'
进口
保函入口交易'
}
},
{
path
:
'infgid'
,
component
:
Infgid
,
name
:
'Infgid'
,
meta
:
{
title
:
'保函入口交易'
}
},
{
path
:
'gitset'
,
component
:
Gitset
,
name
:
'Gitset'
,
meta
:
{
title
:
'进口保函赔付'
}
},
{
path
:
'gitcrq'
,
component
:
Gitcrq
,
name
:
'Gitcrq'
,
meta
:
{
title
:
'进口保函索赔登记'
}
},
{
path
:
'infgcd'
,
component
:
Infgcd
,
name
:
'Infgcd'
,
meta
:
{
title
:
'保函赔付查询'
}
},
...
...
src/views/Business/Infgcd/Infsea.vue
View file @
99af9e88
...
...
@@ -59,15 +59,15 @@
<c-col
:span=
"8"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
label=
"进口/出口保函"
style=
"width: 100%"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
<c-select
v-model=
"isGuarantee"
style=
"width: 100%"
placeholder=
"请选择进口/出口保函"
:code=
"codes.guarantee"
></c-select>
</el-form-item>
</c-col>
</c-col>
...
...
@@ -199,7 +199,7 @@
placeholder=
"请选择Currency"
>
<el-option
v-for=
"item in codes.cur"
v-for=
"item in codes.cur
txt1
"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
...
...
@@ -236,6 +236,20 @@
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
style=
"width: 100%"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"8"
>
<el-form-item
label=
"Undertaking Type"
prop=
"seagtyp"
style=
"width: 100%"
...
...
@@ -244,6 +258,7 @@
v-model=
"model.seagtyp"
style=
"width: 100%"
placeholder=
"请选择Undertaking Type"
:code=
"codes.seagtyp"
>
</c-select>
</el-form-item>
...
...
@@ -535,6 +550,7 @@ export default {
ownref
:
""
,
dialogTableVisible
:
false
,
dialogFlag
:
true
,
isGuarantee
:
''
,
trnData
:
{
columns
:
[
'0 1 "Trn ID" 100'
,
...
...
src/views/Business/Infgid/Infsea.vue
View file @
99af9e88
...
...
@@ -63,15 +63,15 @@
<c-col
:span=
"8"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
label=
"进口/出口保函"
style=
"width: 100%"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
<c-select
v-model=
"isGuarantee"
style=
"width: 100%"
placeholder=
"请选择进口/出口保函"
:code=
"codes.guarantee"
></c-select>
</el-form-item>
</c-col>
</c-col>
...
...
@@ -416,6 +416,19 @@
<c-col
:span=
"24"
>
<c-col
:span=
"8"
>
<el-form-item
label=
"Party Reference"
prop=
"infcon.searef"
style=
"width: 100%"
>
<c-input
v-model=
"model.infcon.searef"
maxlength=
"16"
placeholder=
"请输入Party Reference"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"8"
>
<el-form-item
label=
""
style=
"margin-left: 110px"
prop=
"model.cmtflg"
...
...
@@ -753,6 +766,7 @@ export default {
ownref
:
""
,
dialogTableVisible
:
false
,
dialogFlag
:
true
,
isGuarantee
:
''
,
trnData
:
{
columns
:
[
'0 1 "Trn ID" 100'
,
...
...
src/views/Layout/SideMenu.vue
View file @
99af9e88
...
...
@@ -141,9 +141,9 @@ export default {
{
inifrm
:
"12"
,
ininam
:
"智能审单"
,
pntmiu
:
""
},
{
inifrm
:
"examRule"
,
ininam
:
"智能审单规则配置"
,
pntmiu
:
"12"
},
//
进口
保函
{
inifrm
:
"13"
,
ininam
:
"
进口
保函"
,
pntmiu
:
""
},
{
inifrm
:
"infgid"
,
ininam
:
"
进口
保函入口交易"
,
pntmiu
:
"13"
},
//保函
{
inifrm
:
"13"
,
ininam
:
"保函"
,
pntmiu
:
""
},
{
inifrm
:
"infgid"
,
ininam
:
"保函入口交易"
,
pntmiu
:
"13"
},
{
inifrm
:
"infgcd"
,
ininam
:
"保函赔付查询"
,
pntmiu
:
"13"
},
// { inifrm: "gitsel", ininam: "进口保函查询", pntmiu: "13" },
// { inifrm: "gitset", ininam: "进口保函赔付", pntmiu: "13" },
...
...
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