1 Star 37 Fork 7

ganshisheng/302_微赞论坛小程序模板

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
ganshisheng 提交于 2020-06-10 14:16 . first commit
//app.js
App({
onLaunch: function () {
//调用API从本地缓存中获取数据
this.getTypes();
this.login();
},
login:function() {
var that = this;
wx.login({
success: function(res){
console.log(res);
wx.getUserInfo({
success: function(res){
}
})
}
})
},
decode:function(encryptedData, signature, iv) {
encryptedData = atob(encryptedData);
signature = atob(signature);
console.log(encryptedData);
console.log(signature);
},
getUserInfo:function(cb){
var that = this
if(this.globalData.userInfo){
typeof cb == "function" && cb(this.globalData.userInfo)
}else{
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
console.log(res);
that.globalData.userInfo = res.userInfo
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
})
}
},
getTypes: function() {
var that = this;
var types = [{
ArticleTypeID : 0,
ArticleTypeName : "全部"
},{
ArticleTypeID : 3132,
ArticleTypeName : "运营日报"
},{
ArticleTypeID : 875,
ArticleTypeName : "操作指南"
},{
ArticleTypeID : 2038,
ArticleTypeName : "常见问题"
},{
ArticleTypeID : 2033,
ArticleTypeName : "微赞故事"
},{
ArticleTypeID : 1,
ArticleTypeName : "更新进度"
}];
that.globalData.types = types;
},
getMoreArticle: function(pn, typeId, h, hongbao, rspan, cb) {
wx.request({
url: 'http://vzan.com/f/getarticlebottom-1?pageIndex=1&typeId=2038&h=0&hongbao=&from=qq&rspan=1',
data: {
pageIndex:pn,
typeId:typeId,
h:h,
hongbao:"",
from:"qq",
rspan:rspan
},
method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
header: {
"Content-Type":"application/json;charset=utf-8"
}, // 设置请求的 header
success: function(res){
console.log("request success");
if (typeof cb == "function") {
cb(res);
}
},
fail: function() {
// fail
},
complete: function() {
// complete
}
})
},
globalData:{
userInfo:null,
types:[],
voice:{}
},
setGlobalData: function(data) {
this.globalData = data;
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/ganshisheng/wxapp_302.git
[email protected]:ganshisheng/wxapp_302.git
ganshisheng
wxapp_302
302_微赞论坛小程序模板
master

搜索帮助