editMyself.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // pages/editMyself/editMyself.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. index: 0,
  8. array:['未知','男','女'],
  9. },
  10. changeHead:function(){
  11. var that = this
  12. wx.chooseImage({
  13. count: 1,
  14. sourceType:['album', 'camera'],
  15. success(res){
  16. console.log(JSON.stringify(res))
  17. that.setData({
  18. src: res.tempFilePaths[0]
  19. })
  20. }
  21. })
  22. },
  23. /**
  24. * 生命周期函数--监听页面加载
  25. */
  26. onLoad: function (options) {
  27. const sex = wx.getStorageSync('student').sex.substring(29,wx.getStorageSync('student').sex.length)
  28. let index = 0
  29. if( sex == 'bf7'){
  30. index = 0
  31. } else if( sex == 'fbc' ){
  32. index = 1
  33. } else if( sex == '098' ){
  34. index =2
  35. }
  36. this.setData({
  37. index,
  38. name: wx.getStorageSync('student').name,
  39. src: wx.getStorageSync('student').headImg
  40. })
  41. },
  42. /**
  43. * 生命周期函数--监听页面初次渲染完成
  44. */
  45. onReady: function () {
  46. },
  47. /**
  48. * 生命周期函数--监听页面显示
  49. */
  50. onShow: function () {
  51. },
  52. /**
  53. * 生命周期函数--监听页面隐藏
  54. */
  55. onHide: function () {
  56. },
  57. /**
  58. * 生命周期函数--监听页面卸载
  59. */
  60. onUnload: function () {
  61. },
  62. /**
  63. * 页面相关事件处理函数--监听用户下拉动作
  64. */
  65. onPullDownRefresh: function () {
  66. },
  67. /**
  68. * 页面上拉触底事件的处理函数
  69. */
  70. onReachBottom: function () {
  71. },
  72. /**
  73. * 用户点击右上角分享
  74. */
  75. onShareAppMessage: function () {
  76. }
  77. })