C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
273 B

  1. let Http = require('../../../utils/http.js')
  2. Page({
  3. data: {
  4. list:{}
  5. },
  6. onLoad(e) {
  7. console.log(this.data)
  8. Http.getResquest('/wxCoupon/findById','加载中',{
  9. id: e.id
  10. },(res)=>{
  11. this.setData({
  12. list: res.data
  13. })
  14. })
  15. }
  16. })