mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
智慧宿舍系统小程序
This commit is contained in:
8
wechat/miniprogram/libs/wx-promisify.js
Normal file
8
wechat/miniprogram/libs/wx-promisify.js
Normal file
@@ -0,0 +1,8 @@
|
||||
module.exports = api => (object, ...params) => new Promise((resolve, reject) => {
|
||||
if (api) {
|
||||
api.call(wx, { ...object, success: resolve, fail: reject }, ...params);
|
||||
} else {
|
||||
console.error('调用不支持的 API');
|
||||
reject({ errCode: 'WXAPI_NOT_SUPPORTED' });
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user