30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
<!--pages/cart/cart.wxml-->
|
|
<van-search></van-search>
|
|
<van-row>
|
|
<van-col span="24" style="float: right;">
|
|
<van-dropdown-menu>
|
|
<van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" />
|
|
<van-dropdown-item value="{{ value2 }}" options="{{ option2 }}" />
|
|
</van-dropdown-menu>
|
|
</van-col>
|
|
</van-row>
|
|
<van-row>
|
|
<van-col span="8">
|
|
<van-sidebar active-key="{{ activeKey }}" bind:change="onChange">
|
|
<van-sidebar-item title="标签名 1" />
|
|
<van-sidebar-item title="标签名 2" />
|
|
<van-sidebar-item title="标签名 3" />
|
|
</van-sidebar>
|
|
</van-col>
|
|
<van-col span="12">
|
|
<view class="box_1" wx:if="{{activeKey == 0}}">11</view>
|
|
<view class="box_1" wx:elif="{{activeKey == 1}}">22</view>
|
|
<view class="box_1" wx:elif="{{activeKey == 2}}">
|
|
<van-cell-group wx:for="{{ leagueList }}" wx:key="index">
|
|
<van-cell title="{{item.league_id}}">{{item.league_name}}</van-cell>
|
|
</van-cell-group>
|
|
</view>
|
|
</van-col>
|
|
</van-row>
|
|
<van-notify id="van-notify" />
|