123456789101112131415161718192021222324252627 |
- const app = getApp()
- Page({
- data: {
- value: '',
- isIos: app.globalData.isIOS
- },
- onLoad(options) {
- },
- sendReply() {
- if (!this.data.value) {
- return
- }
- },
- bindKeyInput(e) {
- this.setData({
- value: e.detail.value
- })
- },
- jumpUserInfo({
- currentTarget
- }) {
- wx.navigateTo({
- url: `/pages/personal/index?uid=${currentTarget.dataset.uid}&type=user`,
- })
- },
- })
|