第一次上传

This commit is contained in:
Ls
2026-03-09 16:39:03 +08:00
commit 3d9efaf15c
924 changed files with 326227 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<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>