exchangeList.js 278 B

1234567891011121314151617181920
  1. //index.js
  2. //获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. exchangeList: [
  7. {
  8. type: '微信',
  9. number: '1200.00',
  10. create_time: '2020-12-12',
  11. status: '已处理',
  12. },
  13. ]
  14. },
  15. //提交
  16. onLoad: function () {
  17. },
  18. })