12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="records">
- <view class="records-list">
- <view class="records-list-item" v-for="(item, index) in list" :key="index">{{ item }}</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: ['运营概况', '统计报表', '运营分析']
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .records {
- padding: 40rpx 20rpx;
- &-list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- &-item {
- width: calc(50% - 18rpx);
- height: 200rpx;
- line-height: 200rpx;
- text-align: center;
- background-color: #2871FF;
- border-radius: 10rpx;
- color: #fff;
- font-size: 40rpx;
- font-family: PingFangSC-regular;
- margin-bottom: 36rpx;
- }
- }
- }
- </style>
|