廖雁生 11 miesięcy temu
rodzic
commit
871ea92091

+ 3 - 2
toktok-admin-screen/src/views/toktok-stores/beer_box_manager.vue

@@ -195,12 +195,13 @@ export default {
   methods: {
     updateStatus(beerBoxId, status) {
       beer_box_manager_update_status({beerBoxId: beerBoxId, status: status}).then((res) => {
-        this.$notify.success({ title: '更新成功' })
+        this.$notify.success({ title: '更新成功' });
+        this.loadDatas();
       })
     },
     setPri() {
       beer_box_manager_add_price(this.params_price).then((res) => {
-        this.$notify.success({ title: '更新成功' })
+        this.$notify.success({ title: '更新成功' });
         this.loadDatas();
         this.dialogVisible_addprice = false;
       })