22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
<!--components/pop-sheet/index.wxml-->
|
|
<view catchtap="close" data-type="{{single}}" class="cu-modal center-modal {{show?'show':''}}">
|
|
<view class="cu-dialog pop" style="overflow-y: hidden;">
|
|
<view class="cu-bar justify-end pop-header">
|
|
<view class="content">{{title}}</view>
|
|
<view class="action" catchtap="close" data-type="{{single}}">
|
|
<text class="cuIcon-close text-red"></text>
|
|
</view>
|
|
</view>
|
|
<!-- 列表 -->
|
|
<view style="max-height: 40vh;overflow-y: scroll;">
|
|
<view catchtap="filterFun" data-type="{{single}}" data-item="{{item}}" data-index="{{index}}" class="item-pop" wx:for="{{list}}">
|
|
<text wx:if="{{item.checked}}" class="cuIcon-radiobox box text-blue"></text>
|
|
<text class="name">{{item[proName]||item}}</text>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{multiple}}" class="h-div pop-option">
|
|
<view class="btn cancle" catchtap="submit">取消</view>
|
|
<view class="btn sub" catchtap="submit">确定</view>
|
|
</view>
|
|
</view>
|
|
</view> |