From f724b40e24d8b76f39476c10ad2eb7cf75a6df87 Mon Sep 17 00:00:00 2001 From: tao Date: Tue, 30 Dec 2025 15:51:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=87=BA=E7=AB=99=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 15 +++--- src/views/pwoManage/layout.vue | 2 +- .../pwoManage/outfeed/jobReport/index.vue | 51 +++++++++---------- src/views/pwoManage/outfeed/layout.vue | 40 +++++++++++++-- 4 files changed, 67 insertions(+), 41 deletions(-) diff --git a/components.d.ts b/components.d.ts index aad9955..ff4cadd 100644 --- a/components.d.ts +++ b/components.d.ts @@ -10,7 +10,6 @@ declare module 'vue' { export interface GlobalComponents { AButton: typeof import('ant-design-vue/es')['Button'] ACard: typeof import('ant-design-vue/es')['Card'] - ACheckbox: typeof import('ant-design-vue/es')['Checkbox'] ACol: typeof import('ant-design-vue/es')['Col'] AConfigProvider: typeof import('ant-design-vue/es')['ConfigProvider'] ActionButtons: typeof import('./src/components/common/ActionButtons/index.vue')['default'] @@ -21,7 +20,6 @@ declare module 'vue' { AForm: typeof import('ant-design-vue/es')['Form'] AFormItem: typeof import('ant-design-vue/es')['FormItem'] AInput: typeof import('ant-design-vue/es')['Input'] - AInputPassword: typeof import('ant-design-vue/es')['InputPassword'] AMenu: typeof import('ant-design-vue/es')['Menu'] AMenuItem: typeof import('ant-design-vue/es')['MenuItem'] AModal: typeof import('ant-design-vue/es')['Modal'] @@ -35,20 +33,19 @@ declare module 'vue' { ATable: typeof import('ant-design-vue/es')['Table'] ATableSummaryCell: typeof import('ant-design-vue/es')['TableSummaryCell'] ATableSummaryRow: typeof import('ant-design-vue/es')['TableSummaryRow'] + ATag: typeof import('ant-design-vue/es')['Tag'] ATypographyText: typeof import('ant-design-vue/es')['TypographyText'] - Header: typeof import('./src/components/Header/index.vue')['default'] + DictTag: typeof import('./src/components/common/DictTag/index.vue')['default'] + Header: typeof import('./src/components/common/Header/index.vue')['default'] ILucideBuilding: typeof import('~icons/lucide/building')['default'] ILucideChevronDown: typeof import('~icons/lucide/chevron-down')['default'] ILucideCopy: typeof import('~icons/lucide/copy')['default'] - ILucideCpu: typeof import('~icons/lucide/cpu')['default'] - ILucideLoader: typeof import('~icons/lucide/loader')['default'] - ILucideLock: typeof import('~icons/lucide/lock')['default'] - ILucideRefreshCw: typeof import('~icons/lucide/refresh-cw')['default'] + ILucideRotateCcw: typeof import('~icons/lucide/rotate-ccw')['default'] ILucideRotateCw: typeof import('~icons/lucide/rotate-cw')['default'] - ILucideShieldCheck: typeof import('~icons/lucide/shield-check')['default'] - ILucideUser: typeof import('~icons/lucide/user')['default'] Lucide: typeof import('./src/components/common/Lucide/index.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] + Subtitle: typeof import('./src/components/common/Subtitle/index.vue')['default'] + Title: typeof import('./src/components/common/Title/index.vue')['default'] } } diff --git a/src/views/pwoManage/layout.vue b/src/views/pwoManage/layout.vue index dc3e3bf..1e1b9f5 100644 --- a/src/views/pwoManage/layout.vue +++ b/src/views/pwoManage/layout.vue @@ -398,7 +398,7 @@ onUnmounted(() => { .bottom-section { background: #fff; - padding: 16px; + padding: 12px 14px; border-radius: 8px; flex: 1; min-height: 0; diff --git a/src/views/pwoManage/outfeed/jobReport/index.vue b/src/views/pwoManage/outfeed/jobReport/index.vue index c83c890..93ba5b4 100644 --- a/src/views/pwoManage/outfeed/jobReport/index.vue +++ b/src/views/pwoManage/outfeed/jobReport/index.vue @@ -1,9 +1,13 @@