This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop-wechat/utils/extend/sharing.js
2020-04-25 22:59:04 +08:00

17 lines
244 B
JavaScript

let App = getApp();
/**
* 拼团扩展类
*/
module.exports = {
/**
* 获取拼团设置
*/
getSetting(callback) {
App._get('sharing.setting/getAll', {}, function(result) {
callback(result.data.setting);
});
},
};