From ddd17a7643ca777f70389ae9eacb75b8dba6beab Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期一, 19 六月 2023 18:07:03 +0800 Subject: [PATCH] 联调物品主数据剩余功能,处理相似项查询 --- Source/UBCS-WEB/src/main.js | 24 +++++++++++++++++++++--- 1 files changed, 21 insertions(+), 3 deletions(-) diff --git a/Source/UBCS-WEB/src/main.js b/Source/UBCS-WEB/src/main.js index 3cf0e47..4da7c3d 100644 --- a/Source/UBCS-WEB/src/main.js +++ b/Source/UBCS-WEB/src/main.js @@ -23,6 +23,7 @@ import avueUeditor from 'avue-plugin-ueditor'; import website from '@/config/website'; import crudCommon from '@/mixins/crud'; +import Divider from './components/Divider'; // 涓氬姟缁勪欢 import tenantPackage from './views/system/tenantpackage'; import enupackage from "@/views/modeling/enupackage"; @@ -39,12 +40,21 @@ import formulaEditor from "@/components/code-dialog-page/formulaEditor" 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 VciMasterCrud from "@/components/Crud/VciMasterCrud" 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; @@ -81,11 +91,19 @@ Vue.component('formulaEditor',formulaEditor) 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('VciMasterCrud',VciMasterCrud) 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) +Vue.component('Divider', Divider) // 鍔犺浇鐩稿叧url鍦板潃 Object.keys(urls).forEach(key => { -- Gitblit v1.9.3