Browse Source

完善车型管理--公告型号关联--分页列表加载数据异常

master
yunuo970428 2 years ago
parent
commit
09ce9c1b27
  1. 11
      anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/gongggaoxinghao.vue

11
anrui-scm/anrui-scm-ui/src/views/cheliang/chexing/relation/gongggaoxinghao.vue

@ -30,7 +30,7 @@
</div>
<div class="">
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;" @selection-change="handleSelectionChange">
<el-table-column width="50" type="selection" align="center"/>
<el-table-column width="50" fixed type="selection" align="center"/>
<el-table-column width="80" fixed label="序号" type="index" :index="indexMethod" align="center"/>
<el-table-column label="公告型号" width="190" align="center">
<template slot-scope="scope">
@ -135,6 +135,7 @@ export default {
//
handleReturn(isreload) {
if (isreload === 'true') this.$emit('reloadlist')
this.listQuery.params.announcementmodelParamSids = []
this.$emit('doback')
},
//
@ -202,4 +203,12 @@ export default {
</script>
<style scoped>
/*表格列设置fixed后固定列出现下边框的设置*/
/deep/ .el-table__fixed {
height: 100% !important;
}
/*表格列设置fixed后固定列出现下边框的设置*/
/deep/ .el-table__fixed-right {
height: 100% !important;
}
</style>

Loading…
Cancel
Save