From 907d0ba6b7442ef9f4fb976633d0b51d36ea6570 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期二, 15 七月 2025 11:49:19 +0800 Subject: [PATCH] 数据报表页面数据列设置固定宽度 --- src/views/mdc/base/EquipmentList.vue | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/mdc/base/EquipmentList.vue b/src/views/mdc/base/EquipmentList.vue index 6cc55f5..2ed3a16 100644 --- a/src/views/mdc/base/EquipmentList.vue +++ b/src/views/mdc/base/EquipmentList.vue @@ -77,7 +77,6 @@ <a-table ref="table" bordered - size="middle" rowKey="id" :scroll="{x:'max-content',y:465}" :columns="columns" @@ -121,7 +120,7 @@ <script> import UserModal from './modules/EquipmentList/UserModal' import { JeecgListMixin } from '@/mixins/JeecgListMixin' - import { queryProductionTreeList } from '@/api/api' + import { queryProductionTreeListByMdc } from '@/api/api' import { mapActions } from 'vuex' export default { @@ -413,7 +412,7 @@ * 璋冪敤鎺ュ彛鑾峰彇鏌ヨ鍖哄煙杞﹂棿鏍戝垪琛� */ getWorkshopListByApi() { - queryProductionTreeList().then(res => { + queryProductionTreeListByMdc().then(res => { if (res.success) { this.workshopTreeData = res.result this.treeDefaultExpandedKeys = [...res.result].map(item => item.key) -- Gitblit v1.9.3