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.
17 lines
525 B
17 lines
525 B
5 years ago
|
<view class="dept-list">
|
||
|
<view
|
||
|
wx:for="{{deptList}}"
|
||
|
wx:for-index="index"
|
||
|
wx:for-item="item"
|
||
|
wx:key="index"
|
||
|
class="list-item" bindtap="navigateToDict" data-dict="{{item}}">
|
||
|
<view class="list-name">{{item.dictName}}</view>
|
||
|
<image src="../../images/right.png" class="list-arrow"></image>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<!-- <load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more> -->
|
||
|
|
||
|
<no-data isShow="{{nodata}}"></no-data>
|
||
|
|