blob: 1f5b7c0055c77e41fdbfb211ce64dfeff83106d8 [file] [log] [blame]
<template>
<div class="wxc-demo">
<scroller class="scroller">
<title title="wxc-grid-select"></title>
<category title="单选"></category>
<div class="demo">
<wxc-grid-select
:list="testData1"
:single="true"
@select="params => onSelect('res1', params)">
</wxc-grid-select>
<text class="res">{{res1}}</text>
</div>
<text class="res"></text>
<category title="多选"></category>
<div class="demo">
<wxc-grid-select
:list="testData2"
:limit="5"
@overLimit="onOverLimit"
@select="params => onSelect('res2', params)">
</wxc-grid-select>
<text class="res">{{res2}}</text>
</div>
<category title="自定义样式"></category>
<div class="demo">
<wxc-grid-select
:single="true"
:cols="5"
:customStyles="customStyles"
:list="testData3"
@select="params => onSelect('res3', params)">
</wxc-grid-select>
<text class="res">{{res3}}</text>
</div>
</scroller>
</div>
</template>
<style scoped>
.wxc-demo {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding-bottom: 24px;
background-color: #ffffff;
}
.scroller {
flex: 1;
}
.demo {
padding-top: 24px;
padding-right: 24px;
padding-left: 24px;
}
.res {
margin-top: 24px;
color: #666666;
font-size: 26px;
line-height: 36px;
}
</style>
<script>
import { WxcGridSelect } from '../../index';
import Title from '../_mods/title.vue';
import Category from '../_mods/category.vue';
import { setTitle } from '../_mods/set-nav';
const modal = weex.requireModule('modal');
export default {
components: { Title, Category, WxcGridSelect },
data: () => ({
res1: '',
res2: '',
res3: '',
testData1: [
{
'title': '上海'
},
{
'title': '杭州',
'checked': true
},
{
'title': '北京'
},
{
'title': '广州'
},
{
'title': '深圳'
},
{
'title': '南京'
},
{
'title': '合肥'
},
{
'title': '武汉'
},
{
'title': '长沙'
},
{
'title': '最多展示两行内容'
},
{
'title': '超过两行文本将被截断展示'
},
{
'title': '西安'
},
{
'title': '郑州'
},
{
'title': '福州'
}
],
testData2: [
{
'title': '上海'
},
{
'title': '杭州',
'checked': true
},
{
'title': '北京',
'checked': true
},
{
'title': '广州'
},
{
'title': '深圳'
},
{
'title': '南京'
},
{
'title': '合肥',
'checked': true
},
{
'title': '武汉',
'checked': true
},
{
'title': '长沙'
},
{
'title': '南昌'
},
{
'title': '太原'
},
{
'title': '西安'
},
{
'title': '郑州'
},
{
'title': '福州'
}
],
testData3: [
{
'title': '上海'
},
{
'title': '杭州',
'checked': true
},
{
'title': '北京'
},
{
'title': '广州'
},
{
'title': '深圳'
},
{
'title': '南京'
},
{
'title': '合肥'
},
{
'title': '武汉'
},
{
'title': '长沙'
},
{
'title': '南昌'
},
{
'title': '太原'
},
{
'title': '西安'
},
{
'title': '郑州'
},
{
'title': '福州'
}
],
customStyles: {
lineSpacing: '14px',
width: '120px',
height: '50px',
icon: '',
color: '#333333',
checkedColor: '#ffffff',
disabledColor: '#eeeeee',
borderColor: '#666666',
checkedBorderColor: '#ffb200',
backgroundColor: '#ffffff',
checkedBackgroundColor: '#ffb200'
}
}),
created () {
setTitle('GridSelect');
},
methods: {
onSelect (res, { selectIndex, checked, checkedList }) {
Vue.set(this, res, `本次选择的index${selectIndex}\n是否选中:${checked
? '是'
: '否'}\n选中列表:${checkedList.map(item => item.title).join(',')}`);
},
onOverLimit (limit) {
modal.toast({
message: `最多选择${limit}个`,
duration: 0.8
});
}
}
}
</script>