代客下单修复多规格商品按钮禁用问题

增加用餐模式切换
This commit is contained in:
2024-09-19 16:38:45 +08:00
parent 5f1688173f
commit d6836d240c
2 changed files with 28 additions and 2 deletions

View File

@@ -417,3 +417,14 @@ export function $printDishes(data) {
});
}
// 就餐模式切换
export function $changeUseType(data) {
return request({
url: '/api/place/choseModel',
method: "put",
data:{
shopId: localStorage.getItem("shopId"),
...data
}
});
}