This commit is contained in:
lik
2026-05-29 20:30:42 +08:00
parent 659232cf77
commit 91ffaa62e7
28 changed files with 1270 additions and 98 deletions

128
pages/mine/about.js Normal file
View File

@@ -0,0 +1,128 @@
// pages/mine/about.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
},
// 复制内容到剪贴板
onCopy(e) {
const content = e.currentTarget.dataset.content;
wx.setClipboardData({
data: content,
success: () => {
wx.showToast({
title: '已复制',
icon: 'success',
duration: 1500
});
},
fail: () => {
wx.showToast({
title: '复制失败',
icon: 'none',
duration: 1500
});
}
});
},
// 拨打电话
onCallPhone(e) {
const phone = e.currentTarget.dataset.phone;
wx.makePhoneCall({
phoneNumber: phone,
fail: () => {
wx.showToast({
title: '拨号失败',
icon: 'none',
duration: 1500
});
}
});
},
// 点击用户协议
onTapAgreement() {
wx.navigateTo({
url: '/pages/escort/agreement'
});
},
// 点击隐私政策
onTapPrivacy() {
wx.showToast({
title: '功能开发中',
icon: 'none',
duration: 1500
});
},
// 点击更新日志
onTapUpdateLog() {
wx.showToast({
title: '功能开发中',
icon: 'none',
duration: 1500
});
}
});