Browse Source

修复品牌新增刷新问题

dev
马远东 6 hours ago
parent
commit
4fee092340
  1. 8
      src/views/basicdata/brand/basicBrand.vue

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

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

Loading…
Cancel
Save