Commit 63818b07 by WF1020

infbed修改

parent 1f9b96f2
...@@ -19,7 +19,7 @@ export default { ...@@ -19,7 +19,7 @@ export default {
...this.model.infcon, ...this.model.infcon,
seadocflg: this.model.seadocflg, seadocflg: this.model.seadocflg,
seagodcod: this.model.seagodcod, seagodcod: this.model.seagodcod,
inr:this.model.brdgrp.rec.inr, inr:this.model.ledgrp.rec.inr,
pageIndex: this.pagination.pageIndex, pageIndex: this.pagination.pageIndex,
pageSize: this.pagination.pageSize, pageSize: this.pagination.pageSize,
opndatfrom:moment(opndatfrom).format('YYYY-MM-DD'), opndatfrom:moment(opndatfrom).format('YYYY-MM-DD'),
...@@ -54,7 +54,7 @@ export default { ...@@ -54,7 +54,7 @@ export default {
this.model.infcon.nam = ''; this.model.infcon.nam = '';
this.model.infcon.seapty = ''; this.model.infcon.seapty = '';
this.model.infcon.searef = ''; this.model.infcon.searef = '';
this.model.brdgrp.rec.inr = ''; this.model.ledgrp.rec.inr = '';
this.model.seagodcod = ''; this.model.seagodcod = '';
this.model.seadocflg = ''; this.model.seadocflg = '';
}, },
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="eibs-tab"> <div class="eibs-tab">
<!-- 持续展示区 --> <!-- 持续展示区 -->
<c-list-search <c-list-search
@form-reset="handleReset('paramsForm')" @form-reset="handleReset"
@form-search="handleSearch" @form-search="handleSearch"
> >
<template v-slot="searchSlot"> <template v-slot="searchSlot">
...@@ -264,13 +264,19 @@ ...@@ -264,13 +264,19 @@
</template> </template>
</c-list-search> </c-list-search>
<el-row> <div style="height: 90%">
<c-col :span="24"> <c-col :span="24">
<el-table <el-table
:data="stmData.data" :data="stmData.data"
:columns="stmData.columns" :columns="stmData.columns"
:showButtonFlg="true" :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"> <el-table-column fixed="right" prop="op" label="操作" width="140px">
<template slot="header"> <template slot="header">
...@@ -353,9 +359,9 @@ ...@@ -353,9 +359,9 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
</c-col> </c-col>
</el-row> </div>
<m-busbtn <!-- <m-busbtn
ref="childs" ref="childs"
:ownref="ownref" :ownref="ownref"
trnCode="letsel" trnCode="letsel"
...@@ -363,13 +369,12 @@ ...@@ -363,13 +369,12 @@
tabIndex="3" tabIndex="3"
:model="letselModel" :model="letselModel"
>11</m-busbtn >11</m-busbtn
> > -->
</div> </div>
</template> </template>
<script> <script>
// import BetselModel from "~/model/Betsel"; // import BetselModel from "~/model/Betsel";
import BusNavbar from "~/views/Public/BusNavbar"; import BusNavbar from "~/views/Public/BusNavbar";
import event from "../event"; import event from "../event";
export default { export default {
...@@ -515,27 +520,8 @@ export default { ...@@ -515,27 +520,8 @@ export default {
pageSize: 10, pageSize: 10,
total: 0, total: 0,
}, },
initdialog: false, initdialog: false,
handlerDataList: [], handlerDataList: [],
btnRouteMap: [
{
label: '出口信用证预开立',
route: '/business-new/letnot'
},
{
label: '出口信用证开立',
route: '/business-new/letopn'
},
{
label: '非我行通知及收单行登记',
route: '/business-new/letdrw'
},
{
label:'出口信用证补通知',
route:'/business-new/letrsv'
},
],
currentHandleRow: {}, currentHandleRow: {},
}; };
}, },
......
...@@ -45,8 +45,15 @@ export default { ...@@ -45,8 +45,15 @@ export default {
} }
}, },
methods:{ methods:{
getInidatfro() {
}, let datetime = new Date();
datetime = datetime.setDate(datetime.getDate() - 10);
this.model.infcon.opndatfrom = new Date(datetime);
}
},
mounted () {
this.getInidatfro()
},
} }
</script> </script>
<style scoped> <style scoped>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
import CodeTable from "~/config/CodeTable"; import CodeTable from "~/config/CodeTable";
import Infgid from "../model"; import Infgid from "../model";
import Infsea from "./Infsea"; import Infsea from "./Infsea";
import event from "../event"
export default { export default {
name: "Infgid", name: "Infgid",
components: { components: {
...@@ -23,6 +23,7 @@ export default { ...@@ -23,6 +23,7 @@ export default {
root: this, root: this,
}; };
}, },
mixins: [event],
data() { data() {
return { return {
tabVal: "", tabVal: "",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment