216 lines
4.8 KiB
Plaintext
216 lines
4.8 KiB
Plaintext
<template>
|
||
<view class="verify-page">
|
||
|
||
<barcode
|
||
class="barcode-view"
|
||
autostart="true"
|
||
flash="false"
|
||
zoom="false"
|
||
frameColor="#FF4767" scanbarColor="#FF4767"
|
||
@marked="onScanCode">
|
||
</barcode>
|
||
|
||
<view class="full-mask"></view>
|
||
|
||
<view class="nav-bar" :style="{ paddingTop: statusBarHeight + 'px', height: (statusBarHeight + 44) + 'px' }">
|
||
<view class="back-btn" @tap="goBack">
|
||
<image class="back-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/ea671fc8-435e-46fe-ba69-6d728328149a.png"></image>
|
||
</view>
|
||
<text class="nav-title">扫码验券</text>
|
||
<view class="right-placeholder"></view>
|
||
</view>
|
||
|
||
<view class="bottom-bar">
|
||
<view class="action-btn" @tap="goToManualVerify">
|
||
<image class="btn-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/acb1ead0-d0d7-4db1-b779-7bb1cffa6594.png"></image>
|
||
<text class="btn-text">输入核销码</text>
|
||
</view>
|
||
|
||
<view class="action-btn" @tap="chooseFromAlbum">
|
||
<image class="btn-icon" src="https://mrrplus.oss-cn-beijing.aliyuncs.com/photo/system/7d6de32b-091d-4103-8138-14ae217e5f47.png"></image>
|
||
<text class="btn-text">相册</text>
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import request from "@/utils/request";
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
statusBarHeight: 44, // 默认状态栏高度
|
||
isProcessing: false // 防抖开关
|
||
}
|
||
},
|
||
onLoad() {
|
||
const sysInfo = uni.getSystemInfoSync();
|
||
if(sysInfo.statusBarHeight) {
|
||
this.statusBarHeight = sysInfo.statusBarHeight;
|
||
}
|
||
},
|
||
methods: {
|
||
goBack() {
|
||
uni.navigateBack();
|
||
},
|
||
|
||
// nvue 下 barcode 的回调事件叫 @marked
|
||
onScanCode(e) {
|
||
if (this.isProcessing) return;
|
||
this.isProcessing = true;
|
||
|
||
// 并且扫码获取的内容在 e.detail.message 里
|
||
const code = e.detail.message;
|
||
this.handleCodeResult(code);
|
||
},
|
||
|
||
// 统一处理扫码结果
|
||
handleCodeResult(code) {
|
||
if (!code) {
|
||
this.isProcessing = false;
|
||
return;
|
||
}
|
||
|
||
uni.showLoading({ title: '查询订单中...' });
|
||
|
||
request.post('/sj/poster/getOrderByCode', { server_code: code }).then(result => {
|
||
uni.hideLoading();
|
||
|
||
if (result.code === 200 && result.data) {
|
||
uni.showToast({ title: '扫码成功!', icon: 'none' });
|
||
const orderDataStr = encodeURIComponent(JSON.stringify(result.data));
|
||
uni.navigateTo({
|
||
url: `/pages/shop/verify/verify-order-detail?data=${orderDataStr}`
|
||
});
|
||
} else {
|
||
// 如果无效,立即退出页面回首页
|
||
uni.showToast({ title: result.msg, icon: 'none' });
|
||
|
||
// 延迟 500ms 让用户看到 Toast,然后自动退回主页
|
||
setTimeout(() => {
|
||
uni.navigateBack({ delta: 1 });
|
||
}, 500);
|
||
}
|
||
}).catch((err) => {
|
||
uni.hideLoading();
|
||
uni.showToast({ title: '请求失败,退出重试', icon: 'none' });
|
||
setTimeout(() => {
|
||
uni.navigateBack({ delta: 1 });
|
||
}, 800);
|
||
});
|
||
},
|
||
|
||
chooseFromAlbum() {
|
||
uni.chooseImage({
|
||
count: 1,
|
||
success: (res) => {
|
||
uni.scanCode({
|
||
onlyFromCamera: false,
|
||
scanType: ['qrCode'],
|
||
success: (scanRes) => {
|
||
this.handleCodeResult(scanRes.result);
|
||
}
|
||
});
|
||
}
|
||
});
|
||
},
|
||
|
||
goToManualVerify() {
|
||
uni.navigateTo({ url: '/pages/shop/verify/manual-verify' });
|
||
}
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<style>
|
||
.verify-page {
|
||
flex: 1;
|
||
background-color: #000000;
|
||
}
|
||
|
||
.barcode-view {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
|
||
.full-mask {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
background-color: rgba(0, 0, 0, 0.3);
|
||
}
|
||
|
||
.nav-bar {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding-left: 30rpx;
|
||
padding-right: 30rpx;
|
||
}
|
||
|
||
.back-btn {
|
||
width: 60rpx;
|
||
height: 88rpx;
|
||
justify-content: center;
|
||
align-items: flex-start;
|
||
}
|
||
|
||
.back-icon {
|
||
width: 18rpx;
|
||
height: 36rpx;
|
||
}
|
||
|
||
.nav-title {
|
||
font-size: 36rpx;
|
||
font-weight: bold;
|
||
color: #FFFFFF;
|
||
}
|
||
|
||
.right-placeholder {
|
||
width: 60rpx;
|
||
}
|
||
|
||
.bottom-bar {
|
||
position: absolute;
|
||
bottom: 80rpx;
|
||
left: 0;
|
||
right: 0;
|
||
height: 120rpx;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: space-around;
|
||
}
|
||
|
||
.action-btn {
|
||
flex-direction: row;
|
||
align-items: center;
|
||
justify-content: center;
|
||
width: 325rpx;
|
||
height: 105rpx;
|
||
background-color: rgba(0, 0, 0, 0.4);
|
||
border-radius: 20rpx;
|
||
}
|
||
|
||
.btn-icon {
|
||
width: 40rpx;
|
||
height: 38rpx;
|
||
margin-right: 16rpx;
|
||
}
|
||
|
||
.btn-text {
|
||
font-weight: 500;
|
||
font-size: 32rpx;
|
||
color: #FFFFFF;
|
||
}
|
||
</style> |