role.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. this.setData({
  56. current: e.currentTarget.dataset.index
  57. })
  58. },
  59. /**
  60. * 获取美容师列表
  61. * api/mruser/role
  62. */
  63. getMruserRole() {
  64. get('api/mruser/role',{},(res) => {
  65. this.setData({
  66. list: res.data
  67. })
  68. })
  69. },
  70. /**
  71. * 提交
  72. */
  73. onSubmit() {
  74. // this
  75. // api/mruser/change_role
  76. let { current,list } = this.data;
  77. post('api/mruser/change_role',{
  78. role_id: list[current].id
  79. },(res) => {
  80. wx.showToast({
  81. title: res.msg,
  82. icon: 'none'
  83. })
  84. setTimeout(() => {
  85. wx.reLaunch({
  86. url: '/pages/home/home',
  87. })
  88. }, 1500);
  89. })
  90. }
  91. })