role.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. import {
  2. get,
  3. post
  4. } from '../../utils/http';
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. current: 0,
  11. list: []
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.getMruserRole()
  18. },
  19. /**
  20. * 生命周期函数--监听页面初次渲染完成
  21. */
  22. onReady: function () {
  23. },
  24. /**
  25. * 生命周期函数--监听页面显示
  26. */
  27. onShow: function () {
  28. },
  29. /**
  30. * 生命周期函数--监听页面隐藏
  31. */
  32. onHide: function () {
  33. },
  34. /**
  35. * 生命周期函数--监听页面卸载
  36. */
  37. onUnload: function () {
  38. },
  39. /**
  40. * 页面相关事件处理函数--监听用户下拉动作
  41. */
  42. onPullDownRefresh: function () {
  43. },
  44. /**
  45. * 页面上拉触底事件的处理函数
  46. */
  47. onReachBottom: function () {
  48. },
  49. /**
  50. * 用户点击右上角分享
  51. */
  52. onShareAppMessage: function () {
  53. },
  54. onChangeRole(e) {
  55. let { list } = this.data;
  56. list.forEach((item,index) => {
  57. item.selected = 0
  58. })
  59. list[e.currentTarget.dataset.index].selected = 1
  60. this.setData({
  61. list,
  62. current: e.currentTarget.dataset.index
  63. })
  64. },
  65. /**
  66. * 获取美容师列表
  67. * api/mruser/role
  68. */
  69. getMruserRole() {
  70. let { current } = this.data;
  71. get('api/mruser/role',{},(res) => {
  72. // res.data.forEach((item,index) => {
  73. // if(item.) {
  74. // }
  75. // })
  76. console.log(res.data);
  77. this.setData({
  78. list: res.data
  79. })
  80. })
  81. },
  82. /**
  83. * 提交
  84. */
  85. onSubmit() {
  86. // this
  87. // api/mruser/change_role
  88. let { current,list } = this.data;
  89. post('api/mruser/change_role',{
  90. role_id: list[current].id
  91. },(res) => {
  92. wx.showToast({
  93. title: res.msg,
  94. icon: 'none'
  95. })
  96. setTimeout(() => {
  97. wx.reLaunch({
  98. url: '/pages/home/home',
  99. })
  100. }, 1500);
  101. })
  102. }
  103. })