mirror of
https://shylinux.com/x/volcanos
synced 2025-04-26 01:04:06 +08:00
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
const utils = require("../../utils/util.js")
|
|
const app = getApp()
|
|
|
|
Page({
|
|
data: {
|
|
cmd: "",
|
|
river: "",
|
|
msg: {append: ["hi", "he"], hi: [1, 2], he: [3, 4]},
|
|
},
|
|
|
|
onClick: function(event) {var page = this, index = event.currentTarget.dataset.index
|
|
app.jumps("/pages/action/action", {river: page.data.river, storm: page.data.msg.key[index]})
|
|
},
|
|
onFocus: function(event) {},
|
|
onInput: function(event) {},
|
|
onEnter: function(event) {var page = this
|
|
app.userinfo(function(user) {
|
|
app.request("mp/login/", {cmds: ["cmds", event.detail.value]}, function(msg) {
|
|
page.setData({cmd: "", msg: msg})
|
|
})
|
|
})
|
|
},
|
|
onLoad: function (options) {var page = this
|
|
page.data.river = options.river
|
|
app.userinfo(function(userinfo) {
|
|
app.request("storm", {cmds: [options.river]}, function(msg) {
|
|
page.setData({msg: msg})
|
|
if (msg[msg.append[0]].length == 1) {
|
|
app.jumps("/pages/action/action", {river: options.river, storm: page.data.msg.key[0]})
|
|
}
|
|
})
|
|
})
|
|
},
|
|
onReady: function () {},
|
|
onShow: function (args) {
|
|
},
|
|
onHide: function () {},
|
|
onUnload: function () {},
|
|
onPullDownRefresh: function () {},
|
|
onReachBottom: function () {},
|
|
onShareAppMessage: function () {}
|
|
})
|