diff --git a/src/views/map/dialog/index.vue b/src/views/map/dialog/index.vue
index 541af3c..fccbc87 100644
--- a/src/views/map/dialog/index.vue
+++ b/src/views/map/dialog/index.vue
@@ -1,6 +1,6 @@
-
+
@@ -54,6 +54,9 @@
+
+
+
@@ -99,6 +102,7 @@ import hotworkFirst from './hotworkFirst'
import peoplePositionYGS from './peoplePositionYGS.vue'
import outSourceInfo from './outSourceInfo.vue'
import outSourceVideoInfo from './outSourceVideoInfo.vue'
+import meteorologicalMonitoring from './meteorologicalMonitoring.vue'
export default {
components: {
@@ -141,7 +145,8 @@ export default {
hotworkFirst,
peoplePositionYGS,
outSourceInfo,
- outSourceVideoInfo
+ outSourceVideoInfo,
+ meteorologicalMonitoring
},
props: {
title: {
@@ -217,7 +222,7 @@ export default {
font-size: 14px;
color: #fff;
overflow-y: auto;
- max-height: 60vh;
+ max-height: 85vh;
//设置滚动条样式
&::-webkit-scrollbar {
diff --git a/src/views/map/dialog/meteorologicalMonitoring.vue b/src/views/map/dialog/meteorologicalMonitoring.vue
new file mode 100644
index 0000000..0a9696f
--- /dev/null
+++ b/src/views/map/dialog/meteorologicalMonitoring.vue
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
diff --git a/src/views/map/index.vue b/src/views/map/index.vue
index c20665c..7b79fbf 100644
--- a/src/views/map/index.vue
+++ b/src/views/map/index.vue
@@ -368,6 +368,12 @@ export default {
checkImg: require('../../assets/map/index/map_on.png'),
check: false,
label: '纯净地图'
+ },
+ {
+ img: require('../../assets/map/index/map.png'),
+ checkImg: require('../../assets/map/index/map_on.png'),
+ check: '',
+ label: '气象监测'
}
],
myEntityCollection: {},
@@ -1235,7 +1241,7 @@ export default {
}
const entity = new Cesium.Entity({
id: 'trajectory',
- polyline: { positions, width: 5.0, material: Cesium.Color.RED , clampToGround:true }
+ polyline: { positions, width: 5.0, material: Cesium.Color.RED, clampToGround: true }
})
const collection = new Cesium.CustomDataSource('trajectoryEntityCollection')
collection.entities.add(entity)
@@ -1604,6 +1610,14 @@ export default {
this.componentKey = Math.random()
this.bottomOptionsKey = Math.random()
this.bottomOptionsAnimationComplex = false
+ } else if (index === 6) {
+ this.dialog.visible = true
+ this.dialog.title = '气象监测'
+ this.dialog.type = 'METEOROLOGICAL'
+ this.dialog.id = 'METEOROLOGICAL'
+ this.dialog.corpInfoId = ''
+ this.dialog.infoname = ''
+ this.dialog.width = '96%'
}
},
changeSceneMode(check) {
diff --git a/src/views/oneCompany/reflection/components/info.vue b/src/views/oneCompany/reflection/components/info.vue
index 219d312..0560385 100644
--- a/src/views/oneCompany/reflection/components/info.vue
+++ b/src/views/oneCompany/reflection/components/info.vue
@@ -273,19 +273,21 @@ export default {
getPeopleList(e) {
return new Promise(resolve => {
this.material.departmentName = e.name
- requestFN(
- '/user/listAll',
- {
- DEPARTMENT_ID: e.id
- }
- ).then((data) => {
- this.dic.userList = data.userList
- this.material.userInfo = ''
- resolve(true)
- }).catch((e) => {
- console.log(e)
- resolve(true)
- })
+ if (e && e.id && e.id !== '') {
+ requestFN(
+ '/user/listAll',
+ {
+ DEPARTMENT_ID: e.id
+ }
+ ).then((data) => {
+ this.dic.userList = data.userList
+ this.material.userInfo = ''
+ resolve(true)
+ }).catch((e) => {
+ console.log(e)
+ resolve(true)
+ })
+ }
})
},
chooseUser(e) {
diff --git a/src/views/threeSystems/safetyOperationRegulations/components/list.vue b/src/views/threeSystems/safetyOperationRegulations/components/list.vue
index 4568d09..fff92a5 100644
--- a/src/views/threeSystems/safetyOperationRegulations/components/list.vue
+++ b/src/views/threeSystems/safetyOperationRegulations/components/list.vue
@@ -210,7 +210,8 @@ export default {
labels: JSON.stringify(this.form.labels),
STATUS: this.form.STATUS,
ASSOCIATION: '0',
- CORPINFO_ID: '0'
+ CORPINFO_ID: '0',
+ MIGRATION_FLAG: '1'
}
).then((data) => {
this.listLoading = false
diff --git a/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue
index 16360fd..e5f2b50 100644
--- a/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue
+++ b/src/views/threeSystems/safetyProductionManagementSystem/components/list.vue
@@ -210,7 +210,8 @@ export default {
labels: JSON.stringify(this.form.labels),
STATUS: this.form.STATUS,
ASSOCIATION: '1',
- CORPINFO_ID: '0'
+ CORPINFO_ID: '0',
+ MIGRATION_FLAG: '1'
}
).then((data) => {
this.listLoading = false
diff --git a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue
index 37a18c3..3c70666 100644
--- a/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue
+++ b/src/views/threeSystems/safetyProductionResponsibilitySystem/components/list.vue
@@ -210,7 +210,8 @@ export default {
labels: JSON.stringify(this.form.labels),
STATUS: this.form.STATUS,
ASSOCIATION: '2',
- CORPINFO_ID: '0'
+ CORPINFO_ID: '0',
+ MIGRATION_FLAG: '1'
}
).then((data) => {
this.listLoading = false
diff --git a/src/views/threeSystems/soLibrary/components/condition.vue b/src/views/threeSystems/soLibrary/components/condition.vue
new file mode 100644
index 0000000..c9af125
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/condition.vue
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ {{ loading ? '提交中 ...' : '确 定' }}
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/dashboard.vue b/src/views/threeSystems/soLibrary/components/dashboard.vue
new file mode 100644
index 0000000..56486f2
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/dashboard.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/editTextLibrary.vue b/src/views/threeSystems/soLibrary/components/editTextLibrary.vue
new file mode 100644
index 0000000..22a3dec
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/editTextLibrary.vue
@@ -0,0 +1,392 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 添加文件内容
+
+
+ 查看
+ 编辑内容
+ 导出word
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/list.vue b/src/views/threeSystems/soLibrary/components/list.vue
new file mode 100644
index 0000000..ed6f1d9
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/list.vue
@@ -0,0 +1,562 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ '资源库数据' }}
+
+
+
+
+
+
+ 导出
+
+
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/listEm.vue b/src/views/threeSystems/soLibrary/components/listEm.vue
new file mode 100644
index 0000000..b349535
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/listEm.vue
@@ -0,0 +1,504 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ !row.CORP_NAME === '' ? '资源库数据' : row.CORP_NAME }}
+
+
+
+
+
+ 查看
+ 导出
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue
new file mode 100644
index 0000000..b104a8f
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/textLibraryInfo.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+ 查看文件详情
+ 导出word
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/updateFile.vue b/src/views/threeSystems/soLibrary/components/updateFile.vue
new file mode 100644
index 0000000..edcaa19
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/updateFile.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/components/updateLog.vue b/src/views/threeSystems/soLibrary/components/updateLog.vue
new file mode 100644
index 0000000..ee30bd2
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/components/updateLog.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/soLibrary/index.vue b/src/views/threeSystems/soLibrary/index.vue
new file mode 100644
index 0000000..8d78561
--- /dev/null
+++ b/src/views/threeSystems/soLibrary/index.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/condition.vue b/src/views/threeSystems/spmLibrary/components/condition.vue
new file mode 100644
index 0000000..051c13e
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/condition.vue
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ {{ loading ? '提交中 ...' : '确 定' }}
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/dashboard.vue b/src/views/threeSystems/spmLibrary/components/dashboard.vue
new file mode 100644
index 0000000..f9b3596
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/dashboard.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue b/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue
new file mode 100644
index 0000000..723dffc
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/editTextLibrary.vue
@@ -0,0 +1,390 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 添加文件内容
+
+
+ 查看
+ 编辑内容
+ 导出word
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/list.vue b/src/views/threeSystems/spmLibrary/components/list.vue
new file mode 100644
index 0000000..fbfd4c0
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/list.vue
@@ -0,0 +1,562 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ '资源库数据' }}
+
+
+
+
+
+
+ 导出
+
+
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/listEm.vue b/src/views/threeSystems/spmLibrary/components/listEm.vue
new file mode 100644
index 0000000..436e2ab
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/listEm.vue
@@ -0,0 +1,503 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}
+
+
+
+
+
+ 查看
+ 导出
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue
new file mode 100644
index 0000000..e9f9aac
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/textLibraryInfo.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+ 查看文件详情
+ 导出word
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/updateFile.vue b/src/views/threeSystems/spmLibrary/components/updateFile.vue
new file mode 100644
index 0000000..edcaa19
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/updateFile.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/components/updateLog.vue b/src/views/threeSystems/spmLibrary/components/updateLog.vue
new file mode 100644
index 0000000..ee30bd2
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/components/updateLog.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/spmLibrary/index.vue b/src/views/threeSystems/spmLibrary/index.vue
new file mode 100644
index 0000000..8d78561
--- /dev/null
+++ b/src/views/threeSystems/spmLibrary/index.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/condition.vue b/src/views/threeSystems/sprLibrary/components/condition.vue
new file mode 100644
index 0000000..fbb3b86
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/condition.vue
@@ -0,0 +1,188 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ {{ loading ? '提交中 ...' : '确 定' }}
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/dashboard.vue b/src/views/threeSystems/sprLibrary/components/dashboard.vue
new file mode 100644
index 0000000..e7c8301
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/dashboard.vue
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue b/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue
new file mode 100644
index 0000000..2cbf55b
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/editTextLibrary.vue
@@ -0,0 +1,390 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 添加文件内容
+
+
+ 查看
+ 编辑内容
+ 导出word
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/list.vue b/src/views/threeSystems/sprLibrary/components/list.vue
new file mode 100644
index 0000000..91be2f5
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/list.vue
@@ -0,0 +1,562 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}
+
+
+
+
+
+
+ 导出
+
+
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/listEm.vue b/src/views/threeSystems/sprLibrary/components/listEm.vue
new file mode 100644
index 0000000..234e626
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/listEm.vue
@@ -0,0 +1,503 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+ 添加其他搜索条件
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+ 通用
+
+
+
+
+
+
+ {{ !row.CORP_NAME ? '资源库数据' : row.CORP_NAME }}
+
+
+
+
+
+ 查看
+ 导出
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue b/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue
new file mode 100644
index 0000000..5ce9a08
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/textLibraryInfo.vue
@@ -0,0 +1,146 @@
+
+
+
+
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+ {{ tag.CATEGORY_NAME }}
+
+
+
+
+
+
+
+
+
+
+ {{ tag.NAME }}
+
+
+
+ 查看文件详情
+ 导出word
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/updateFile.vue b/src/views/threeSystems/sprLibrary/components/updateFile.vue
new file mode 100644
index 0000000..edcaa19
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/updateFile.vue
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/components/updateLog.vue b/src/views/threeSystems/sprLibrary/components/updateLog.vue
new file mode 100644
index 0000000..ee30bd2
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/components/updateLog.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/threeSystems/sprLibrary/index.vue b/src/views/threeSystems/sprLibrary/index.vue
new file mode 100644
index 0000000..8d78561
--- /dev/null
+++ b/src/views/threeSystems/sprLibrary/index.vue
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
diff --git a/src/views/xgf/audit/components/list.vue b/src/views/xgf/audit/components/list.vue
index 7dd804d..25ed354 100644
--- a/src/views/xgf/audit/components/list.vue
+++ b/src/views/xgf/audit/components/list.vue
@@ -107,7 +107,8 @@
- 查看
+ 查看
+ 查看
审核
diff --git a/src/views/xgf/flowApply/components/userInfo.vue b/src/views/xgf/flowApply/components/userInfo.vue
index 007b258..8d585d8 100644
--- a/src/views/xgf/flowApply/components/userInfo.vue
+++ b/src/views/xgf/flowApply/components/userInfo.vue
@@ -19,7 +19,7 @@
-
+
@@ -47,13 +47,13 @@
-
+ :preview-src-list="[config.fileUrl + item.FILEPATH]"
+ z-index="8000"
+ style="object-fit: cover; width: 40px; height: 40px"/>
@@ -137,13 +137,13 @@
-
+ :preview-src-list="[config.fileUrl + item.FILEPATH]"
+ z-index="8000"
+ style="object-fit: cover; width: 40px; height: 40px"/>
|
@@ -159,13 +159,13 @@
-
+ :preview-src-list="[config.fileUrl + item.FILEPATH]"
+ z-index="8000"
+ style="object-fit: cover; width: 40px; height: 40px"/>
|
@@ -178,13 +178,13 @@
-
+ :preview-src-list="[config.fileUrl + item.FILEPATH]"
+ z-index="8000"
+ style="object-fit: cover; width: 40px; height: 40px"/>
@@ -268,17 +268,16 @@
-
-
+
+ :preview-src-list="[config.fileUrl + item.FILEPATH_BACK]"
+ z-index="8000"
+ style="object-fit: cover; width: 40px; height: 40px"/>
@@ -413,7 +412,7 @@
@@ -511,6 +510,19 @@ export default {
},
download(item) {
useDownloadFile(item)
+ },
+ close() {
+ this.visible = false
+ this.userDetailForm = {}
+ this.userCardIDPhotoFile = [] // 身份证照片
+ this.trainRecordList = []
+ this.photosOfLevel = [] // 三级教育照片
+ this.specialUsersList = {}
+ this.insuranceFileList = [] // 保险文件
+ this.contractFileList = []
+ this.socialPhotoFile = []
+ this.gongshangbaoxianFile = []
+ this.applyList = []
}
}
}