Commit 9f36a687 by WH

infled 前端代码修改

parent 74d3c3b4
......@@ -143,9 +143,18 @@ export default {
});
},
toLetopn() {
// 点击开立,清空从待经办进来的时候带的行参数
localStorage.setItem('row_getopn', null)
this.$router.history.push('/business-new/letopn');
},
toLetnot() {
this.$router.history.push('/business-new/letnot');
},
toLetdrw() {
this.$router.history.push('/business-new/letdrw');
},
toLetrsv() {
this.$router.history.push('/business-new/letrsv');
},
},
};
......@@ -254,6 +254,28 @@
</template>
</c-list-search>
<c-col :span="24" style="margin-top: 10px">
<c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 0px" title="LETNOT"
@click="toLetnot">
出口信用证预开立
</c-button>
<c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETOPN"
@click="toLetopn">
出口信用证开立
</c-button>
<c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETDRW"
@click="toLetdrw">
非我行通知及收单行登记
</c-button>
<c-button class="medium_bcs" size="medium" type="primary" style="margin-left: 10px" title="LETRSV"
@click="toLetrsv">
出口信用证补通知
</c-button>
</c-col>
<div style="height: 90%">
<c-col :span="24">
<el-table
......@@ -261,6 +283,12 @@
: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">
......@@ -342,6 +370,18 @@
</template>
</el-table-column>
</el-table>
<div class="pagination-box">
<el-pagination
style="margin-right: 30px;"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page.sync="pagination.pageIndex"
:page-sizes="[10, 20, 50, 100, 500]"
:page-size="pagination.pageSize"
layout="sizes, prev, pager, next"
:total="pagination.total">
</el-pagination>
</div>
</c-col>
</div>
......@@ -421,77 +461,73 @@ export default {
},
{
label: "期限日",
prop: "maxcur",
prop: "tenmaxday",
},
{
label: "开立日期",
prop: "maxamt",
prop: "opndat",
},
{
label: "生效日期",
prop: "opndat",
prop: "expdat",
},
{
label: "关闭日期",
prop: "aplref",
prop: "clsdat",
},
{
label: "分行名称",
prop: "aplnam",
prop: "bchname",
},
{
label: "申请人编号",
prop: "benefi",
prop: "aplextkey",
},
{
label: "申请人名称",
prop: "bankno",
prop: "aplnam",
},
{
label: "PTA主键",
prop: "clsdat",
},
{
label: "受益人编号",
prop: "stagod",
},
{
label: "受益人编号",
prop: "stagod",
prop: "ptainr",
},
// {
// label: "受益人编号",
// prop: "stagod",
// },
{
label: "受益人名称",
prop: "stagod",
},
{
label: "受益人名称(中文)",
prop: "stagod",
},
{
label: "开证行编号",
prop: "stagod",
prop: "benefi",
},
// {
// label: "受益人名称(中文)",
// prop: "stagod",
// },
// {
// label: "开证行编号",
// prop: "stagod",
// },
{
label: "开证名称",
prop: "stagod",
},
// {
// label: "开证名称",
// prop: "stagod",
// },
{
label: "金额币种",
prop: "stagod",
prop: "seacur",
},
{
label: "信用证金额",
prop: "stagod",
prop: "maxamt",
},
{
label: "余额币种",
prop: "stagod",
prop: "seacur",
},
{
label: "信用证余额",
prop: "stagod",
prop: "opnamt",
},
],
data: [],
......
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