enternext.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // pages/sorting/enternext/enternext.js
  2. const app =getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. id: 0,
  9. status: 0,
  10. iserr: false
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad(options) {
  16. if(options.status){
  17. this.setData({status: options.status})
  18. if(this.data.status!=0){
  19. this.setData({iserr: true})
  20. }
  21. console.log(this.data.status)
  22. }
  23. this.setData({id: options.id})
  24. },
  25. /**
  26. * 生命周期函数--监听页面初次渲染完成
  27. */
  28. onReady() {
  29. },
  30. /**
  31. * 生命周期函数--监听页面显示
  32. */
  33. onShow() {
  34. },
  35. signerr(){
  36. let that = this
  37. app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/entry/add_abnormal", {
  38. id: that.data.id,
  39. }, "post").then(function (res) {
  40. console.log(res);
  41. if (res.code != 200) {
  42. wx.showLoading({
  43. title: res.message.msg,
  44. })
  45. setTimeout(function () {
  46. wx.hideLoading();
  47. }, 1000);
  48. } else {
  49. wx.hideLoading();
  50. wx.showLoading({
  51. title: res.message.msg,
  52. })
  53. setTimeout(function () {
  54. wx.hideLoading();
  55. }, 1000);
  56. that.setData({iserr:true})
  57. }
  58. }).catch(function (err) {
  59. console.log(222);
  60. })
  61. },
  62. goback(e){
  63. let num = e.currentTarget.dataset.num
  64. wx.navigateBack({
  65. delta: num,
  66. })
  67. },
  68. goindex(){
  69. wx.switchTab({
  70. url: '/pages/tabber/home/index',
  71. })
  72. },
  73. /**
  74. * 生命周期函数--监听页面隐藏
  75. */
  76. onHide() {
  77. },
  78. /**
  79. * 生命周期函数--监听页面卸载
  80. */
  81. onUnload() {
  82. },
  83. /**
  84. * 页面相关事件处理函数--监听用户下拉动作
  85. */
  86. onPullDownRefresh() {
  87. },
  88. /**
  89. * 页面上拉触底事件的处理函数
  90. */
  91. onReachBottom() {
  92. },
  93. /**
  94. * 用户点击右上角分享
  95. */
  96. onShareAppMessage() {
  97. }
  98. })