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.
26 lines
903 B
26 lines
903 B
<view class="m-tabs" wx:if="{{gridId}}">
|
|
<view class="tabs">
|
|
<view class="tab {{item.type===currentMenuType ? 'z-on':''}}"
|
|
bind:tap="shiftTab"
|
|
data-type="{{item.type}}"
|
|
wx:for="{{menus}}">{{item.name}}</view>
|
|
</view>
|
|
|
|
<view class="cnt">
|
|
<list1 id="grid"
|
|
type="grid"
|
|
listUrl="point/group/point/grouppointranking/gridscope"
|
|
listParams="{{ {gridId:gridId} }}"
|
|
wx:if="{{currentMenuType=='grid'}}"/>
|
|
<list2 id="customer"
|
|
type="customer"
|
|
listParams="{{ {customerId:customerId, gridId:gridId} }}"
|
|
listUrl="point/group/point/grouppointranking/customerscope"
|
|
wx:if="{{currentMenuType=='customer'}}"/>
|
|
<list3 id="mine"
|
|
type="mine"
|
|
listParams="{{ {gridId:gridId} }}"
|
|
listUrl="point/group/point/grouppointranking/mygroups"
|
|
wx:if="{{currentMenuType=='mine'}}"/>
|
|
</view>
|
|
</view>
|