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.
16 lines
986 B
16 lines
986 B
<!--components/scan-code/scan-code.wxml-->
|
|
<wxs module="check" src="./index.wxs"></wxs>
|
|
<view class="cu-modal bottom-modal {{modalName=='bottomModal'?'show':''}}" bindtap="hideModal">
|
|
<view class="cu-dialog">
|
|
<view class="cu-bar bg-white " style="min-height:90rpx;height:90rpx;border-bottom:1px solid #f3f3f3">
|
|
<view class="action text-grey" style="font-size:16px;margin-left:16rpx" bindtap="hideModal">取消</view>
|
|
<view class="action text-blue" style="font-size:16px;margin-right:16rpx" bindtap="confrimModal">确定</view>
|
|
</view>
|
|
<scroll-view class="list-view" scroll-y style="height:{{45*dataList.length}}px;">
|
|
<view wx:for="{{dataList}}" wx:key="index" class="item-check" data-index="{{index}}" catchtap="clickItem">
|
|
<text class="text-sg">{{item.text}}</text>
|
|
<text class="cuIcon-{{check.check(item, value)?'roundcheckfill text-blue':'round text-gray'}}" style="font-size:48rpx"/>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|