VehicleListDetail.js 1.1 KB
import {
  request
} from "../../request/index.js"
const a = getApp()
Page({
  data: {
    imagesUrl: a.globalData.baseUrl,
    id: '',
    storeList: '',
  },

  /**
   * 生命周期函数--监听页面加载
   */
  onLoad: function (options) {
    this.setData({
      id: options.id
    })
  },

  /**
   * 生命周期函数--监听页面初次渲染完成
   */
  onReady: function () {

  },

  /**
   * 生命周期函数--监听页面显示
   */
  onShow: function () {
    this.getStoreList()
  },
  async getStoreList() { // 
    let that = this;
    const {
      data: {
        data
      }
    } = await request({
      url: 'api/shop4s/carListInfo',
      data: {
        id: that.data.id
      }
    })
    that.setData({
      storeList: data,
      storeListCar: data.list
    })
    console.log(that.data.storeList);
  },

  bindMakePhone(e) {
    console.log(e);
    let phone = e.currentTarget.dataset.phone
    wx.makePhoneCall({
      phoneNumber: phone
    })
  },
  goToPay(e) {
    let id = e.currentTarget.dataset.id
    wx.navigateTo({
      url: '/pages/confirmStoreOrder/confirmStoreOrder?id=' + id + '&goto==2'
    })
  }
})