From e14d495581896374cc4be7ec929feb95005e6563 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期四, 15 六月 2023 18:22:39 +0800 Subject: [PATCH] 修改系统管理、编码规则管理bug --- Source/UBCS-WEB/src/main.js | 33 +++++++++++++++++++++++++++++++-- 1 files changed, 31 insertions(+), 2 deletions(-) diff --git a/Source/UBCS-WEB/src/main.js b/Source/UBCS-WEB/src/main.js index 373277b..c87fec9 100644 --- a/Source/UBCS-WEB/src/main.js +++ b/Source/UBCS-WEB/src/main.js @@ -35,10 +35,26 @@ import classifyTrees from "@/components/Tree/classifyTrees" import classifyTreeform from "@/components/Tree/classifyTreeform" import TemplatePro from "@/components/Tree/TemplatePro" +import attrCrud from "@/components/Tree/attrCrud" import formulaEditor from "@/components/code-dialog-page/formulaEditor" -import referConfigDialog from "@/components/code-dialog-page/referConfigDialog" +import referConfigCrudDialog from "@/components/code-dialog-page/referConfigCrudDialog" +import referConfigFormDialog from "@/components/code-dialog-page/referConfigFormDialog" +import referBtmTypeCrudDialog from "@/components/code-dialog-page/referBtmTypeCrudDialog" +import referSelectBtmAttrDialog from "@/components/code-dialog-page/referSelectBtmAttrDialog" +import advancedQuery from "@/components/advanced-query/advancedQuery" import businessAdd from "@/views/modeling/BusinessAdd" +import TableCrud from "@/components/Crud/Crud" +import originalAdd from "@/views/modeling/originalAdd" +import FormTemplateDialog from "@/components/FormTemplate/index" +import linkTypeAdd from "@/views/modeling/LinkTypeAdd" +import MasterTree from "@/components/Master/MasterTree"; +import FlowPath from "@/components/template/FlowPath"; +import Stage from "@/components/template/Stage"; +// 灏嗗伐鍏峰嚱鏁版坊鍔犲埌鍏ㄥ眬 +import utilFunc from './util/func' +import flowPath from "@/views/flow/flowPath"; +Vue.prototype.$utilFunc = utilFunc // 娉ㄥ唽鍏ㄥ眬crud椹卞姩 window.$crudCommon = crudCommon; // 鍔犺浇Vue鎷撳睍 @@ -47,6 +63,7 @@ Vue.use(Element, { i18n: (key, value) => i18n.t(key, value) }); + Vue.use(window.AVUE, { size: 'small', tableSize: 'small', @@ -71,8 +88,20 @@ Vue.component('classifyTreeform',classifyTreeform) Vue.component('TemplatePro',TemplatePro) Vue.component('formulaEditor',formulaEditor) -Vue.component('referConfigDialog',referConfigDialog) +Vue.component('referConfigCrudDialog',referConfigCrudDialog) +Vue.component('referConfigFormDialog',referConfigFormDialog) +Vue.component('advancedQuery',advancedQuery) Vue.component('businessAdd',businessAdd) +Vue.component('attrCrud',attrCrud) +Vue.component('TableCrud',TableCrud) +Vue.component('originalAdd',originalAdd) +Vue.component('referBtmTypeCrudDialog',referBtmTypeCrudDialog) +Vue.component('referSelectBtmAttrDialog',referSelectBtmAttrDialog) +Vue.component('FormTemplateDialog',FormTemplateDialog) +Vue.component('LinkTypeAdd',linkTypeAdd) +Vue.component('MasterTree',MasterTree) +Vue.component('FlowPath',FlowPath) +Vue.component('Stage',Stage) // 鍔犺浇鐩稿叧url鍦板潃 Object.keys(urls).forEach(key => { -- Gitblit v1.9.3