会员列表,详情,充值,订单列表

This commit is contained in:
wwz
2025-03-01 14:38:02 +08:00
parent 0ab9235f6c
commit 04a84aa17f
33 changed files with 5665 additions and 982 deletions

View File

@@ -0,0 +1,38 @@
<template>
<view class="container">
<!-- 条形码 -->
<view class="barcode-container">
<text>条形码:</text>
</view>
<!-- 二维码 -->
<view class="qrcode-container">
<text>二维码:</text>
</view>
</view>
</template>
<script setup>
import {
ref
} from 'vue';
// 条形码和二维码的值
const barcodeValue = ref('1234567890');
const qrcodeValue = ref('https://www.example.com');
</script>
<style scoped>
.container {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.barcode-container,
.qrcode-container {
margin-bottom: 20px;
text-align: center;
}
</style>