inventory.wxml 549 B

12345678910111213
  1. <van-popup show="{{ open }}" position="left" custom-style="width: 80%;height:100vh;" bind:click-overlay="onClose">
  2. <view class="main">
  3. <van-sidebar active-key="{{ activeKey }}" bindchange="onChange">
  4. <van-sidebar-item wx:for="{{list}}" badge='{{item.list.length}}' wx:key="systemclient" title="{{item.name}}" />
  5. </van-sidebar>
  6. <view class="container">
  7. <view wx:for="{{list[activeKey].list}}">
  8. {{item.systemappname}}/{{item.systemmodulename}}
  9. </view>
  10. <view style="height: 150rpx; border: 0 ;" />
  11. </view>
  12. </view>
  13. </van-popup>