detail.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // pages/my/account/detail/detail.js
  2. const app=getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. detail:""
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. this. getwallet(options.id)
  15. },
  16. getwallet(id) {
  17. var that = this;
  18. app.api.useApi(app.globalData.baseAppUrl + "api/wallet/desc", {
  19. id:id
  20. }, "get").then(function (res) {
  21. if (res.code != 200) {
  22. wx.showLoading({
  23. title: res.message.msg,
  24. })
  25. setTimeout(function () {
  26. wx.hideLoading({
  27. success: (res) => { },
  28. })
  29. }, 2000);
  30. } else {
  31. console.log(res.message.data);
  32. that.setData({
  33. detail:res.message.data.wallets
  34. })
  35. }
  36. }).catch(function (err) {
  37. console.log(222);
  38. })
  39. }
  40. })