index.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class='tab-box'>
  2. <view class="left">
  3. <van-tabs active="{{ active }}" tab-class='tab-class' color='#3874F6' bind:change="onChange">
  4. <van-tab wx:for="{{ops}}" wx:key="name" title="{{language[item.title]||item.title}}" name="{{item.name}}" />
  5. </van-tabs>
  6. </view>
  7. <view class="right">
  8. <view class="filtrate-box" hover-class="navigator-hover" bindtap="openFiltrate">
  9. <text class="iconfont icon-shaixuan" />
  10. <view wx:if="{{username}}">
  11. {{language[username]||username}}_{{language[isleave==1?'在职':'离职']||isleave==1?'在职':'离职'}}
  12. </view>
  13. {{language['筛选']||'筛选'}}
  14. </view>
  15. </view>
  16. </view>
  17. <view hidden="{{active != 'Clue'}}">
  18. <Clue id='Clue' wx:if="{{per.query(unfolds,'Clue')}}" bindupdate="getList" />
  19. </view>
  20. <view hidden="{{active != 'Client'}}">
  21. <Client id='Client' wx:if="{{per.query(unfolds,'Client')}}" bindupdate="getList" />
  22. </view>
  23. <view hidden="{{active != 'Project'}}">
  24. <Project id='Project' wx:if="{{per.query(unfolds,'Project')}}" bindupdate="getList" />
  25. </view>
  26. <view hidden="{{active != 'Contacts'}}">
  27. <Contacts id='Contacts' wx:if="{{per.query(unfolds,'Contacts')}}" bindupdate="getList" />
  28. </view>
  29. <wxs src='../../utils/wxmlQueryPer.wxs' module="per" />
  30. <Yl_Filtrate1 id="Yl_Filtrate1" show='{{showFiltrate}}' list="{{[]}}" bindhandle="handleFilter">
  31. <organization slot='head' defaultIsleave='1' dimissionF id='organization' />
  32. </Yl_Filtrate1>