加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
icssoa 提交于 2018-08-13 03:19 . 初始化
import op from "./modules/op.js";
import api from "./api/index.js";
class Thread {
constructor() {
Object.assign(this, {
op,
api
});
}
}
export default {
render(struct) {
const App = getApp()
const common = {
onPullDownRefresh() {
wx.stopPullDownRefresh()
},
_socket: {
status: false,
disconnect: false
},
bindGetUserInfo({
detail
}) {
this.setData({
_userInfo: detail.userInfo
})
App.globalData.userInfo = detail.userInfo
},
userInfoReady() {
App.userInfoReadyCallback = res => {
this.setData({
_userInfo: res.userInfo
})
}
}
}
const ms = Object.assign.apply(this, [new Thread(), common].concat(struct))
ms.temp = {}
ms.onLoad = function(options = {}) {
this.setData({
_userInfo: App.globalData.userInfo
})
if (struct.onLoad) struct.onLoad.call(this, options)
}
ms._onInput = function(e) {
const [a, b] = e.target.dataset.key.split('.')
const value = e.detail.value
this.data[a][b] = value
this.setData(this.data)
return value
}
Page(ms);
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化