fix:新增电话号码授权,修复订单创建/取消时用户手机消失的情况
This commit is contained in:
+23
-11
@@ -104,6 +104,27 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 手机号授权弹窗 -->
|
||||
<view class="phone-auth-popup" v-if="showPhoneAuthPopup">
|
||||
<view class="popup-mask" @click.stop="showPhoneAuthPopup = false"></view>
|
||||
<view class="popup-content">
|
||||
<view class="popup-header">
|
||||
<text class="popup-title">授权获取手机号</text>
|
||||
</view>
|
||||
<view class="popup-body">
|
||||
<view class="auth-desc">
|
||||
<text>为了提供更好的服务和紧急联系,需要授权获取您的手机号</text>
|
||||
</view>
|
||||
<button class="auth-btn" open-type="getPhoneNumber" @getphonenumber="onGetPhoneNumber">
|
||||
<text>一键获取手机号</text>
|
||||
</button>
|
||||
<view class="auth-cancel" @click="showPhoneAuthPopup = false">
|
||||
<text>暂不授权</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@@ -131,8 +152,6 @@
|
||||
console.log(scanResult.path);
|
||||
|
||||
let deviceNo = getQueryString(scanResult.path, 'deviceNo')
|
||||
console.log('扫码路径:', scanResult.path)
|
||||
console.log('解析到的设备号:', deviceNo)
|
||||
|
||||
if (!deviceNo) {
|
||||
uni.showToast({
|
||||
@@ -144,7 +163,7 @@
|
||||
|
||||
// 直接在当前页面查询是否有使用中的订单,避免跳转到中间页面
|
||||
if (!uni.getStorageSync('token')) {
|
||||
await wxLogin()
|
||||
await wxLogin()
|
||||
}
|
||||
|
||||
// 检查是否有使用中的订单
|
||||
@@ -157,13 +176,10 @@
|
||||
}
|
||||
})
|
||||
|
||||
console.log('使用中订单检查结果:', JSON.stringify(inUseRes))
|
||||
|
||||
if (inUseRes.statusCode == 200 && inUseRes.data.code == 200 && inUseRes.data.data) {
|
||||
// 存在使用中的订单,跳转到归还页面
|
||||
const inUseOrder = inUseRes.data.data
|
||||
console.log('检测到使用中订单,准备跳转:', inUseOrder)
|
||||
|
||||
|
||||
// 直接使用reLaunch而不是navigateTo以确保页面跳转
|
||||
uni.reLaunch({
|
||||
url: `/pages/return/index?orderId=${inUseOrder.orderId}&deviceId=${deviceNo || inUseOrder.deviceNo}`
|
||||
@@ -187,14 +203,10 @@
|
||||
if (orderRes.statusCode == 200 && orderRes.data.code == 200 && orderRes.data.data) {
|
||||
// 存在待支付订单,跳转到支付页面
|
||||
const unpaidOrder = orderRes.data.data
|
||||
console.log('检测到待支付订单,准备跳转:', unpaidOrder)
|
||||
uni.navigateTo({
|
||||
url: `/pages/order/payment?orderId=${unpaidOrder.orderId}`
|
||||
})
|
||||
} else {
|
||||
// 修改:直接获取设备信息,而不是跳转到详情页面
|
||||
console.log('无待支付订单,获取设备信息, deviceNo:', deviceNo)
|
||||
|
||||
try {
|
||||
// 获取设备信息
|
||||
const deviceInfoRes = await getDeviceInfo(deviceNo)
|
||||
|
||||
Reference in New Issue
Block a user