You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.9 KiB
64 lines
2.9 KiB
10 months ago
|
<template>
|
||
|
<uni-shadow-root class="vant-skeleton-index"><view v-if="loading" :class="'custom-class '+(utils.bem('skeleton', [{animate}]))">
|
||
|
<view v-if="avatar" :class="utils.bem('skeleton__avatar', [avatarShape])" :style="'width:' + avatarSize + ';height:' + avatarSize"></view>
|
||
|
<view :class="utils.bem('skeleton__content')">
|
||
|
<view v-if="title" :class="utils.bem('skeleton__title')" :style="'width:' + titleWidth"></view>
|
||
|
<view v-for="(item,index) in (row)" :key="item.index" :class="utils.bem('skeleton__row')" :style="'width:' + (isArray ? rowWidth[index] : rowWidth)"></view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view v-else :class="utils.bem('skeleton__content')">
|
||
|
<slot></slot>
|
||
|
</view></uni-shadow-root>
|
||
|
</template>
|
||
|
<wxs src="../wxs/utils.wxs" module="utils"></wxs>
|
||
|
<script>
|
||
|
|
||
|
global['__wxVueOptions'] = {components:{}}
|
||
|
|
||
|
global['__wxRoute'] = 'vant/skeleton/index'
|
||
|
import { VantComponent } from '../common/component';
|
||
|
VantComponent({
|
||
|
props: {
|
||
|
row: {
|
||
|
type: Number,
|
||
|
value: 0
|
||
|
},
|
||
|
title: Boolean,
|
||
|
avatar: Boolean,
|
||
|
loading: {
|
||
|
type: Boolean,
|
||
|
value: true
|
||
|
},
|
||
|
animate: {
|
||
|
type: Boolean,
|
||
|
value: true
|
||
|
},
|
||
|
avatarSize: {
|
||
|
type: String,
|
||
|
value: '32px'
|
||
|
},
|
||
|
avatarShape: {
|
||
|
type: String,
|
||
|
value: 'round'
|
||
|
},
|
||
|
titleWidth: {
|
||
|
type: String,
|
||
|
value: '40%'
|
||
|
},
|
||
|
rowWidth: {
|
||
|
type: null,
|
||
|
value: '100%',
|
||
|
observer(val) {
|
||
|
this.setData({ isArray: val instanceof Array });
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
data: {
|
||
|
isArray: false
|
||
|
}
|
||
|
});
|
||
|
export default global['__wxComponents']['vant/skeleton/index']
|
||
|
</script>
|
||
|
<style platform="mp-weixin">
|
||
|
@import '../common/index.css';.van-skeleton{display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:0 16px;padding:var(--skeleton-padding,0 16px)}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;margin-right:16px;margin-right:var(--padding-md,16px);background-color:#f2f3f5;background-color:var(--skeleton-avatar-background-color,#f2f3f5)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{-webkit-flex:1;flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px;padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{height:16px;height:var(--skeleton-row-height,16px);background-color:#f2f3f5;background-color:var(--skeleton-row-background-color,#f2f3f5)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:12px;margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}
|
||
|
</style>
|