info.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // pages/contest/contest.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. sexList: [{label:'男',value:1},{label:'女',value:2}],
  8. form: {}
  9. },
  10. changeInput (e) {
  11. const id = e.currentTarget.id;
  12. const value = e.detail.value;
  13. this.setData({
  14. ['form.'+id]: value
  15. })
  16. },
  17. bindAddrChange (e) {
  18. const id = e.currentTarget.id;
  19. const value = e.detail.value
  20. this.setData({
  21. ['form.'+id]: value.join(' ')
  22. })
  23. },
  24. bindPickerChange (e) {
  25. const id = e.currentTarget.id;
  26. const value = e.detail.value
  27. this.setData({
  28. ['form.'+id]: this.data.sexList[value].value
  29. })
  30. },
  31. /**
  32. * 生命周期函数--监听页面加载
  33. */
  34. onLoad: function (options) {
  35. },
  36. /**
  37. * 生命周期函数--监听页面初次渲染完成
  38. */
  39. onReady: function () {
  40. },
  41. /**
  42. * 生命周期函数--监听页面显示
  43. */
  44. onShow: function () {
  45. },
  46. /**
  47. * 生命周期函数--监听页面隐藏
  48. */
  49. onHide: function () {
  50. },
  51. /**
  52. * 生命周期函数--监听页面卸载
  53. */
  54. onUnload: function () {
  55. },
  56. /**
  57. * 页面相关事件处理函数--监听用户下拉动作
  58. */
  59. onPullDownRefresh: function () {
  60. },
  61. /**
  62. * 页面上拉触底事件的处理函数
  63. */
  64. onReachBottom: function () {
  65. },
  66. /**
  67. * 用户点击右上角分享
  68. */
  69. onShareAppMessage: function () {
  70. }
  71. })