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 @@
+
+
+
+
+
+
+
+
+ 导入Word文件
+
+
+ 仅支持Word格式文本
+
+
+
+
+
+
+
+ 下一步
+
+
+
+
+
+
+
+
\ 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 @@
+
+
+
+
+
+
+
+
+ 导入Word文件
+
+
+ 仅支持Word格式文本
+
+
+
+
+
+
+
+ 下一步
+
+
+
+
+
+
+
+
\ 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 @@
+
+
+
+
+
+
+
+
+ 导入Word文件
+
+
+ 仅支持Word格式文本
+
+
+
+
+
+
+
+ 下一步
+
+
+
+
+
+
+
+
\ 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 @@
+
+
+
+
+
+
+
+
+ 导入Word文件
+
+
+ 仅支持Word格式文本
+
+
+
+
+
+
+
+ 下一步
+
+
+
+
+
+
+
+
\ 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')