project:强制覆盖代码,更新.gitignore文件内容

This commit is contained in:
2025-09-16 17:23:51 +08:00
parent ab9a7279f5
commit 5ad77a857c
97 changed files with 2295 additions and 1751 deletions
+7 -6
View File
@@ -125,7 +125,7 @@
</view>
<!-- <view class="" style="align-items: center;align-content: center;text-align: center;line-height: 50rpx;"
@click="handleRent('wx-pay')">
无法免押点这里></view> -->
无法免押点这里</view> -->
</view>
<!-- 手机号授权弹窗 -->
@@ -195,7 +195,7 @@
const showPhoneAuthPopup = ref(false)
// 生命周期 onLoad 钩子
onLoad((options) => {
onLoad(async(options) => {
if (options.deviceNo != uni.getStorageSync('deviceId') || !uni.getStorageSync('deviceId')) {
deviceId.value = options.deviceNo
uni.setStorageSync('deviceId', options.deviceNo)
@@ -203,16 +203,17 @@
deviceId.value = uni.getStorageSync('deviceId')
// uni.removeStorageSync('deviceId')
}
checkOrderStatus()
await checkOrderStatus()
await fetchDeviceInfo()
})
onMounted(async () => {
await checkUserPhone()
})
onShow(async () => {
await fetchDeviceInfo()
})
// onShow(async () => {
// await fetchDeviceInfo()
// })
const checkUserPhone = async () => {
try {