BUG 25116

This commit is contained in:
aixianling
2021-12-01 18:09:58 +08:00
parent 675933b067
commit 9715f2c568
4 changed files with 22 additions and 9 deletions

View File

@@ -65,10 +65,10 @@ export default {
watch: {
def: {
handler(v) {
if (!!v?.toString() && v?.url) {
if (!!v?.toString()) {
if (this.multiple) {
this.fileList = v
} else {
} else if (v?.url) {
this.fileList = [v]
}
}