@antmove/alipay-wx
Version:
transform alipay miniprogram to wx miniprogram tool.
23 lines (21 loc) • 498 B
JavaScript
let jsonInfo = [
{
name: '全局配置',
type: 'globalconfig',
body: require('./globalconfig')
},
{
name: '页面配置',
type: 'pageconfig',
body: require('./pageconfig')
}
],
descObject = {};
jsonInfo.forEach(function (json) {
descObject = Object.assign(descObject, json.body);
});
module.exports = {
jsonInfo,
descObject,
wxVersion: '2.2.4'
};