仓库地址修改
This commit is contained in:
@@ -1,46 +0,0 @@
|
||||
Component({
|
||||
externalClasses: ['i-class-content', 'i-class-title', 'i-class'],
|
||||
|
||||
relations: {
|
||||
'../collapse/index': {
|
||||
type: 'parent',
|
||||
linked: function (target) {
|
||||
const options = {
|
||||
accordion: target.data.accordion
|
||||
}
|
||||
if (target.data.name === this.data.name) {
|
||||
options.showContent = 'i-collapse-item-show-content';
|
||||
}
|
||||
this.setData(options);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
properties: {
|
||||
title: String,
|
||||
name: String
|
||||
},
|
||||
|
||||
data: {
|
||||
showContent: '',
|
||||
accordion: false
|
||||
},
|
||||
|
||||
options: {
|
||||
multipleSlots: true
|
||||
},
|
||||
|
||||
methods: {
|
||||
trigger(e) {
|
||||
const data = this.data;
|
||||
if (data.accordion) {
|
||||
this.triggerEvent('collapse', {name: data.name}, {composed: true, bubbles: true});
|
||||
} else {
|
||||
this.setData({
|
||||
showContent: data.showContent ? '' : 'i-collapse-item-show-content'
|
||||
});
|
||||
}
|
||||
},
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user