From 419925518628231940df91606170404292e19e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 14 Aug 2026 16:01:32 +0800 Subject: [PATCH] =?UTF-8?q?style(business):=20=E7=BB=9F=E4=B8=80=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E5=A4=9A=E4=B8=AA=E4=B8=9A=E5=8A=A1=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E4=B8=BA=E6=8E=A5=E8=BF=91=E5=85=A8=E5=B1=8F=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /business/waybill-manage 新增/编辑弹窗添加 dialogCustomClass 控制高度样式,覆盖默认 max-height 限制 - /business/contract-manage 弹窗同样加 dialogCustomClass,scoped 样式解开 Avue 弹窗默认 body 高度限制并实现底部操作栏粘性 - element-ui.scss 新增对应页 dialog 样式,确保弹窗上下留白20px,内容区高度自动适应,底部操作栏始终可见 - 复用 business-crud-page 组件中传入 option 的 dialogCustomClass 实现页面隔离样式,不影响其他业务弹窗 - loading-manage.vue 调整路线展示类型样式,分别对应起点、中间、终点三种状态,增加状态背景色区分 - .workbuddy/memory.md 补充业务弹窗高度改法说明,强调利用 dialogCustomClass 实现弹窗样式定制与复用机制 --- vite.config.mjs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/vite.config.mjs b/vite.config.mjs index 09134a0..8c0a2a9 100644 --- a/vite.config.mjs +++ b/vite.config.mjs @@ -50,26 +50,26 @@ export default ({ __VUE_I18N_LEGACY_API__: true, __INTLIFY_PROD_DEVTOOLS__: false, }, - // server: { - // port: 2888, - // proxy: { - // '/api': { - // target: 'http://localhost', - // //target: 'https://saber3.bladex.cn/api', - // changeOrigin: true, - // rewrite: path => path.replace(/^\/api/, ''), - // }, - // }, - // }, server: { - port: 2889, + port: 2888, proxy: { '/api': { - target: 'http://172.16.203.228:8000', + target: 'http://localhost', + //target: 'https://saber3.bladex.cn/api', changeOrigin: true, + rewrite: path => path.replace(/^\/api/, ''), }, }, }, + // server: { + // port: 2889, + // proxy: { + // '/api': { + // target: 'http://172.16.203.228:8000', + // changeOrigin: true, + // }, + // }, + // }, resolve: { alias: { '~': resolve(__dirname, './'),