mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
61 lines
1.2 KiB
JavaScript
61 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
Component({
|
|
externalClasses: 'class',
|
|
|
|
properties: {
|
|
scroll: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
fixed: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
height: {
|
|
type: Number,
|
|
value: 0
|
|
},
|
|
list: {
|
|
type: Array,
|
|
value: []
|
|
},
|
|
selectedId: {
|
|
type: [String, Number],
|
|
value: ''
|
|
}
|
|
},
|
|
|
|
data: {
|
|
scrollLeft: 0
|
|
},
|
|
|
|
methods: {
|
|
_handleScroll: function _handleScroll(selectedId) {
|
|
var _this = this;
|
|
|
|
var query = wx.createSelectorQuery().in(this);
|
|
query.select('#item-' + selectedId).boundingClientRect();
|
|
query.select('#scroll-view').boundingClientRect();
|
|
query.select('#scroll-view').scrollOffset();
|
|
query.exec(function (res) {
|
|
_this.setData({
|
|
scrollLeft: res[2].scrollLeft + res[0].left + res[0].width / 2 - res[1].width / 2
|
|
});
|
|
});
|
|
},
|
|
_handleZanTabChange: function _handleZanTabChange(e) {
|
|
var selectedId = e.currentTarget.dataset.itemId;
|
|
|
|
if (this.data.scroll) {
|
|
this._handleScroll(selectedId);
|
|
}
|
|
|
|
this.setData({
|
|
selectedId: selectedId
|
|
});
|
|
|
|
this.triggerEvent('tabchange', selectedId);
|
|
}
|
|
}
|
|
}); |