Commit 3f1f3973 by 李少勇

修改Cpsmsg按钮路由跳转问题

parent 682e2bb1
......@@ -64,7 +64,7 @@
<el-col :span="24" style="margin-top: 10px">
<c-col :span="24">
<el-table id='infgidBSTableRef' v-loading="load" :data="model.bsngrp.rcvlst" style="width:100%" size="small" :border="true"
height="calc(100vh - 250px)" :highlight-current-row="true">
height="calc(100vh - 280px)" :highlight-current-row="true">
<el-table-column prop="chk" label="选中" width="60">
</el-table-column>
<el-table-column prop="valdat" label="起息日" width="85">
......@@ -134,6 +134,13 @@
</template>
</el-table-column>
</el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total"
:page-size="pagination.pageSize"
:current-page.sync="pagination.pageNum"
@size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</c-col>
</el-col>
</div>
......@@ -149,6 +156,11 @@ export default {
return {
subtypCodes: [],
load: false,
pagination: {
pageNum: 1,
pageSize: 10,
total: 0,
},
};
},
watch: {
......
......@@ -39,6 +39,15 @@
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary">
{{ $t('public.导出Excel') }}
</c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary" @click="toCsnsel">
证书绑定
</c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary" @click="toPatsel">
行号变更
</c-button>
<c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary" @click="toBsnsel">
业务状态
</c-button>
<!-- <c-button class="medium_bcs" size="medium" style="margin-left: 20" type="primary" @click="handleToLogin">
登录
</c-button>
......@@ -164,6 +173,21 @@ export default {
}
},
methods: {
toCsnsel() {
this.routerPush({
path: '/business/csnsel'
})
},
toPatsel() {
this.routerPush({
path: '/business/patsel'
})
},
toBsnsel() {
this.routerPush({
path: '/business/bsnsel'
})
},
handleToLogin() {
this.$refs.loginDialog.visible = true
},
......
......@@ -57,7 +57,7 @@
<el-col :span="24" style="margin-top: 10px">
<c-col :span="24">
<el-table id='infgidBSTableRef' v-loading="load" :data="tableData" style="width:100%" size="small"
:border="true" height="calc(100vh - 250px)" :highlight-current-row="true">
:border="true" height="calc(100vh - 330px)" :highlight-current-row="true">
<el-table-column prop="gendat" label="创建时间" width="150">
</el-table-column>
<el-table-column prop="bnkbic" label="发起节点" width="150">
......@@ -84,6 +84,13 @@
<el-table-column prop=" lstdat" label="数字证书到期日" width="150">
</el-table-column>
</el-table>
<el-pagination layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total"
:page-size="pagination.pageSize"
:current-page.sync="pagination.pageNum"
@size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</c-col>
</el-col>
</div>
......@@ -98,7 +105,12 @@ export default {
data() {
return {
load: false,
tableData: []
tableData: [],
pagination: {
pageNum: 1,
pageSize: 10,
total: 0,
},
};
},
watch: {
......
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