card-mini/pages/serve/index/index.js

24 lines
433 B
JavaScript
Raw Normal View History

2021-08-12 09:22:40 +08:00
const app = getApp()
2021-07-20 15:45:29 +08:00
Page({
/**
* 页面的初始数据
*/
data: {
2021-08-12 09:22:40 +08:00
shopUrl: 'https://www.tenlion.com.cn',
imgUlr: app.urls.baseImgUrl
2021-07-20 15:45:29 +08:00
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
2021-08-12 09:22:40 +08:00
},
onPullDownRefresh() {
this.setData({
shopUrl: 'https://www.tenlion.com.cn'
})
wx.stopPullDownRefresh({})
2021-07-20 15:45:29 +08:00
}
})