123456789101112131415161718192021222324252627282930313233 |
- //index.js
- //获取应用实例
- const app = getApp()
- Page({
- data: {
- carInfo: {},
- // tab
- active: 0,
- // 是否可以领取积分
- disabled: false
- },
- //事件处理函数
- receiveBtn: function () {
- wx.showToast({
- title: '领取积分成功',
- icon: 'success',
- duration: 2000
- })
- },
- onLoad: function () {
- // 查询信息
- wx.request({
- url: app.globalData.publicUrl + '/api/htyd/config/car',
- method: "get",
- data: {},
- success: (res) => {
- console.log(res.data.data);
- this.setData({ carInfo: res.data.data })
- }
- })
- },
- })
|