fix: 修复文件上传数据回显错误
This commit is contained in:
parent
261d8b2aa4
commit
aadad39a69
@ -2,25 +2,27 @@
|
|||||||
<div class="upload-file">
|
<div class="upload-file">
|
||||||
<el-upload
|
<el-upload
|
||||||
ref="uploadRef"
|
ref="uploadRef"
|
||||||
:multiple="props.limit > 1"
|
|
||||||
name="file"
|
|
||||||
v-model="valueRef"
|
|
||||||
v-model:file-list="fileList"
|
v-model:file-list="fileList"
|
||||||
:show-file-list="true"
|
|
||||||
:auto-upload="autoUpload"
|
|
||||||
:action="updateUrl"
|
:action="updateUrl"
|
||||||
|
:auto-upload="autoUpload"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
:drag="drag"
|
||||||
:headers="uploadHeaders"
|
:headers="uploadHeaders"
|
||||||
:limit="props.limit"
|
:limit="props.limit"
|
||||||
:drag="drag"
|
:multiple="props.limit > 1"
|
||||||
:before-upload="beforeUpload"
|
|
||||||
:on-exceed="handleExceed"
|
|
||||||
:on-success="handleFileSuccess"
|
|
||||||
:on-error="excelUploadError"
|
:on-error="excelUploadError"
|
||||||
:on-remove="handleRemove"
|
:on-exceed="handleExceed"
|
||||||
:on-preview="handlePreview"
|
:on-preview="handlePreview"
|
||||||
|
:on-remove="handleRemove"
|
||||||
|
:on-success="handleFileSuccess"
|
||||||
|
:show-file-list="true"
|
||||||
class="upload-file-uploader"
|
class="upload-file-uploader"
|
||||||
|
name="file"
|
||||||
>
|
>
|
||||||
<el-button type="primary"><Icon icon="ep:upload-filled" />选取文件</el-button>
|
<el-button type="primary">
|
||||||
|
<Icon icon="ep:upload-filled" />
|
||||||
|
选取文件
|
||||||
|
</el-button>
|
||||||
<template v-if="isShowTip" #tip>
|
<template v-if="isShowTip" #tip>
|
||||||
<div style="font-size: 8px">
|
<div style="font-size: 8px">
|
||||||
大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b>
|
大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b>
|
||||||
@ -35,8 +37,8 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { propTypes } from '@/utils/propTypes'
|
import { propTypes } from '@/utils/propTypes'
|
||||||
import { getAccessToken, getTenantId } from '@/utils/auth'
|
import { getAccessToken, getTenantId } from '@/utils/auth'
|
||||||
import type { UploadInstance, UploadUserFile, UploadProps, UploadRawFile } from 'element-plus'
|
import type { UploadInstance, UploadProps, UploadRawFile, UploadUserFile } from 'element-plus'
|
||||||
import { isArray, isString } from '@/utils/is'
|
import { isString } from '@/utils/is'
|
||||||
|
|
||||||
defineOptions({ name: 'UploadFile' })
|
defineOptions({ name: 'UploadFile' })
|
||||||
|
|
||||||
@ -54,8 +56,8 @@ const props = defineProps({
|
|||||||
drag: propTypes.bool.def(false), // 拖拽上传
|
drag: propTypes.bool.def(false), // 拖拽上传
|
||||||
isShowTip: propTypes.bool.def(true) // 是否显示提示
|
isShowTip: propTypes.bool.def(true) // 是否显示提示
|
||||||
})
|
})
|
||||||
|
|
||||||
// ========== 上传相关 ==========
|
// ========== 上传相关 ==========
|
||||||
const valueRef = ref(props.modelValue)
|
|
||||||
const uploadRef = ref<UploadInstance>()
|
const uploadRef = ref<UploadInstance>()
|
||||||
const uploadList = ref<UploadUserFile[]>([])
|
const uploadList = ref<UploadUserFile[]>([])
|
||||||
const fileList = ref<UploadUserFile[]>([])
|
const fileList = ref<UploadUserFile[]>([])
|
||||||
@ -64,6 +66,7 @@ const uploadHeaders = ref({
|
|||||||
Authorization: 'Bearer ' + getAccessToken(),
|
Authorization: 'Bearer ' + getAccessToken(),
|
||||||
'tenant-id': getTenantId()
|
'tenant-id': getTenantId()
|
||||||
})
|
})
|
||||||
|
|
||||||
// 文件上传之前判断
|
// 文件上传之前判断
|
||||||
const beforeUpload: UploadProps['beforeUpload'] = (file: UploadRawFile) => {
|
const beforeUpload: UploadProps['beforeUpload'] = (file: UploadRawFile) => {
|
||||||
if (fileList.value.length >= props.limit) {
|
if (fileList.value.length >= props.limit) {
|
||||||
@ -97,12 +100,10 @@ const beforeUpload: UploadProps['beforeUpload'] = (file: UploadRawFile) => {
|
|||||||
// 文件上传成功
|
// 文件上传成功
|
||||||
const handleFileSuccess: UploadProps['onSuccess'] = (res: any): void => {
|
const handleFileSuccess: UploadProps['onSuccess'] = (res: any): void => {
|
||||||
message.success('上传成功')
|
message.success('上传成功')
|
||||||
const fileListNew = fileList.value
|
fileList.value.shift()
|
||||||
fileListNew.pop()
|
|
||||||
fileList.value = fileListNew
|
|
||||||
uploadList.value.push({ name: res.data, url: res.data })
|
uploadList.value.push({ name: res.data, url: res.data })
|
||||||
if (uploadList.value.length == uploadNumber.value) {
|
if (uploadList.value.length == uploadNumber.value) {
|
||||||
fileList.value = fileList.value.concat(uploadList.value)
|
fileList.value.push(...uploadList.value)
|
||||||
uploadList.value = []
|
uploadList.value = []
|
||||||
uploadNumber.value = 0
|
uploadNumber.value = 0
|
||||||
emitUpdateModelValue()
|
emitUpdateModelValue()
|
||||||
@ -131,29 +132,25 @@ const handlePreview: UploadProps['onPreview'] = (uploadFile) => {
|
|||||||
// 监听模型绑定值变动
|
// 监听模型绑定值变动
|
||||||
watch(
|
watch(
|
||||||
() => props.modelValue,
|
() => props.modelValue,
|
||||||
() => {
|
(val: string | string[]) => {
|
||||||
const files: string[] = []
|
if (!val) {
|
||||||
|
fileList.value = [] // fix:处理掉缓存,表单重置后上传组件的内容并没有重置
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
fileList.value = [] // 保障数据为空
|
||||||
// 情况1:字符串
|
// 情况1:字符串
|
||||||
if (isString(props.modelValue)) {
|
if (isString(val)) {
|
||||||
// 情况1.1:逗号分隔的多值
|
fileList.value.push(
|
||||||
if (props.modelValue.includes(',')) {
|
...val.split(',').map((url) => ({ name: url.substring(url.lastIndexOf('/') + 1), url }))
|
||||||
files.concat(props.modelValue.split(','))
|
)
|
||||||
} else if (props.modelValue.length > 0) {
|
|
||||||
files.push(props.modelValue)
|
|
||||||
}
|
}
|
||||||
} else if (isArray(props.modelValue)) {
|
// 情况2:数组
|
||||||
// 情况2:字符串
|
fileList.value.push(
|
||||||
files.concat(props.modelValue)
|
...(val as string[]).map((url) => ({ name: url.substring(url.lastIndexOf('/') + 1), url }))
|
||||||
} else if (props.modelValue == null) {
|
)
|
||||||
// 情况3:undefined 不处理
|
|
||||||
} else {
|
|
||||||
throw new Error('不支持的 modelValue 类型')
|
|
||||||
}
|
|
||||||
fileList.value = files.map((url: string) => {
|
|
||||||
return { url, name: url.substring(url.lastIndexOf('/') + 1) } as UploadUserFile
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true, deep: true }
|
||||||
)
|
)
|
||||||
// 发送文件链接列表更新
|
// 发送文件链接列表更新
|
||||||
const emitUpdateModelValue = () => {
|
const emitUpdateModelValue = () => {
|
||||||
@ -166,7 +163,7 @@ const emitUpdateModelValue = () => {
|
|||||||
emit('update:modelValue', result)
|
emit('update:modelValue', result)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style lang="scss" scoped>
|
||||||
.upload-file-uploader {
|
.upload-file-uploader {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user