Browse Source

修复品牌新增刷新问题

pre-production
马远东 4 months ago
parent
commit
4fee092340
  1. 10
      src/views/basicdata/brand/basicBrand.vue

10
src/views/basicdata/brand/basicBrand.vue

@ -432,10 +432,12 @@ export default {
this.$message({ this.$message({
type: 'success', type: 'success',
message: '操作成功!', message: '操作成功!',
}).finally(() => { })
this.loadingObj.detailLoading = false;
});
this.imageUrl = null; this.imageUrl = null;
}).catch(e=>{
console.log(e);
}).finally(()=>{
this.loadingObj.detailLoading = false;
}); });
} else { } else {
update(this.form) update(this.form)
@ -446,6 +448,8 @@ export default {
type: 'success', type: 'success',
message: '操作成功!', message: '操作成功!',
}); });
}).catch(e=>{
console.log(e);
}) })
.finally(() => { .finally(() => {
this.loadingObj.detailLoading = false; this.loadingObj.detailLoading = false;

Loading…
Cancel
Save