| 1234567891011121314151617181920212223242526272829 |
- <view class='tab-box'>
- <view class="left">
- <van-tabs active="{{ active }}" tab-class='tab-class' color='#3874F6' bind:change="onChange">
- <van-tab wx:for="{{ops}}" wx:key="name" title="{{language[item.title]||item.title}}" name="{{item.name}}" />
- </van-tabs>
- </view>
- <view class="right">
- <view class="filtrate-box" hover-class="navigator-hover" bindtap="openFiltrate">
- <text class="iconfont icon-shaixuan" />
- {{language['筛选']||'筛选'}}
- </view>
- <view class="search-box" hover-class="navigator-hover" bindtap="changeSearchShow">
- <text class="iconfont icon-a-sousuolansousuo" />
- </view>
- </view>
- </view>
- <view hidden="{{active != 'Client'}}">
- <Client id='Client' wx:if="{{per.query(unfolds,'Client')}}" bindupdate="getList" />
- </view>
- <view hidden="{{active != 'Project'}}">
- <Project id='Project' wx:if="{{per.query(unfolds,'Project')}}" bindupdate="getList" />
- </view>
- <view hidden="{{active != 'Sales'}}">
- <Sales id='Sales' wx:if="{{per.query(unfolds,'Sales')}}" bindupdate="getList" />
- </view>
- <view hidden="{{active != 'Contacts'}}">
- <Contacts id='Contacts' wx:if="{{per.query(unfolds,'Contacts')}}" bindupdate="getList" />
- </view>
- <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />
|