|
|
@@ -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> |