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.
18 lines
880 B
18 lines
880 B
<view class="ad_popError" wx:if="{{popErrorMsg}}">{{popErrorMsg}}</view>
|
|
<view wx:for-items="{{items}}">
|
|
<view class='box top{{item.top}}'>
|
|
<text class='text'>{{item.title}}</text>
|
|
<input class='inputBox' placeholder="{{item.note}}" bindfocus='show{{item.box?"Clear":""}}' bindblur='hide{{item.box?"All":""}}' type="{{item.typeFlag}}" bindinput="input{{item.page}}" value='{{item.page=="Area"?area:""}}'/>
|
|
<text wx:if="{{item.box&&show==true}}" class='text clear' bindtap='clear'>x</text>
|
|
<view wx:if="{{item.box}}" class="sug_info">
|
|
<view wx:for='{{addrItems}}' class='smallBox' bindtap='chooseAddr' data-item='{{item}}'>
|
|
<image class="icon" src="{{img}}" mode='aspectFit'/>
|
|
<view class='detailAddr'>
|
|
{{item}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<button class='subBtn' bindtap='save'>保存 </button>
|