saleList.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // pages/invoice/saleList/saleList.js
  2. const app=getApp();
  3. const api=app.api;
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. id:null,
  10. chooseIndex:null,
  11. list:[]
  12. },
  13. /**
  14. * 生命周期函数--监听页面加载
  15. */
  16. onLoad: function (options) {
  17. this.setData({
  18. id:options.id||null
  19. })
  20. },
  21. /**
  22. * 生命周期函数--监听页面初次渲染完成
  23. */
  24. onReady: function () {
  25. },
  26. /**
  27. * 生命周期函数--监听页面显示
  28. */
  29. onShow: function () {
  30. this.getData()
  31. },
  32. getData(){
  33. app.post(api.querySale).then(res=>{
  34. console.log(res);
  35. this.setData({
  36. list:res.data||[]
  37. })
  38. })
  39. },
  40. chooseSale(e){
  41. const {index}=e.currentTarget.dataset;
  42. this.setData({
  43. chooseIndex:index,
  44. id:index
  45. });
  46. wx.setStorageSync('saleInfo',this.data.list[index]);
  47. wx.navigateBack();
  48. },
  49. editSale:function(e){
  50. const {id}=e.currentTarget.dataset;
  51. wx.navigateTo({
  52. url:`/pages/invoice/editSale/editSale?id=${id}`
  53. })
  54. },
  55. removeSale:function(e){
  56. const {id}=e.currentTarget.dataset;
  57. app.post(api.removeSale,{
  58. saleId:id
  59. }).then(res=>{
  60. wx.showToast({
  61. title: '删除成功',
  62. duration: 2000
  63. });
  64. this.getData()
  65. })
  66. },
  67. /**
  68. * 生命周期函数--监听页面隐藏
  69. */
  70. onHide: function () {
  71. },
  72. /**
  73. * 生命周期函数--监听页面卸载
  74. */
  75. onUnload: function () {
  76. },
  77. /**
  78. * 页面相关事件处理函数--监听用户下拉动作
  79. */
  80. onPullDownRefresh: function () {
  81. },
  82. /**
  83. * 页面上拉触底事件的处理函数
  84. */
  85. onReachBottom: function () {
  86. },
  87. /**
  88. * 用户点击右上角分享
  89. */
  90. onShareAppMessage: function () {
  91. }
  92. })