index.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. const util = require('../../../utils/util');
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. subImg: 'https://img.bbztx.com/miniProgram/challengeFamily/applyInvoicing/success.png',
  8. qrCodeImg: "https://img.bbztx.com/miniProgram/challengeFamily/fingerprint.png",
  9. rightImg: 'https://img.bbztx.com/miniProgram/challengeFamily/orderIcon4.png',
  10. qrCodeImg2: 'https://img.bbztx.com/miniProgram/challengeFamily/QRcode.png'
  11. },
  12. /**
  13. * 生命周期函数--监听页面加载
  14. */
  15. onLoad(options) {
  16. },
  17. // 跳转到开票记录页面
  18. goRecord() {
  19. util.ajax({
  20. func: "articleInvoice/getArticleInvoiceList",
  21. // data,
  22. load:false
  23. }, ({
  24. data,
  25. code
  26. }) => {
  27. if (code == 0) {
  28. console.log(data);
  29. let detail = JSON.stringify(data)
  30. // console.log(detail);
  31. wx.redirectTo({
  32. url: '/pages/order/invoicingRecord/index?detail=' + detail,
  33. })
  34. }
  35. })
  36. },
  37. /**
  38. * 生命周期函数--监听页面初次渲染完成
  39. */
  40. onReady() {
  41. },
  42. /**
  43. * 生命周期函数--监听页面显示
  44. */
  45. onShow() {
  46. },
  47. /**
  48. * 生命周期函数--监听页面隐藏
  49. */
  50. onHide() {
  51. },
  52. /**
  53. * 生命周期函数--监听页面卸载
  54. */
  55. onUnload() {
  56. },
  57. /**
  58. * 页面相关事件处理函数--监听用户下拉动作
  59. */
  60. onPullDownRefresh() {
  61. },
  62. /**
  63. * 页面上拉触底事件的处理函数
  64. */
  65. onReachBottom() {
  66. },
  67. /**
  68. * 用户点击右上角分享
  69. */
  70. onShareAppMessage() {
  71. }
  72. })