rechargeDel.js 308 B

123456789101112131415
  1. Page({
  2. data: {
  3. content:''
  4. },
  5. onLoad(options) {
  6. var app = getApp()
  7. app.requestHps('/system/dingUser/ding/getRechargeDetails', { rechargeId: options.id }).then(res => {
  8. if (res.data.code == 0) {
  9. this.setData({
  10. content: res.data.data
  11. })
  12. }
  13. })
  14. },
  15. });