2024-05-28 09:34:09 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="content">
|
|
|
|
|
<view class="container">
|
|
|
|
|
<headers :titles="titles"><u-icon name="arrow-left" color="#fff" size="22"></u-icon></headers>
|
|
|
|
|
|
2024-05-28 10:12:15 +08:00
|
|
|
|
<view class="box-">
|
|
|
|
|
<view class="title_">扫码成为京博加油站会员</view>
|
|
|
|
|
<view
|
|
|
|
|
style="background: #fff;width: 215px; height: 220px; border-radius: 8px ; margin: 15px auto; box-sizing: border-box; padding-top: 10px; ">
|
|
|
|
|
<canvas id="qrcode" canvas-id="qrcode"
|
|
|
|
|
style="width: 200px;height: 200px; margin: 0px auto; "></canvas>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="title_">长按识别领取会员卡</view>
|
2024-05-28 09:34:09 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="p-bottom">
|
|
|
|
|
<view class="anniu" @click="goback()">
|
2024-05-28 10:12:15 +08:00
|
|
|
|
手动添加
|
2024-05-28 09:34:09 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import headers from '../../components/header/headers.vue'
|
2024-05-28 10:12:15 +08:00
|
|
|
|
import UQRCode from '../../uni_modules/Sansnn-uQRCode/js_sdk/uqrcode/uqrcode.js';
|
2024-05-28 09:34:09 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
titles: "新增会员",
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onShow() {
|
2024-05-28 10:12:15 +08:00
|
|
|
|
this.onReady()
|
2024-05-28 09:34:09 +08:00
|
|
|
|
// this.actList = ["1", "1", "1", "1", "1", ]
|
|
|
|
|
// this.status = "nomore" 底部刷新结束
|
|
|
|
|
},
|
|
|
|
|
onPullDownRefresh() {
|
|
|
|
|
console.log("刷新");
|
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
|
},
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
// this.show = true
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
console.log("加载执行");
|
|
|
|
|
}, 2000)
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
headers
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-05-28 10:12:15 +08:00
|
|
|
|
onReady() {
|
|
|
|
|
// 获取uQRCode实例
|
|
|
|
|
var qr = new UQRCode();
|
|
|
|
|
// 设置二维码内容
|
|
|
|
|
qr.data = "https://uqrcode.cn/doc";
|
|
|
|
|
// 设置二维码大小,必须与canvas设置的宽高一致
|
|
|
|
|
qr.size = 200;
|
|
|
|
|
// 调用制作二维码方法
|
|
|
|
|
qr.make();
|
|
|
|
|
// 获取canvas上下文
|
|
|
|
|
var canvasContext = uni.createCanvasContext('qrcode', this); // 如果是组件,this必须传入
|
|
|
|
|
// 设置uQRCode实例的canvas上下文
|
|
|
|
|
qr.canvasContext = canvasContext;
|
|
|
|
|
// 调用绘制方法将二维码图案绘制到canvas上
|
|
|
|
|
qr.drawCanvas();
|
|
|
|
|
},
|
2024-05-28 09:34:09 +08:00
|
|
|
|
goback() {
|
2024-05-28 10:12:15 +08:00
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pagesHome/AddVip/AddVip'
|
|
|
|
|
})
|
2024-05-28 09:34:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.content {
|
|
|
|
|
background: #fff;
|
|
|
|
|
// background: linear-gradient(180deg, #B2D2FC 0%, #B2D2FC 14%, rgba(255, 255, 255, 0.84) 24%, rgba(255, 255, 255, 0.84) 100%);
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
padding-top: 88px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img-box {
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-28 10:12:15 +08:00
|
|
|
|
|
|
|
|
|
.p-bottom {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 68px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.anniu {
|
|
|
|
|
height: 40px;
|
|
|
|
|
background: #0864E9;
|
|
|
|
|
width: 80%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
margin: 5px auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.box- {
|
|
|
|
|
width: 95%;
|
|
|
|
|
margin: 15px auto;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: #0864E9;
|
|
|
|
|
height: 400px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title_ {
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
2024-05-28 09:34:09 +08:00
|
|
|
|
</style>
|