v3.0.6
This commit is contained in:
32
source/wx/xzs-student/component/iView/index-item/index.js
Normal file
32
source/wx/xzs-student/component/iView/index-item/index.js
Normal file
@@ -0,0 +1,32 @@
|
||||
Component({
|
||||
externalClasses: ['i-class'],
|
||||
properties : {
|
||||
name : {
|
||||
type : String,
|
||||
value : ''
|
||||
}
|
||||
},
|
||||
relations : {
|
||||
'../index/index' : {
|
||||
type : 'parent'
|
||||
}
|
||||
},
|
||||
data : {
|
||||
top : 0,
|
||||
height : 0,
|
||||
currentName : ''
|
||||
},
|
||||
methods: {
|
||||
updateDataChange() {
|
||||
const className = '.i-index-item';
|
||||
const query = wx.createSelectorQuery().in(this);
|
||||
query.select( className ).boundingClientRect((res)=>{
|
||||
this.setData({
|
||||
top : res.top,
|
||||
height : res.height,
|
||||
currentName : this.data.name
|
||||
})
|
||||
}).exec()
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user