You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
868 B
17 lines
868 B
<view class="container">
|
|
<!-- <c-echars showChart="{{showChart}}" canvasId="eventbar-canvas" chartId="eventbar" chartOption="{{chartOption}}" height="100%"></c-echars> -->
|
|
<van-tabs class="menu-tabs" active="{{ active }}" ellipsis="{{false}}" animated="{{true}}" bind:change="changeTab">
|
|
<van-tab title="品牌对比">
|
|
<brand-child wx:if="{{active===0 && wshow}} " bind:hide="themeHide"></brand-child>
|
|
</van-tab>
|
|
<van-tab title="车型对比">
|
|
<model-child wx:if="{{active===1 && wshow}} " bind:hide="themeHide"></model-child>
|
|
</van-tab>
|
|
<van-tab title="事件对比">
|
|
<event-child wx:if="{{active===2 && wshow}} " bind:hide="themeHide"></event-child>
|
|
</van-tab>
|
|
<van-tab title="主题对比">
|
|
<theme-child wx:if="{{active===3 && wshow}}" bind:hide="themeHide"></theme-child>
|
|
</van-tab>
|
|
</van-tabs>
|
|
</view> |