123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <view v-if="isFirst">
- <Skeletons :loading="loading && isFirst" :animation="true" bg-color="#FFF" />
- <div class="skeleton_content u-skeleton">
- <div class="empty_box u-skeleton-fillet"></div>
- <div class="banner_box u-skeleton-fillet"></div>
- <div class="icon_box ">
- <div v-for="item in 4" class="icon_item">
- <div class="img u-skeleton-fillet"></div>
- <div class="text u-skeleton-fillet"></div>
- </div>
- </div>
- <div class="hot_box ">
- <div class="left u-skeleton-fillet"></div>
- <div class="right ">
- <div class="top u-skeleton-fillet"></div>
- <div class="bottom u-skeleton-fillet"></div>
- </div>
- </div>
- <div class="new_box ">
- <div v-for="item in 3" class="item u-skeleton-fillet"></div>
- </div>
- <div class="hot_box ">
- <div class="left u-skeleton-fillet"></div>
- <div class="right ">
- <div class="top u-skeleton-fillet"></div>
- <div class="bottom u-skeleton-fillet"></div>
- </div>
- </div>
- </div>
- </view>
- </template>
- <script>
- import Skeletons from '@/components/Skeleton'
- export default {
- name: 'Skeleton',
- components: { Skeletons },
- props: {
- loading: {
- type: Boolean,
- default: true
- },
- isFirst: {
- type: Boolean,
- default: true
- }
- },
- data() {
- return {}
- },
- methods: {}
- }
- </script>
- <style
- lang="scss"
- scoped
- >
- .skeleton_content {
- width: 100%;
- height: calc(100vh - 50px);
- overflow-y: hidden;
- box-sizing: border-box;
- .empty_box {
- width: 100%;
- height: 140rpx;
- }
- .banner_box {
- width: 100%;
- height: 320rpx;
- }
- .icon_box {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 30rpx 60rpx;
- box-sizing: border-box;
- .icon_item {
- width: 80rpx;
- .img {
- width: 100%;
- height: 80rpx;
- }
- .text {
- margin-top: 20rpx;
- width: 100%;
- height: 30rpx;
- }
- }
- }
- .hot_box {
- width: 100%;
- height: 390rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .left {
- width: 49%;
- height: 100%;
- }
- .right {
- width: 49%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .top,
- .bottom {
- width: 100%;
- height: 49%;
- }
- }
- }
- .new_box {
- width: 100%;
- height: 390rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .item {
- width: 30%;
- height: 100%;
- }
- }
- }
- </style>
|