Commit 3e1ae576 by 宋冰琦

修复部分bug

parent 808e8267
const ENV_TYPE = { const ENV_TYPE = {
baseUrl:'https://hooloo-dev-api.gdatac.com' baseUrl:'https://saas.ihaoin.com'
} }
module.exports = ENV_TYPE module.exports = ENV_TYPE
\ No newline at end of file
...@@ -174,7 +174,7 @@ export default { ...@@ -174,7 +174,7 @@ export default {
this.getShopMenus(params); this.getShopMenus(params);
}); });
} else { } else {
this.getShopMenus(); // this.getShopMenus();
this.authLocation(); this.authLocation();
} }
} }
...@@ -300,6 +300,7 @@ export default { ...@@ -300,6 +300,7 @@ export default {
}); });
}, },
fail: (err) => { //1.2 拒绝授权 fail: (err) => { //1.2 拒绝授权
this.getShopMenus();
wx.exitMiniProgram({ success: (res) => { } }) wx.exitMiniProgram({ success: (res) => { } })
// console.log("获取位置失败") // console.log("获取位置失败")
this.showToast({ "title" : "获取位置失败,请打开位置授权", icon : 'error'}) this.showToast({ "title" : "获取位置失败,请打开位置授权", icon : 'error'})
......
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
shopCarInfo.forEach((item) => (size += item.num)); shopCarInfo.forEach((item) => (size += item.num));
if(!unCheckCount) { if(!unCheckCount) {
let countOfOrder = uni.getStorageSync('countOfOrder'); let countOfOrder = uni.getStorageSync('countOfOrder') || 9;
if (size >= countOfOrder) { if (size >= countOfOrder) {
context.showToast({ context.showToast({
title: '最多可一次购买'+countOfOrder+'杯', title: '最多可一次购买'+countOfOrder+'杯',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment