2018-04-15 11:21:10 +08:00

58 lines
964 B
JavaScript

Page({
data: {
tab: {
list: [{
id: 1,
title: '选项1'
}, {
id: 2,
title: '选项2'
}, {
id: 3,
title: '选项3'
}],
selectedId: 1
},
tab1: {
list: [{
id: 'all',
title: '全部'
}, {
id: 'topay',
title: '待付款'
}, {
id: 'tosend',
title: '待发货'
}, {
id: 'send',
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
}
}
});