回复单和整改单

This commit is contained in:
Teo
2025-07-07 19:56:03 +08:00
parent 3259cc6b23
commit 914cd97282
15 changed files with 511 additions and 130 deletions

View File

@ -10,7 +10,7 @@
:on-error="handleUploadError"
:on-exceed="handleExceed"
:on-success="handleUploadSuccess"
:show-file-list="isConstruction"
:show-file-list="showFileList"
:headers="headers"
class="upload-file-uploader"
:list-type="isConstruction ? 'picture-card' : 'text'"
@ -104,6 +104,8 @@ const props = defineProps({
isDarg: propTypes.bool.def(false),
// 是否自动上传
autoUpload: propTypes.bool.def(true),
// 是否显示文件列表
showFileList: propTypes.bool.def(false),
// 其他参数
data: propTypes.object.def({}),
onUploadSuccess: {