orderiom-api-package 0.2.38 → 0.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/modules/product.js +1 -1
package/package.json
CHANGED
package/src/modules/product.js
CHANGED
|
@@ -239,7 +239,7 @@ const actions = {
|
|
|
239
239
|
};
|
|
240
240
|
if(data.deliveryType) params.deliveryType = data.deliveryType;
|
|
241
241
|
|
|
242
|
-
return axios.get("api/restaurant/products", params).then(res => {
|
|
242
|
+
return axios.get("api/restaurant/products", { params }).then(res => {
|
|
243
243
|
let products = res.data.data;
|
|
244
244
|
products.map(m => {
|
|
245
245
|
if (state.ShoppingCart.find(
|