wny e8d37a6f78 [new feature] 增加支持合并page生命周期的extend函数 (#90)
* [new feature] 添加支持合并生命周期的extend函数

* 增加yarn.lock

* fix comment

* 保持example引用与文档一致
2017-12-25 11:17:20 +08:00

83 lines
1.5 KiB
JavaScript

const { Tab, extend } = require('../../dist/index');
Page(extend({}, Tab, {
data: {
tab1: {
list: [{
id: 'all',
title: '全部'
}, {
id: 'topay',
title: '待付款'
}, {
id: 'tosend',
title: '待发货'
}, {
id: 'send',
title: '待收货'
}, {
id: 'sign',
title: '已完成订单'
}],
selectedId: 'all'
},
tab2: {
list: [{
id: '1',
title: '最新商品1'
}, {
id: '2',
title: '最新商品2'
}, {
id: '3',
title: '最新商品3'
}, {
id: '4',
title: '最新商品4'
}, {
id: '5',
title: '最新商品5'
}, {
id: '6',
title: '最新商品6'
}],
selectedId: '1',
scroll: true,
height: 45
},
tab3: {
list: [{
id: '1',
title: '商品1'
}, {
id: '2',
title: '商品2'
}, {
id: '3',
title: '商品3'
}, {
id: '4',
title: '商品4'
}, {
id: '5',
title: '商品5'
}, {
id: '6',
title: '商品6'
}],
selectedId: '1',
scroll: true,
height: 45
}
},
handleZanTabChange(e) {
var componentId = e.componentId;
var selectedId = e.selectedId;
this.setData({
[`${componentId}.selectedId`]: selectedId
});
}
}));