recommendRule.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // pages/recommendRule/recommendRule.js
  2. import {
  3. get,
  4. post
  5. } from '../../utils/http'
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. recommendRuleData:{},
  12. notTrueBtn:false
  13. },
  14. //获取当前推荐原则
  15. recommendRule() {
  16. get('/v2/api/user/recommend_rule', {}, res => {
  17. this.setData({
  18. recommendRuleData:res.data
  19. })
  20. })
  21. },
  22. submits() {
  23. post('/v2/api/user/recommend_rule', {}, res => {
  24. wx.redirectTo({
  25. url: '/pages/faceDetectionDetails/faceDetectionDetails',
  26. })
  27. })
  28. },
  29. /**
  30. * 生命周期函数--监听页面加载
  31. */
  32. onLoad: function (options) {
  33. console.log(options,'options');
  34. this.setData({
  35. notTrueBtn:options.notTrueBtn
  36. })
  37. this.recommendRule()
  38. },
  39. /**
  40. * 生命周期函数--监听页面初次渲染完成
  41. */
  42. onReady: function () {
  43. },
  44. /**
  45. * 生命周期函数--监听页面显示
  46. */
  47. onShow: function () {
  48. },
  49. /**
  50. * 生命周期函数--监听页面隐藏
  51. */
  52. onHide: function () {
  53. },
  54. /**
  55. * 生命周期函数--监听页面卸载
  56. */
  57. onUnload: function () {
  58. },
  59. /**
  60. * 页面相关事件处理函数--监听用户下拉动作
  61. */
  62. onPullDownRefresh: function () {
  63. },
  64. /**
  65. * 页面上拉触底事件的处理函数
  66. */
  67. onReachBottom: function () {
  68. },
  69. /**
  70. * 用户点击右上角分享
  71. */
  72. onShareAppMessage: function () {
  73. }
  74. })