From 7aa0e0f68d2a3d1268a64e49ab47c0c046265e84 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期二, 20 五月 2025 11:48:23 +0800 Subject: [PATCH] 1.采购台账-开发联调 2.表格合计方法封装 --- src/main.js | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/src/main.js b/src/main.js index 8112604..65ae164 100644 --- a/src/main.js +++ b/src/main.js @@ -46,6 +46,7 @@ import PIMTable from "@/components/PIMTable/PIMTable.vue"; import { getToken } from "@/utils/auth"; +import { summarizeTable } from "@/utils/summarizeTable.js"; const app = createApp(App) @@ -54,6 +55,7 @@ app.config.globalProperties.download = download app.config.globalProperties.parseTime = parseTime app.config.globalProperties.resetForm = resetForm +app.config.globalProperties.summarizeTable = summarizeTable app.config.globalProperties.handleTree = handleTree app.config.globalProperties.addDateRange = addDateRange app.config.globalProperties.selectDictLabel = selectDictLabel @@ -90,5 +92,6 @@ // 鏀寔 large銆乨efault銆乻mall size: Cookies.get('size') || 'default' }) +app._context.components.ElDialog.props.closeOnClickModal.default = false app.mount('#app') -- Gitblit v1.9.3