|
@@ -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;
|
|
|
})
|