first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,113 @@
const {
index,
util
} = getApp().globalData
Page({
/**
* 页面的初始数据
*/
data: {
id: 0,
listInfo: {},
isShow: false
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
this.setData({ id: options.id })
this.GetInfo()
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
async GetInfo() {
let res = await index.info({
thing_id: this.data.id
});
console.log(res);
this.setData({
listInfo: res
})
},
iWant() {
if (this.data.listInfo.thing_status == 0) {
this.setData({ isShow: true })
} else {
wx.showToast({
title: '抱歉,已认领了哦 😁',
icon: 'none',
duration: 2000
})
}
},
showGallery() {
wx.previewImage({
current: 0,
urls: [ this.data.listInfo.thing_img ]
})
},
tellPhone() {
wx.makePhoneCall({
phoneNumber: this.data.listInfo.user_phone
})
},
onClose() {
this.setData({ isShow: false });
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})