var sysT = require('../../../../../tool/sys-tool.js') var businessT = require('../../../../../tool/business-tool.js') Page({ /** * 页面的初始数据 */ data: { suffix: '', text: { placeholder: '', value: '' } }, inputAction: function (sender) { this.data.text.value = sender.detail.value }, submitAction: businessT.action(function (sender) { businessT.debugLog('sub') if (this.data.text.value == '') { swan.showToast({ title: '请输入内容', icon: 'none' }) return } var pages = getCurrentPages() pages[pages.length - 2].finishUploadMemo(this.data.text.value) swan.navigateBack({ }) }), /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { swan.setNavigationBarTitle({ title: options.t }) this.data.text.placeholder = options.t this.data.adapter = { suffix: sysT.suffixOfClass(), } this.setData({ text: this.data.text, adapter: this.data.adapter }) }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { } })