Browse Source

暂无权益提示

yxb
yangteng 4 months ago
parent
commit
f496d2210d
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      subpackage/service/equityList/equityList.vue

+ 6
- 2
subpackage/service/equityList/equityList.vue View File

@@ -1,5 +1,5 @@
<template>
<view>
<view v-if="listData.length>0">
<view v-for="(item, index) in listData" :key="index" @click="onClick(item)" :data-code="item" class="item"
style="justify-content: flex-start; display: flex; font-size: 28rpx; min-height: 20px; background-color: #22dbc8; color: white; border-radius: 20rpx; padding: 20px; margin: 20px;">
<view style="display: flex; flex-direction: column; flex: 1;">
@@ -8,6 +8,7 @@
<view>></view>
</view>
</view>
<view v-else class="no">暂无权益</view>
</template>
<script setup lang='ts'>
import {
@@ -45,5 +46,8 @@
}
</script>
<style lang='scss' scoped>

.no{
text-align: center;
margin-top: 200rpx;
}
</style>

Loading…
Cancel
Save