blob: e8409b665175e7dcfb6b3945dbcb568c42afedd3 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!-- Created by Tw93 on 16/10/26. -->
<template>
<div class="wxc-demo">
<scroller class="scroller">
<title title="wxc-loading"></title>
<category title="局部Loading配置"></category>
<div class="demo">
<wxc-part-loading :show="partShow"
:width="width"
:height="height"></wxc-part-loading>
</div>
<wxc-cell :has-top-border="true"
:auto-accessible="false"
title="开启局部Loading">
<switch :checked="partShow"
slot="value"
@change="partShow= !partShow"></switch>
</wxc-cell>
<wxc-cell :has-top-border="false"
title="长度">
<input class="input"
slot="value"
placeholder="局部Loading长度,默认36"
:value="width"
@input="width=$event.value"/>
</wxc-cell>
<wxc-cell :has-top-border="false"
title="高度">
<input class="input"
slot="value"
placeholder="局部Loading高度,默认36"
:value="height"
@input="height=$event.value"/>
</wxc-cell>
<div class="blank"></div>
<category title="页面Loading配置"></category>
<wxc-cell :has-top-border="false"
:auto-accessible="false"
title="开启Loading">
<switch :checked="isShow"
slot="value"
@change="isShow= !isShow"></switch>
</wxc-cell>
<wxc-cell :has-top-border="false"
:auto-accessible="false"
title="自定义Loading">
<switch :checked="type === 'trip'"
slot="value"
@change="type=(type === 'trip'? 'default' : 'trip')"></switch>
</wxc-cell>
<wxc-cell :has-top-border="false"
:has-arrow="true"
@wxcCellClicked="openIntervalLoading"
title="延迟加载"></wxc-cell>
<wxc-cell :has-top-border="false"
title="配置文案">
<input class="input"
slot="value"
placeholder="配置文案,默认无"
:value="loadingText"
@input="loadingText=$event.value"/>
</wxc-cell>
</scroller>
<wxc-loading :show="isShow"
:type="type"
:loading-text="loadingText"
:interval="interval"></wxc-loading>
</div>
</template>
<script>
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import { WxcLoading, WxcPartLoading, WxcCell } from '../../index';
import { setTitle } from '../_mods/set-nav';
export default {
components: { Title, Category, WxcLoading, WxcCell, WxcPartLoading },
data () {
return {
width: '36',
height: '36',
partShow: true,
isShow: true,
interval: 0,
type: 'default',
loadingText: ''
};
},
created () {
setTitle('Loading')
},
methods: {
openLoading () {
this.isShow = !this.isShow;
this.interval = 0;
},
openTripLoading () {
const { type } = this;
this.type = (type === 'trip') ? 'default' : 'trip';
},
openIntervalLoading () {
this.isShow = false;
setTimeout(() => {
// 正常使用时候直接设置即可,不需setTimeout
this.interval = 1000;
this.isShow = true;
}, 10)
},
openTextLoading () {
this.interval = 0;
this.loadingText = this.loadingText ? '' : '正在加载中';
}
}
};
</script>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: #ffffff;
}
.scroller {
flex: 1;
}
.input {
width: 500px;
text-align: right;
font-size: 28px;
}
.demo {
padding-top: 20px;
padding-bottom: 20px;
align-items: center;
height: 80px;
justify-content: center;
}
.blank {
height: 80px;
}
</style>