12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <view class='addCarNumber-index {{className}}' style='{{style}}' ref='saveChildRef0'>
- <view onTap='antmoveAction' data-antmove-tap='showpopup'>
- {{value?value:placeholder}}
- </view>
- <van-popup
- show='{{ show }}'
- overlay-style='background: transparent;'
- position='bottom'
- onClose='onClose'
- ref='saveChildRef1'
- >
- <view a:if='{{showAreaWord}}' class='container'>
- <view
- a:for='{{areaWordList}}'
- class='box box-chinese box-active'
- data-value='{{item}}'
- ref-numbers='{{areaWordList}}'
- onTap='antmoveAction'
- data-antmove-tap='getValue'
- >
- {{item}}
- </view>
- <view class='box box-max'>
- </view>
- </view>
- <view a:if='{{!showAreaWord}}' class='container'>
- <view
- a:for='{{numberList}}'
- class='box box-number box-active'
- data-value='{{item}}'
- ref-numbers='{{numberList}}'
- onTap='antmoveAction'
- data-antmove-tap='getValue'
- >
- {{item}}
- </view>
- <view
- a:for='{{wordList}}'
- class='box box-number box-active'
- data-value='{{item}}'
- ref-numbers='{{wordList}}'
- onTap='antmoveAction'
- data-antmove-tap='getValue'
- >
- {{item}}
- </view>
- <view class='box box-number box-max bg-red' style="font-size:24rpx;padding:24rpx 30rpx;" onTap='antmoveAction' data-antmove-tap='delete'>
- 删除
- </view>
- <view
- a:if='{{showCompleteButton}}'
- class='box box-number box-max bg-blue'
- style="font-size:24rpx;padding:24rpx 30rpx;"
- onTap='antmoveAction'
- data-antmove-tap='onClose'
- >
- 完成
- </view>
- </view>
- </van-popup>
- </view>
|