blob: 282983a0605016fc7c1a20f9ea6e366b852c552b [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 git@zwwill on 118/02/08. -->
<template>
<div class="wxc-demo">
<title title="wxc-refresher"></title>
<category title="使用案例"></category>
<list class="scroller" ref="scroller">
<wxc-refresher ref="wxc-refresher"
scroller-ref="scroller"
main-text="下拉即可刷新(自定义)"
pulling-text="释放即可刷新(自定义)"
refreshing-text="加载中(自定义)"
:max-time="5000"
:text-width="240"
@wxcRefresh="onRefresh"
@wxcTimeout="onTimeout"></wxc-refresher>
<cell class="cell" v-for="(num,key) in lists" :key="key">
<div class="panel">
<text class="text">{{num}}</text>
</div>
</cell>
</list>
</div>
</template>
<script>
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import { setTitle } from '../_mods/set-nav';
import { WxcRefresher } from '../../index';
const modal = weex.requireModule('modal');
export default {
components: { Title, Category, WxcRefresher },
data: () => ({
lists: ['下拉刷新', 'Drop Down', '↓', '↓', '↓', '↓', '↓', '↓'],
refreshTime: 3000
}),
created () {
setTitle('Refresher');
},
methods: {
onTimeout () {
this.sto && clearTimeout(this.sto);
modal.toast({ message: '刷新超时,可定义超时时间', duration: 1 });
},
onRefresh (e) {
this.sto = setTimeout(()=>{ this.refreshSucc() }, this.refreshTime)
modal.toast({ message: '刷新中...', duration: .5 });
this.refreshTime = this.refreshTime === 3000 ? 10000 : 3000;
},
refreshSucc () {
this.$refs['wxc-refresher'].wxcCancel();
modal.toast({ message: '刷新成功', duration: .5 });
},
}
};
</script>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #FFFFFF;
}
.panel {
width: 600px;
height: 250px;
margin-left: 75px;
margin-top: 35px;
margin-bottom: 35px;
/* flex-direction: column; */
justify-content: center;
border-width: 2px;
border-style: solid;
border-color: #DDDDDD;
background-color: #F5F5F5;
}
.text {
font-size: 50px;
text-align: center;
color: #41B883;
}
.scroller{
flex: 1;
}
</style>