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
63818b07
Commit
63818b07
authored
Jun 20, 2023
by
WF1020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infbed修改
parent
1f9b96f2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
29 deletions
+23
-29
index.js
src/business/infbed/event/index.js
+2
-2
Infsea.vue
src/business/infbed/views/Infsea.vue
+11
-25
index.vue
src/business/infbed/views/index.vue
+8
-1
index.vue
src/business/infgid/views/index.vue
+2
-1
No files found.
src/business/infbed/event/index.js
View file @
63818b07
...
...
@@ -19,7 +19,7 @@ export default {
...
this
.
model
.
infcon
,
seadocflg
:
this
.
model
.
seadocflg
,
seagodcod
:
this
.
model
.
seagodcod
,
inr
:
this
.
model
.
br
dgrp
.
rec
.
inr
,
inr
:
this
.
model
.
le
dgrp
.
rec
.
inr
,
pageIndex
:
this
.
pagination
.
pageIndex
,
pageSize
:
this
.
pagination
.
pageSize
,
opndatfrom
:
moment
(
opndatfrom
).
format
(
'YYYY-MM-DD'
),
...
...
@@ -54,7 +54,7 @@ export default {
this
.
model
.
infcon
.
nam
=
''
;
this
.
model
.
infcon
.
seapty
=
''
;
this
.
model
.
infcon
.
searef
=
''
;
this
.
model
.
br
dgrp
.
rec
.
inr
=
''
;
this
.
model
.
le
dgrp
.
rec
.
inr
=
''
;
this
.
model
.
seagodcod
=
''
;
this
.
model
.
seadocflg
=
''
;
},
...
...
src/business/infbed/views/Infsea.vue
View file @
63818b07
...
...
@@ -2,7 +2,7 @@
<div
class=
"eibs-tab"
>
<!-- 持续展示区 -->
<c-list-search
@
form-reset=
"handleReset
('paramsForm')
"
@
form-reset=
"handleReset"
@
form-search=
"handleSearch"
>
<template
v-slot=
"searchSlot"
>
...
...
@@ -264,13 +264,19 @@
</
template
>
</c-list-search>
<
el-row
>
<
div
style=
"height: 90%"
>
<c-col
:span=
"24"
>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
:showButtonFlg=
"true"
>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
></el-table-column>
<!-- 自定义组件里加了最右边的一列”操作“ -->
<el-table-column
fixed=
"right"
prop=
"op"
label=
"操作"
width=
"140px"
>
<
template
slot=
"header"
>
...
...
@@ -353,9 +359,9 @@
</el-table-column>
</el-table>
</c-col>
</el-row
>
</div
>
<m-busbtn
<
!-- <
m-busbtn
ref="childs"
:ownref="ownref"
trnCode="letsel"
...
...
@@ -363,13 +369,12 @@
tabIndex="3"
:model="letselModel"
>11</m-busbtn
>
>
-->
</div>
</template>
<
script
>
// import BetselModel from "~/model/Betsel";
import
BusNavbar
from
"~/views/Public/BusNavbar"
;
import
event
from
"../event"
;
export
default
{
...
...
@@ -515,27 +520,8 @@ export default {
pageSize
:
10
,
total
:
0
,
},
initdialog
:
false
,
handlerDataList
:
[],
btnRouteMap
:
[
{
label
:
'出口信用证预开立'
,
route
:
'/business-new/letnot'
},
{
label
:
'出口信用证开立'
,
route
:
'/business-new/letopn'
},
{
label
:
'非我行通知及收单行登记'
,
route
:
'/business-new/letdrw'
},
{
label
:
'出口信用证补通知'
,
route
:
'/business-new/letrsv'
},
],
currentHandleRow
:
{},
};
},
...
...
src/business/infbed/views/index.vue
View file @
63818b07
...
...
@@ -45,7 +45,14 @@ export default {
}
},
methods
:{
getInidatfro
()
{
let
datetime
=
new
Date
();
datetime
=
datetime
.
setDate
(
datetime
.
getDate
()
-
10
);
this
.
model
.
infcon
.
opndatfrom
=
new
Date
(
datetime
);
}
},
mounted
()
{
this
.
getInidatfro
()
},
}
</
script
>
...
...
src/business/infgid/views/index.vue
View file @
63818b07
...
...
@@ -12,7 +12,7 @@
import
CodeTable
from
"~/config/CodeTable"
;
import
Infgid
from
"../model"
;
import
Infsea
from
"./Infsea"
;
import
event
from
"../event"
export
default
{
name
:
"Infgid"
,
components
:
{
...
...
@@ -23,6 +23,7 @@ export default {
root
:
this
,
};
},
mixins
:
[
event
],
data
()
{
return
{
tabVal
:
""
,
...
...
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