罗世杰:fix:成交案例页面样式调整,SearchShopListItem.vue支持显示成交案例

This commit is contained in:
LuoShijie
2023-11-11 22:47:47 +08:00
parent f97c558fa0
commit a8fbef6966
5 changed files with 105 additions and 13 deletions

View File

@@ -20,7 +20,7 @@
</view>
</view>
<view class="item-border">
<DropDownItem v-if="activeIndex !== -1" :list="tablist"/>
<DropDownItem v-if="activeIndex !== -1" :list="tablist" @cancelDrop="cancelDrop"/>
</view>
</view>
</template>
@@ -61,6 +61,10 @@
this.activeIndex = -1;
}else
this.activeIndex = index
},
cancelDrop() {
console.log("取消遮罩");
this.activeIndex = -1;
}
},