32 lines
865 B
Plaintext
32 lines
865 B
Plaintext
<template>
|
|
<view style="margin: 20rpx ;" >
|
|
<view class="" style=" display: flex; align-items: center; justify-content: center; padding: 60rpx 0; border-radius: 20rpx; background-color: #fff; " >
|
|
<up-qrcode cid="ex2" :size="200" val="uview-plus" icon="/static/dele/dele1.jpg"></up-qrcode>
|
|
</view>
|
|
<view class="" style=" gap: 20rpx; margin-top: 20rpx; display: flex; align-items: center; background-color: #fff; border-radius: 15rpx;padding: 20rpx; " >
|
|
<up-icon size='20' name="info-circle"></up-icon>
|
|
<view class="" style="flex: 1; font-size: 28rpx; color: #666; ">
|
|
绑定用户,获取积分
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onShow, onLoad } from "@dcloudio/uni-app";
|
|
onLoad(() => {
|
|
|
|
});
|
|
|
|
onShow(() => {
|
|
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
page{
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
</style> |