cell.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // pages/tabber/news/index.js
  2. const app=getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. selectInfo: {},
  9. show:false,
  10. id:0
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad: function (options) {
  16. this.setData({
  17. id:options.id,
  18. })
  19. this.gettaskdetail(options.id)
  20. },
  21. /**
  22. * 生命周期函数--监听页面初次渲染完成
  23. */
  24. onReady: function () {
  25. },
  26. show:function(){
  27. if(this.data.show){
  28. this.setData({
  29. show:false
  30. })
  31. }else{
  32. this.setData({
  33. show:true
  34. })
  35. }
  36. },
  37. gettaskdetail(id){
  38. var that=this
  39. app.api.useApi(app.globalData.baseAppUrl + "api/admin/BinDevicesList", {
  40. id:id,
  41. }, "post").then(function (res) {
  42. console.log(res);
  43. if (res.code != 200) {
  44. wx.showLoading({
  45. title: res.message.msg,
  46. })
  47. setTimeout(function () {
  48. wx.hideLoading();
  49. }, 1000);
  50. } else {
  51. wx.hideLoading();
  52. that.setData({
  53. taskInfo:res.message.data
  54. })
  55. }
  56. }).catch(function (err) {
  57. console.log(222);
  58. })
  59. },
  60. goto(){
  61. wx.navigateTo({
  62. url: '/pages/cabinet/orderNum/orderNum?id='+this.data.id,
  63. })
  64. }
  65. })