编写会员列表详情

This commit is contained in:
duan
2024-05-27 17:36:40 +08:00
parent face0eeafb
commit e0781543b4
2 changed files with 58 additions and 8 deletions

View File

@@ -22,11 +22,25 @@
</view>
</view>
<view class="listStyle">
<image :src="request('./1.png')" style="width: 76rpx;height: 76rpx;float: left;" mode=""></image>
<view style="float: left;">
<text>阿什顿</text>
<text>阿什顿</text>
<text>阿什顿</text>
<image :src="require('./1.png')" style="width: 76rpx;height: 76rpx;float: left;" mode=""></image>
<view class="listrigth">
<view>尚美养储值卡</view>
<view>2023-04-21 10:32:44</view>
</view>
<view class="listrigth2">
<view>尚美养储值卡2</view>
<view>2023-04-21 10:32:44</view>
</view>
</view>
<view class="listStyle">
<image :src="require('./1.png')" style="width: 76rpx;height: 76rpx;float: left;" mode=""></image>
<view class="listrigth">
<view>尚美养储值卡</view>
<view>2023-04-21 10:32:44</view>
</view>
<view class="listrigth2">
<view>尚美养储值卡</view>
<view>2023-04-21 10:32:44</view>
</view>
</view>
</view>
@@ -36,10 +50,17 @@
export default {
data() {
return {
active: 1
active: 1,
list: []
}
},
onLoad() {
this.getlist()
},
methods: {
getlist() {
},
clickEvent(i) {
this.active = i
}
@@ -96,5 +117,34 @@
}
.listStyle {}
.listStyle {
padding: 28rpx;
width: 100%;
.listrigth,
.listrigth2 {
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 32rpx;
}
.listrigth {
>view {
font-weight: bold;
font-size: 32rpx;
color: #333333;
}
}
.listrigth2 {
margin-top: 6rpx;
>view {
font-weight: 500;
font-size: 24rpx;
color: #666666;
}
}
}
</style>