BUG 29121

This commit is contained in:
aixianling
2022-04-15 11:22:27 +08:00
parent e72ffbf7d0
commit 19a18e34a5

View File

@@ -107,7 +107,11 @@ export default {
params: {idNumber, id} params: {idNumber, id}
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
return this.info = res.data let {avatar} = res.data
if (avatar) {
avatar = JSON.parse(avatar)?.[0]
}
return this.info = {...res.data, avatar}
} }
}) })
}, },