12345678910111213141516171819202122 |
- <!--components/addCarNumber/index.wxml-->
- <view class="transparent" bindtap="showpopup" >{{value?value:placeholder}}</view>
- <van-popup
- show="{{ show }}"
- overlay-style="background: transparent"
- position="bottom"
- bind:close="onClose"
- custom-class="set-bottom"
- >
- <!-- 中文开头 -->
- <view class="container" wx:if="{{showAreaWord}}">
- <view class="box box-chinese box-active" wx:for="{{areaWordList}}" data-value="{{item}}" bindtap="getValue">{{item}}</view>
- <view class="box box-max"></view>
- </view>
- <!-- 英文数字 -->
- <view class="container" wx:if="{{!showAreaWord}}">
- <view class="box box-number box-active" wx:for="{{numberList}}" data-value="{{item}}" bindtap="getValue">{{item}}</view>
- <view class="box box-number box-active" wx:for="{{wordList}}" data-value="{{item}}" bindtap="getValue">{{item}}</view>
- <view class="box box-number box-max bg-red" bindtap="delete">删除</view>
- <view class="box box-number box-max bg-blue" bindtap="onClose" wx:if="{{showCompleteButton}}" >完成</view>
- </view>
- </van-popup>
|