12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="flexe" style="padding: 20rpx;">
- <view class="" style="font-size: 0;">
- <image class="img" src="https://img0.baidu.com/it/u=4228009393,712063118&fm=253&fmt=auto&app=138&f=JPEG?w=667&h=500" mode=""></image>
- </view>
- <view class="rigth">
- <view class="title">
- 黄金会员
- </view>
- <view class="jifen">
- 我的积分 : 100
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive
- } from 'vue'
- import {
- HTTP
- } from '@/api/http.js'
- import {
- onShow,
- onLoad
- } from '@dcloudio/uni-app'
- import {
- jieqiFn
- } from '@/config' //返回节气样式(a,b),a是节气名称,b是类型,1是返回背景颜色,2是返回边框颜色,3是返回字体颜色
- </script>
- <style lang="scss" scoped>
- .img{
- width: 200rpx;
- height: 100rpx;
- margin-right: 16rpx;
- }
- .rigth{
-
- }
- </style>
|