From f61c08c2abeca34bc8a50d00fb90faa24cbfa83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BD=A6=E6=B3=BD?= Date: Tue, 31 Jan 2023 14:00:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E7=AE=A1=E7=90=86-=E4=B8=8A?= =?UTF-8?q?=E6=8A=A5=E5=BA=93=E7=AE=A1=E7=90=86-=E5=88=97=E5=AE=BD?= =?UTF-8?q?=E5=8F=AF=E6=8B=96=E6=8B=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/components/exporthistory/index.vue | 12 +++++++++--- .../src/views/parameter/escalationlibrary/index.vue | 9 +++++++-- 2 files changed, 16 insertions(+), 5 deletions(-) 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 @@