index.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. // pages/myFinanceDetail/index.js
  2. const app = getApp()
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. nvabarData: {
  9. showCapsule: 0, //是否显示左上角图标,消息中心 1表示显示 0表示不显示
  10. showBack: 1, //返回
  11. title: '我的融资', //导航栏 中间的标题
  12. // 此页面 页面内容距最顶部的距离
  13. height: app.globalData.height * 2 + 20,
  14. },
  15. financeInfo: {},
  16. xqid: '',
  17. },
  18. call(e) {
  19. console.log(e.currentTarget.dataset.phone, "dayin")
  20. wx.makePhoneCall({
  21. phoneNumber: e.currentTarget.dataset.phone,
  22. })
  23. },
  24. loadData: function () {
  25. // wx.showLoading({
  26. // title: '加载中',
  27. // })
  28. console.log('xq', this.data.xqid)
  29. wx.request({
  30. method: "post",
  31. url: app.globalData.publicUrl + 'api/financial/intelligentDocking/dockingSearch',
  32. data: {
  33. id: this.data.xqid
  34. },
  35. success: (e) => {
  36. console.log('success', e);
  37. if (e.data.errcode == 0) {
  38. console.log(e.data.result[0]);
  39. this.setData({
  40. financeInfo: e.data.result[0],
  41. })
  42. // wx.hideLoading();
  43. } else {
  44. wx.showToast({
  45. title: e.data.details ? e.data.details : e.data.errmsg,
  46. icon: 'none',
  47. duration: 1500
  48. })
  49. }
  50. }
  51. })
  52. },
  53. // loadDetail: function () {
  54. // console.log(this.data.pid);
  55. // request.fetch({
  56. // url: 'api/financial/tPolicyInterpretation',
  57. // id: this.data.pid,
  58. // }).then((res) => {
  59. // if (res.data.data.image) {
  60. // res.data.data.image = request.imageUrl + res.data.data.image
  61. // }
  62. // if (res.data.data.publish_time) {
  63. // res.data.data.publish_time = this.getDate(res.data.data.publish_time, 'yyyy.MM.dd')
  64. // } else {
  65. // res.data.data.publish_time = '';
  66. // }
  67. // if (res.data.data.description) {
  68. // let reg = /src="/g;
  69. // res.data.data.description = res.data.data.description.replace(reg,'src="'+request.imageUrl)
  70. // }
  71. // this.setData({
  72. // policyDetail: res.data.data
  73. // });
  74. // }).catch((err) => {
  75. // console.log(err);
  76. // });
  77. // },
  78. /**
  79. * 生命周期函数--监听页面加载
  80. */
  81. onLoad: function (options) {
  82. this.setData({ // 设置页面列表的内容
  83. xqid: options.id,
  84. })
  85. this.loadData()
  86. },
  87. /**
  88. * 生命周期函数--监听页面初次渲染完成
  89. */
  90. onReady: function () {},
  91. /**
  92. * 生命周期函数--监听页面显示
  93. */
  94. onShow: function () {},
  95. /**
  96. * 生命周期函数--监听页面隐藏
  97. */
  98. onHide: function () {
  99. },
  100. /**
  101. * 生命周期函数--监听页面卸载
  102. */
  103. onUnload: function () {
  104. },
  105. /**
  106. * 页面相关事件处理函数--监听用户下拉动作
  107. */
  108. onPullDownRefresh: function () {
  109. },
  110. /**
  111. * 页面上拉触底事件的处理函数
  112. */
  113. onReachBottom: function () {
  114. },
  115. /**
  116. * 用户点击右上角分享
  117. */
  118. onShareAppMessage: function () {
  119. }
  120. })