1 |
- var WxParse=require("../../wxParse/wxParse.js");Page({data:{score:[1,2,3,4,5]},onLoad:function(e){getApp().page.onLoad(this,e);var o=this;o.setData({shop_id:e.shop_id}),getApp().core.showLoading({title:"加载中"}),getApp().request({url:getApp().api.default.shop_detail,method:"GET",data:{shop_id:e.shop_id},success:function(e){if(0==e.code){o.setData(e.data);var t=e.data.shop.content?e.data.shop.content:"<span>暂无信息</span>";WxParse.wxParse("detail","html",t,o)}else getApp().core.showModal({title:"提示",content:e.msg,showCancel:!1,success:function(e){e.confirm&&getApp().core.redirectTo({url:"/pages/shop/shop"})}})},complete:function(){getApp().core.hideLoading()}})},onShow:function(){getApp().page.onShow(this)},mobile:function(){getApp().core.makePhoneCall({phoneNumber:this.data.shop.mobile})},goto:function(){var t=this;"undefined"!=typeof my?t.location():getApp().core.getSetting({success:function(e){e.authSetting["scope.userLocation"]?t.location():getApp().getauth({content:"需要获取您的地理位置授权,请到小程序设置中打开授权!",cancel:!1,author:"scope.userLocation",success:function(e){e.authSetting["scope.userLocation"]&&t.location()}})}})},location:function(){var e=this.data.shop;getApp().core.openLocation({latitude:parseFloat(e.latitude),longitude:parseFloat(e.longitude),name:e.name,address:e.address})},onShareAppMessage:function(e){getApp().page.onShareAppMessage(this);var t=getApp().core.getStorageSync(getApp().const.USER_INFO);return{path:"/pages/shop-detail/shop-detail?shop_id="+this.data.shop_id+"&user_id="+t.id}}});
|