在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
function PromiseAuth(scope){ return new Promise(function (resolve, reject) { if (wx.getSetting) { wx.getSetting({ success: function (res) { if (res.authSetting[scope]) { resolve(true); } else { confirm({ content: `请授权,才能正常使用功能!`, title: '温馨提示', options: [ {}, { callback: _ => { openSetting() } } ] }) } }, fail: function () { resolve(false); } }) } else { wx.showModal({ showCancel: false, title: '提示', content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。', confirmColor: '#20b976' }); reject(false); } }) } function confirm({ content = '', title = '', options = [{}, {}] }) { return new Promise((resolve, reject) => { wx.showModal({ title, content, confirmText: options[1].label || '确定', confirmColor: '#21c0ae', success: function (res) { if (res.confirm) { resolve(res) if (options[1].callback) { options[1].callback() } } else if (res.cancel) { reject(res) if (options[0].callback) { options[0].callback() } } } }) }) } function openSetting(scope, opts = {}) { return new Promise((resolve, reject) => { wx.openSetting({ success({ authSetting }) { if (scope) { resolve(authSetting[`scope.${scope}`]) opts.success && opts.success(authSetting[`scope.${scope}`]) } else { resolve(authSetting) opts.success && opts.successopts.success(authSetting) } }, fail(err) { reject(err) console.log('89080') console.log(err) opts.fail && opts.fail(err) } }) }) } function getLocation(callback) { wx.getLocation({ type: 'gcj02', success: function (res) { callback(null, res || {}); }, fail: function (res) { // GPSNotFound(); callback('fail', {}); } }) } module.exports ={ const wxUtil = require('../../utils/wxUtil.js') var _this = this; wxUtil.getLocation(function (code, val) { if (code) { wxUtil.PromiseAuth('scope.userLocation').then((res) => { if (res) { wxUtil.getLocation(function (code, val) { if (code) { app.globalData.urlData.latitude = val.latitude; app.globalData.urlData.longitude = val.longitude; _this.getData(); } else { wx.showModal({ showCancel: false, title: '提示', content: '授权失败!', confirmColor: '#20b976' }); } }) } }); } else { app.globalData.urlData.latitude = val.latitude; app.globalData.urlData.longitude = val.longitude; _this.getData(); } })
|
请发表评论