...
|
...
|
@@ -60,6 +60,12 @@ export default { |
|
|
return;
|
|
|
}
|
|
|
|
|
|
if (this.name === '折扣') {
|
|
|
this.$nextTick(() => {
|
|
|
bus.$emit('choices.scrollBottom');
|
|
|
});
|
|
|
}
|
|
|
|
|
|
bus.$emit('expand.choice.only', this.name);
|
|
|
},
|
|
|
toggleChoice(index, choice) {
|
...
|
...
|
@@ -152,6 +158,11 @@ export default { |
|
|
},
|
|
|
foldExcept(name) {
|
|
|
this.show = this.name === name;
|
|
|
if (name === '折扣') {
|
|
|
this.$nextTick(() => {
|
|
|
bus.$emit('discount.scrollBottom');
|
|
|
});
|
|
|
}
|
|
|
},
|
|
|
subFilterChange(sub, filter){
|
|
|
if (typeMap[this.name] === sub.subType) {
|
...
|
...
|
|