diff --git a/jero-web/src/components/exporthistory/index.vue b/jero-web/src/components/exporthistory/index.vue index 5b6386d21..ced0febbe 100644 --- a/jero-web/src/components/exporthistory/index.vue +++ b/jero-web/src/components/exporthistory/index.vue @@ -36,6 +36,7 @@ ref='table' size='middle' rowKey='id' + :components="drag(columns,'columns')" :columns='columns' :dataSource='areaTable' :pagination='false' @@ -72,10 +73,12 @@ import { putAction, postAction, getAction, deleteAction ,downloadFile } from '@/ import axios from 'axios' import Vue from 'vue' import { ACCESS_TOKEN } from '@/store/mutation-types' +import { ResizeHeader, ResizeColumnProvide } from '@/mixins/header' export default { name: 'diolagArea', components: {}, + mixins:[ResizeHeader, ResizeColumnProvide], data() { return { token:Vue.ls.get(ACCESS_TOKEN), @@ -102,20 +105,23 @@ export default { title: this.$t('Exporttype'), align: 'left', dataIndex: 'exportType', - ellipsis: true + ellipsis: true, + width: 260 }, { title: this.$t('Exporttime'), align: 'left', dataIndex: 'exportTime', - ellipsis: true + ellipsis: true, + width: 260 }, { title: this.$t('file'), align: 'left', dataIndex: 'exportFileName', scopedSlots: { customRender: 'file' }, - ellipsis: true + ellipsis: true, + width: 260 } ], newVisible: false, diff --git a/jero-web/src/views/parameter/escalationlibrary/index.vue b/jero-web/src/views/parameter/escalationlibrary/index.vue index 319f305d4..8e8237d13 100644 --- a/jero-web/src/views/parameter/escalationlibrary/index.vue +++ b/jero-web/src/views/parameter/escalationlibrary/index.vue @@ -34,6 +34,7 @@