recorddetailsinfo.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // pages/record/recorddetailsinfo/recorddetailsinfo.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. id: 0,
  9. info: '',
  10. show:0,
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad: function (options) {
  16. this.setData({
  17. id:options.id,
  18. show:options.si?1:0
  19. })
  20. },
  21. /**
  22. * 生命周期函数--监听页面初次渲染完成
  23. */
  24. onReady: function () {
  25. },
  26. onClick(){
  27. wx.navigateBack({
  28. delta: 2 //想要返回的层级
  29. })
  30. },
  31. /**
  32. * 生命周期函数--监听页面显示
  33. */
  34. onShow: function () {
  35. this.getinfo()
  36. },
  37. getinfo(){
  38. let that = this
  39. wx.showLoading()
  40. app.api.useApi(app.globalData.baseAppUrl + "api/admin/sorting/pack/InventoryRecord", {id:that.data.id}, "get").then(function (res) {
  41. wx.hideLoading()
  42. if(res.code==200){
  43. that.setData({info: res.message.data})
  44. }
  45. }).catch(function (err) {
  46. console.log(222);
  47. })
  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. })