operationOverview.vue 765 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="records">
  3. <view class="records-list">
  4. <view class="records-list-item" v-for="(item, index) in list" :key="index">{{ item }}</view>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. list: ['运营概况', '统计报表', '运营分析']
  13. }
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .records {
  21. padding: 40rpx 20rpx;
  22. &-list {
  23. display: flex;
  24. flex-wrap: wrap;
  25. justify-content: space-between;
  26. &-item {
  27. width: calc(50% - 18rpx);
  28. height: 200rpx;
  29. line-height: 200rpx;
  30. text-align: center;
  31. background-color: #2871FF;
  32. border-radius: 10rpx;
  33. color: #fff;
  34. font-size: 40rpx;
  35. font-family: PingFangSC-regular;
  36. margin-bottom: 36rpx;
  37. }
  38. }
  39. }
  40. </style>