|
@@ -52,10 +52,10 @@
|
|
|
<template #tip>
|
|
|
<div class="el-upload__tip text-center">
|
|
|
<span>仅允许导入 zip、rar 格式压缩包。</span>
|
|
|
- <!-- <div class="el-upload__tip">
|
|
|
+ <div class="el-upload__tip">
|
|
|
<el-checkbox v-model="updateSupport" />
|
|
|
是否更新已经存在的用户数据
|
|
|
- </div> -->
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-upload>
|
|
@@ -83,14 +83,14 @@ const importUrl =
|
|
|
import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL + '/md/acs/import-data'
|
|
|
const uploadHeaders = ref() // 上传 Header 头
|
|
|
const fileList = ref([]) // 文件列表
|
|
|
-const updateSupport = ref(0) // 是否更新已经存在的用户数据
|
|
|
+const updateSupport = ref(false) // 是否更新已经存在的用户数据
|
|
|
const zipList = ref([]) // 压缩文件列表
|
|
|
|
|
|
|
|
|
/** 打开弹窗 */
|
|
|
const open = () => {
|
|
|
dialogVisible.value = true
|
|
|
- updateSupport.value = 0
|
|
|
+ updateSupport.value = false
|
|
|
fileList.value = []
|
|
|
resetForm()
|
|
|
zipList.value = [] // 压缩文件列表
|