From c1b9b18907aa2395308f561e139ac2132ed345cf Mon Sep 17 00:00:00 2001 From: zhal <15900249928@163.com> Date: Wed, 29 Jun 2022 15:18:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=A8=A1=E5=9D=97=E5=BC=80?= =?UTF-8?q?=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/Performance-import.vue | 173 ++++++++++++++++++ .../src/components/batch-data-import.vue | 173 ++++++++++++++++++ .../src/components/data-migration.vue | 1 + .../src/components/form-import.vue | 173 ++++++++++++++++++ .../src/components/system-import.vue | 173 ++++++++++++++++++ .../src/views/Home.vue | 17 +- 6 files changed, 708 insertions(+), 2 deletions(-) create mode 100644 com.actionsoft.apps.coe.pal.datamigration/src/components/Performance-import.vue create mode 100644 com.actionsoft.apps.coe.pal.datamigration/src/components/batch-data-import.vue create mode 100644 com.actionsoft.apps.coe.pal.datamigration/src/components/form-import.vue create mode 100644 com.actionsoft.apps.coe.pal.datamigration/src/components/system-import.vue diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/components/Performance-import.vue b/com.actionsoft.apps.coe.pal.datamigration/src/components/Performance-import.vue new file mode 100644 index 0000000..aa5c84b --- /dev/null +++ b/com.actionsoft.apps.coe.pal.datamigration/src/components/Performance-import.vue @@ -0,0 +1,173 @@ + + + + + \ No newline at end of file diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/components/batch-data-import.vue b/com.actionsoft.apps.coe.pal.datamigration/src/components/batch-data-import.vue new file mode 100644 index 0000000..8f15658 --- /dev/null +++ b/com.actionsoft.apps.coe.pal.datamigration/src/components/batch-data-import.vue @@ -0,0 +1,173 @@ + + + + + \ No newline at end of file diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/components/data-migration.vue b/com.actionsoft.apps.coe.pal.datamigration/src/components/data-migration.vue index ff6c3ef..fece87b 100644 --- a/com.actionsoft.apps.coe.pal.datamigration/src/components/data-migration.vue +++ b/com.actionsoft.apps.coe.pal.datamigration/src/components/data-migration.vue @@ -101,6 +101,7 @@ .catch((err: any) => {}) } const handleUploadBtn = () => { + debugger; info.fileValue = 'XMLType' + new Date().getTime() info.uploadAction = axiosBaseUrl +'uf?sid='+settingParam.sessionId+'&repositoryName='+info.repositoryName+'&groupValue=' + info.groupValue+'&fileValue='+info.fileValue+'&appId='+ info.appId; diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/components/form-import.vue b/com.actionsoft.apps.coe.pal.datamigration/src/components/form-import.vue new file mode 100644 index 0000000..2b8fd19 --- /dev/null +++ b/com.actionsoft.apps.coe.pal.datamigration/src/components/form-import.vue @@ -0,0 +1,173 @@ + + + + + \ No newline at end of file diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/components/system-import.vue b/com.actionsoft.apps.coe.pal.datamigration/src/components/system-import.vue new file mode 100644 index 0000000..0baac46 --- /dev/null +++ b/com.actionsoft.apps.coe.pal.datamigration/src/components/system-import.vue @@ -0,0 +1,173 @@ + + + + + \ No newline at end of file diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/views/Home.vue b/com.actionsoft.apps.coe.pal.datamigration/src/views/Home.vue index c1997d5..d9f827f 100644 --- a/com.actionsoft.apps.coe.pal.datamigration/src/views/Home.vue +++ b/com.actionsoft.apps.coe.pal.datamigration/src/views/Home.vue @@ -31,6 +31,10 @@ + + + + @@ -42,13 +46,22 @@ import DataImport from '@/components/data-import.vue'; import DataItImport from '@/components/data-It-import.vue'; import ModuleChange from '@/components/module-change.vue'; +import BatchDataImport from '@/components/batch-data-import.vue'; +import FormImport from '@/components/form-import.vue'; +import PerformanceImport from '@/components/Performance-import.vue'; +import SystemImport from '@/components/system-import.vue'; + export default defineComponent({ name: 'Home', components: { DataMigration, DataImport, DataItImport, - ModuleChange + ModuleChange, + BatchDataImport, + FormImport, + PerformanceImport, + SystemImport }, setup(){ // const { proxy: $this } = getCurrentInstance(); @@ -56,7 +69,7 @@ export default defineComponent({ migrationTypes: [{value:"",label:"Aris"}], migrationType: "", tabPosition: "left", - tabPanes: [{label:"数据迁移",name:"dataMigration",icon:""},{label:"流程属性数据导入",name:"dataImport",icon:""},{label:"IT系统数据导入",name:"dataItImport",icon:""},{label:"模型转换",name:"moduleChange",icon:""}], + tabPanes: [{label:"数据迁移",name:"dataMigration",icon:""},{label:"流程属性数据导入",name:"dataImport",icon:""},{label:"IT系统数据导入",name:"dataItImport",icon:""},{label:"模型转换",name:"moduleChange",icon:""},{label:"制度导入",name:"systemImport",icon:""},{label:"表单导入",name:"formImport",icon:""},{label:"批处理工具",name:"batchDataImport",icon:""},{label:"绩效导入",name:"performanceImport",icon:""}], flagBit: 1 }); const activeName = ref('dataMigration')