You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
const getPermission = ({ code, name }) => {
|
|
return new Promise((resolve, reject) => {
|
|
wx.getSetting({
|
|
success: (res) => {
|
|
if (res.authSetting[code] === false) {
|
|
wx.showModal({
|
|
title: `获取${name}失败`,
|
|
content: `获取${name}失败,请在【右上角】-小程序【设置】项中,将【${name}】开启。`,
|
|
confirmText: '去设置',
|
|
confirmColor: '#FA550F',
|
|
cancelColor: '取消',
|
|
success(res) {
|
|
if (res.confirm) {
|
|
wx.openSetting({
|
|
success(settinRes) {
|
|
if (settinRes.authSetting[code] === true) {
|
|
resolve();
|
|
} else {
|
|
console.warn('用户未打开权限', name, code);
|
|
reject();
|
|
}
|
|
},
|
|
});
|
|
} else {
|
|
reject();
|
|
}
|
|
},
|
|
fail() {
|
|
reject();
|
|
},
|
|
});
|
|
} else {
|
|
resolve();
|
|
}
|
|
},
|
|
fail() {
|
|
reject();
|
|
},
|
|
});
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
getPermission,
|
|
};
|