From a037d66c08b86041feb2ea0c081974f18cb60864 Mon Sep 17 00:00:00 2001 From: yangchunlong <292345300@qq.com> Date: Mon, 23 Jun 2025 11:54:56 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=F0=9F=9A=80=20lv1&2|3&spu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components.d.ts | 29 ------------------- .../finishedProduct/constant/list/table.ts | 20 ++++++------- 2 files changed, 10 insertions(+), 39 deletions(-) diff --git a/src/components.d.ts b/src/components.d.ts index 6ce8292..abec193 100644 --- a/src/components.d.ts +++ b/src/components.d.ts @@ -7,14 +7,6 @@ export {} declare module 'vue' { export interface GlobalComponents { - 403: typeof import("./components/ErrorMessage/403.vue")["default"] - 404: typeof import("./components/ErrorMessage/404.vue")["default"] - 500: typeof import("./components/ErrorMessage/500.vue")["default"] - Add: typeof import("./components/DetailsBtns/components/Add.vue")["default"] - ColSetting: typeof import("./components/ProTable/components/ColSetting.vue")["default"] - Del: typeof import("./components/ListBtns/components/Del.vue")["default"] - DetailsBtns: typeof import("./components/DetailsBtns/index.vue")["default"] - DetailsSearch: typeof import("./components/DetailsSearch/index.vue")["default"] ElAside: typeof import('element-plus/es')['ElAside'] ElAutocomplete: typeof import('element-plus/es')['ElAutocomplete'] ElBreadcrumb: typeof import('element-plus/es')['ElBreadcrumb'] @@ -47,11 +39,6 @@ declare module 'vue' { ElTabs: typeof import('element-plus/es')['ElTabs'] ElTag: typeof import('element-plus/es')['ElTag'] ElTooltip: typeof import('element-plus/es')['ElTooltip'] - Export: typeof import("./components/ListBtns/components/Export.vue")["default"] - ExprotSelect: typeof import("./components/ListBtns/components/ExprotSelect.vue")["default"] - Generate: typeof import("./components/DetailsBtns/components/Generate.vue")["default"] - Grid: typeof import("./components/Grid/index.vue")["default"] - GridItem: typeof import("./components/Grid/components/GridItem.vue")["default"] IEpArrowDown: typeof import('~icons/ep/arrow-down')['default'] IEpCircleClose: typeof import('~icons/ep/circle-close')['default'] IEpFolderDelete: typeof import('~icons/ep/folder-delete')['default'] @@ -60,23 +47,7 @@ declare module 'vue' { IEpRemove: typeof import('~icons/ep/remove')['default'] IEpSearch: typeof import('~icons/ep/search')['default'] IEpSwitchButton: typeof import('~icons/ep/switch-button')['default'] - ImportExcel: typeof import("./components/ImportExcel/index.vue")["default"] - ListBtns: typeof import('./components/ListBtns/index.vue')['default'] - ListResultDig: typeof import("./components/ListResultDig/index.vue")["default"] - Loading: typeof import("./components/Loading/index.vue")["default"] - Merge: typeof import("./components/ListBtns/components/Merge.vue")["default"] - NoToVoid: typeof import("./components/ListBtns/components/noToVoid.vue")["default"] - Pagination: typeof import("./components/ProTable/components/Pagination.vue")["default"] - Print: typeof import("./components/DetailsBtns/components/Print.vue")["default"] - ProTable: typeof import("./components/ProTable/index.vue")["default"] - Refresh: typeof import("./components/ListBtns/components/Refresh.vue")["default"] - Retransmission: typeof import("./components/ListBtns/components/Retransmission.vue")["default"] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] - Search: typeof import("./components/Search/index.vue")["default"] - Submit: typeof import("./components/DetailsBtns/components/Submit.vue")["default"] - Switch: typeof import("./components/DetailsBtns/components/Switch.vue")["default"] - TableColumn: typeof import("./components/ProTable/components/TableColumn.vue")["default"] - ToVoid: typeof import("./components/ListBtns/components/ToVoid.vue")["default"] } } diff --git a/src/views/reportForm/finishedProduct/constant/list/table.ts b/src/views/reportForm/finishedProduct/constant/list/table.ts index 5ccb945..baf8538 100644 --- a/src/views/reportForm/finishedProduct/constant/list/table.ts +++ b/src/views/reportForm/finishedProduct/constant/list/table.ts @@ -57,31 +57,31 @@ export const COLUMNS = [ { align: "left", label: "库存量", - prop: "beforeQty" - // width: "120" + prop: "beforeQty", + width: "240" }, { align: "left", label: "1级分类", - prop: "lv1" - // width: "120" + prop: "fProductLines1FName", + width: "180" }, { align: "left", label: "2级分类", - prop: "lv2" - // width: "120" + prop: "fProductCATs1FName", + width: "180" }, { align: "left", label: "3级分类", - prop: "lv3" - // width: "120" + prop: "fMaterialGroupFName", + width: "180" }, { align: "left", label: "SPU", - prop: "SPU" - // width: "120" + prop: "f_Product", + width: "240" } ];