init version kelfy-mini for new gitea
This commit is contained in:
23
pages/selectDepartment/selectDepartment.wxml
Normal file
23
pages/selectDepartment/selectDepartment.wxml
Normal file
@@ -0,0 +1,23 @@
|
||||
<!--pages/selectDepartment/selectDepartment.wxml-->
|
||||
<view class="main">
|
||||
<view class="container">
|
||||
<scroll-view scroll-y='true' style='height:100%'>
|
||||
<!-- 搜索框 -->
|
||||
<van-search
|
||||
value="{{ keyword }}"
|
||||
placeholder="请输入关键字"
|
||||
bind:change="onSearch"
|
||||
/>
|
||||
<van-cell-group inset wx:for="{{filteredList}}">
|
||||
<van-cell title="{{item.name}}" is-link data-id="{{item.id}}" bindtap="naviToYs" />
|
||||
</van-cell-group>
|
||||
<!-- 无结果提示 -->
|
||||
<van-empty wx:if="{{ filteredList.length===0 && keyword }}" description="无匹配记录" />
|
||||
|
||||
<!-- <view class="item" wx:for="{{officeList}}" wx:key="item" bindtap="naviToYs" data-item="{{item}}">
|
||||
<view class="name">{{item.ksmc}}</view>
|
||||
<view class="icon">></view>
|
||||
</view> -->
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user