success.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // pages/taxDisputes/taxDisputesPages/success/success.js
  2. import {
  3. canalReserve
  4. } from "../../../../apis/sfzy"
  5. Page({
  6. /**
  7. * 页面的初始数据
  8. */
  9. data: {
  10. infos: {}
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad(options) {
  16. let that = this
  17. let infos = wx.getStorageSync('SFZY_YY_DATAS')
  18. if (infos) {
  19. that.setData({
  20. infos: infos
  21. })
  22. }
  23. wx.removeStorageSync('SFZY_YY_DATAS')
  24. },
  25. cancle() {
  26. let that = this
  27. wx.showLoading({
  28. title: '正在取消...',
  29. })
  30. canalReserve({
  31. yyLogId: that.data.infos.yyLogId
  32. }).then(res => {
  33. wx.hideLoading()
  34. if (res.code == 200) {
  35. wx.showToast({
  36. title: '取消成功',
  37. duration: 2000
  38. })
  39. setTimeout(() => {
  40. wx.navigateBack()
  41. }, 2000);
  42. } else {
  43. wx.showToast({
  44. title: res.msg || res.message,
  45. icon: "none",
  46. duration: 5000
  47. })
  48. }
  49. })
  50. },
  51. backIndex() {
  52. wx.switchTab({
  53. url: '../../../index/index',
  54. })
  55. },
  56. /**
  57. * 生命周期函数--监听页面初次渲染完成
  58. */
  59. onReady() {
  60. },
  61. /**
  62. * 生命周期函数--监听页面显示
  63. */
  64. onShow() {
  65. },
  66. /**
  67. * 生命周期函数--监听页面隐藏
  68. */
  69. onHide() {
  70. },
  71. /**
  72. * 生命周期函数--监听页面卸载
  73. */
  74. onUnload() {
  75. },
  76. /**
  77. * 页面相关事件处理函数--监听用户下拉动作
  78. */
  79. onPullDownRefresh() {
  80. },
  81. /**
  82. * 页面上拉触底事件的处理函数
  83. */
  84. onReachBottom() {
  85. },
  86. /**
  87. * 用户点击右上角分享
  88. */
  89. onShareAppMessage() {
  90. }
  91. })