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
e0223076
Commit
e0223076
authored
Aug 02, 2022
by
zhujiazhan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码提交
parent
32ddde53
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
20 deletions
+16
-20
IStreamTable.vue
src/components/IStreamTable.vue
+1
-2
BusRouter.js
src/views/Business/BusRouter.js
+1
-1
Infsea.vue
src/views/Business/Infbrd/Infsea.vue
+14
-13
index.vue
src/views/Business/Infbrd/index.vue
+0
-4
No files found.
src/components/IStreamTable.vue
View file @
e0223076
...
...
@@ -200,7 +200,7 @@ export default {
if
(
typeof
line
===
"object"
){
//如果是对象,支持自定义处理
//{width,position,index,label,pattern,render}
let
{
width
,
position
,
index
,
label
,
pattern
,
render
,
code
,
...
rest
}
=
line
let
{
width
,
position
,
index
,
label
,
pattern
,
render
,...
rest
}
=
line
position
+=
''
if
(
!
obj
[
position
])
{
obj
[
position
]
=
[];
...
...
@@ -212,7 +212,6 @@ export default {
width
:
width
===
'auto'
?
width
:
width
+
'px'
,
pattern
,
render
,
code
,
...
rest
})
continue
...
...
src/views/Business/BusRouter.js
View file @
e0223076
...
...
@@ -271,7 +271,7 @@ const BusRouter = [
{
path
:
'sptrou'
,
component
:
Sptrou
,
name
:
'Sptrou'
,
meta
:
{
title
:
'Sptrou'
}
},
{
path
:
'bddsel'
,
component
:
Bddsel
,
name
:
'Bddsel'
,
meta
:
{
title
:
'Bddsel'
}
},
{
path
:
'infbdd'
,
component
:
Infbdd
,
name
:
'Infbdd'
,
meta
:
{
title
:
'信用证单据查询'
}
},
{
path
:
'infbrd'
,
component
:
Infbrd
,
name
:
'Infbrd'
,
meta
:
{
title
:
'进口信用证单据
入口
'
}
},
{
path
:
'infbrd'
,
component
:
Infbrd
,
name
:
'Infbrd'
,
meta
:
{
title
:
'进口信用证单据
查询
'
}
},
{
path
:
'mgrtsk'
,
component
:
Mgrtsk
,
name
:
'Mgrtsk'
,
meta
:
{
title
:
'Mgrtsk'
}
},
{
path
:
'switsk'
,
component
:
Switsk
,
name
:
'Switsk'
,
meta
:
{
title
:
'Switsk'
}
},
{
path
:
'infusr'
,
component
:
Infusr
,
name
:
'Infusr'
,
meta
:
{
title
:
'用户信息'
}
},
...
...
src/views/Business/Infbrd/Infsea.vue
View file @
e0223076
...
...
@@ -98,13 +98,8 @@
v-model=
"model.infcon.searol"
style=
"width: 100%"
placeholder=
"请选择Role"
:code=
"searol"
>
<el-option
v-for=
"(item, idx) in codes.codeSet['infcon.searol']"
:key=
"idx"
:label=
"item.split('\t')[1]"
:value=
"item.split('\t')[0]"
></el-option>
</c-select>
</el-form-item>
</c-col>
...
...
@@ -140,13 +135,8 @@
v-model=
"model.infcon.seacur"
style=
"width: 100%"
placeholder=
"请选择Currency"
:code=
"codes.currencycode"
>
<el-option
v-for=
"item in codes.codeSet['infcon.seacur']"
:key=
"item"
:label=
"item"
:value=
"item"
></el-option>
</c-select>
</el-form-item>
</c-col>
...
...
@@ -308,6 +298,17 @@ export default {
components
:
{
"m-busbtn"
:
BusNavbar
},
data
()
{
return
{
searol
:[
{
label
:
"Acc. with Bank (ACB)"
,
value
:
"ACB"
},
{
label
:
"Applicant"
,
value
:
"APL"
},
{
label
:
"Beneficiary's Bank"
,
value
:
"BEB"
},
{
label
:
"Beneficiary"
,
value
:
"BEN"
},
{
label
:
"Issuing Bank"
,
value
:
"ISS"
},
{
label
:
"Old Account Party"
,
value
:
"OAP"
},
{
label
:
"Presenter (PRP)"
,
value
:
"PRB"
},
{
label
:
"Reimbursement Bank"
,
value
:
"RMB"
},
{
label
:
"Carrier (ROG)"
,
value
:
"ROG"
},
],
litselModel
:
new
LitselModel
().
data
,
initdialog
:
false
,
ownref
:
""
,
...
...
@@ -324,7 +325,7 @@ export default {
width
:
100
,
pattern
:
"code"
,
label
:
"状态"
,
code
:
this
.
codes
.
relstaEN
,
code
:
"relstaEN"
,
},
'5 5 "币种" 80'
,
'6 6 "金额" 110'
,
...
...
src/views/Business/Infbrd/index.vue
View file @
e0223076
...
...
@@ -152,10 +152,6 @@ export default {
pattern
:
Pattern
,
rules
:
null
,
codes
:
{
codeSet
:
{
"infcon.seacur"
:
[],
"infcon.searol"
:
[],
},
...
CodeTable
},
}
...
...
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