zxl
4 天以前 874e9cce3b2f9b6649ab72047d98e4244a345b3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <view class="content">
    <view class="card">
      <text class="text">暂无数据</text>
    </view>
    <BottomTabBar active="mine" />
  </view>
</template>
 
<script>
import BottomTabBar from '@/components/BottomTabBar.vue'
export default {
  name: 'Pending',
  components: { BottomTabBar }
}
</script>
 
<style scoped>
.content { width: 100%; min-height: 100vh; background-color: #f5f7fa; padding-bottom: 120rpx; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 0 30rpx; height: 88rpx; background: linear-gradient(90deg, #1E88E5, #26A69A); color: #fff; }
.navbar-title { font-size: 36rpx; font-weight: 600; }
.card { background-color: #fff; margin: 20rpx; border-radius: 16rpx; padding: 24rpx; box-shadow: 0 2rpx 10rpx rgba(0,0,0,0.05); }
.text { font-size: 28rpx; color: #666; }
</style>