1 Star 0 Fork 5

li-cz/267_房贷计算器小程序模板

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
ganshisheng 提交于 2020-06-10 14:09 . first commit
var qcloud = require('./vendor/wxapp-client-sdk/index');
var config = require('./etc/config');
App({
globalData: {
bannerList: null,
areaList:null,
userInfo:null,
linkList:null,
indexArea:{hname:'',hprice:''},
},
onLaunch() {
qcloud.setLoginUrl(config.service.loginUrl);
this.getConfig();
},
getAppConfig: function(fn,bool) {
var that = this;
if(that.globalData.bannerList && that.globalData.linkList && !bool){
typeof fn == "function" && fn(that.globalData)
}else{
that.getConfig(function(data){
typeof fn == "function" && fn(data);
});
}
},
getConfig: function (fn) {
var that = this;
qcloud.request({
url: config.service.configUrl,
method: 'POST',
login: true,
success(res){
console.log('程序配置项', res);
let data=res.data.data;
if (res.data.success) {
that.globalData.bannerList=data.banner;
that.globalData.areaList=data.areaList;
that.globalData.userInfo=data.userInfo;
that.globalData.linkList=data.linkList;
typeof fn == "function" && fn(that.globalData);
}
}
});
},
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/licz2021/wxapp_267.git
git@gitee.com:licz2021/wxapp_267.git
licz2021
wxapp_267
267_房贷计算器小程序模板
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385