|
@@ -200,8 +200,11 @@ export default {
|
|
|
},
|
|
|
// 上传图标事件
|
|
|
handleAvatarSuccess(response, file) {
|
|
|
+ this.businessImgLoading = true
|
|
|
this.$nextTick(() => {
|
|
|
- this.form.businessLicenseImage = response.data
|
|
|
+ setTimeout(() => {
|
|
|
+ this.form.businessLicenseImage = response.data
|
|
|
+ }, 1000 * 2)
|
|
|
})
|
|
|
},
|
|
|
reloadAvatarImage() {
|
|
@@ -215,8 +218,11 @@ export default {
|
|
|
},
|
|
|
// 上传图标事件
|
|
|
handleDoorwaySuccess(response, file) {
|
|
|
+ this.headImgLoading = true
|
|
|
this.$nextTick(() => {
|
|
|
- this.form.headpic = response.data
|
|
|
+ setTimeout(() => {
|
|
|
+ this.form.headpic = response.data
|
|
|
+ }, 1000 * 2)
|
|
|
})
|
|
|
},
|
|
|
reloadDoorwayImage() {
|