diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue index 003d2f164..d8f687737 100644 --- a/jero-web/src/components/layouts/TabLayout.vue +++ b/jero-web/src/components/layouts/TabLayout.vue @@ -426,9 +426,9 @@ } } - .ant-table-fixed { - background: transparent !important; - } + /*.ant-table-fixed {*/ + /* background: transparent !important;*/ + /*}*/ .main { position: relative; diff --git a/jero-web/src/components/tableDate/index.vue b/jero-web/src/components/tableDate/index.vue index 1e34eadcf..c130cda8d 100644 --- a/jero-web/src/components/tableDate/index.vue +++ b/jero-web/src/components/tableDate/index.vue @@ -6,11 +6,11 @@ :row-selection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }" :columns="columns" :pagination="false" - :scroll="{x: 1400}" + :scroll="{x: 1600}" :data-source="dataSource" :loading="loading" > - + {{ol.text}} @@ -66,8 +66,8 @@ columns: [], selectedRowKeys: [], dataSource: [], - pageNo: 1, - pageSize: 10, + pageNo: '1', + pageSize: '10', total: 0, searchParmes: {}, loading: false @@ -119,7 +119,7 @@ pageSize: this.pageSize } this.loading = true - postAction(this.url.tableList, params).then((res) => { + getAction(this.url.tableList, params).then((res) => { if (res.success) { this.dataSource = res.result.records this.total = res.result.total @@ -128,11 +128,11 @@ }) }, onChange(page, pageSize) { - this.pageNo = page + this.pageNo = page+'' this.getTableList() }, SizeChange(page, pageSize) { - this.pageSize = pageSize + this.pageSize = pageSize+'' this.getTableList() }, onSelectChange() {