todos-input.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. var sysT = require('../../../../../tool/sys-tool.js')
  2. var businessT = require('../../../../../tool/business-tool.js')
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. suffix: '',
  9. text: {
  10. placeholder: '',
  11. value: ''
  12. }
  13. },
  14. inputAction: function (sender) {
  15. this.data.text.value = sender.detail.value
  16. },
  17. submitAction: businessT.action(function (sender) {
  18. businessT.debugLog('sub')
  19. if (this.data.text.value == '') {
  20. swan.showToast({
  21. title: '请输入内容',
  22. icon: 'none'
  23. })
  24. return
  25. }
  26. var pages = getCurrentPages()
  27. pages[pages.length - 2].finishUploadMemo(this.data.text.value)
  28. swan.navigateBack({
  29. })
  30. }),
  31. /**
  32. * 生命周期函数--监听页面加载
  33. */
  34. onLoad: function (options) {
  35. swan.setNavigationBarTitle({
  36. title: options.t
  37. })
  38. this.data.text.placeholder = options.t
  39. this.data.adapter = {
  40. suffix: sysT.suffixOfClass(),
  41. }
  42. this.setData({
  43. text: this.data.text,
  44. adapter: this.data.adapter
  45. })
  46. },
  47. /**
  48. * 生命周期函数--监听页面初次渲染完成
  49. */
  50. onReady: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面显示
  54. */
  55. onShow: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面隐藏
  59. */
  60. onHide: function () {
  61. },
  62. /**
  63. * 生命周期函数--监听页面卸载
  64. */
  65. onUnload: function () {
  66. },
  67. /**
  68. * 页面相关事件处理函数--监听用户下拉动作
  69. */
  70. onPullDownRefresh: function () {
  71. },
  72. /**
  73. * 页面上拉触底事件的处理函数
  74. */
  75. onReachBottom: function () {
  76. },
  77. /**
  78. * 用户点击右上角分享
  79. */
  80. onShareAppMessage: function () {
  81. }
  82. })