1234567891011121314151617181920212223242526272829303132 |
- <view class='top'>
- <view class='address' bindtap='chooseAddress'>
- <!--<view>{{address}}</view>
- <text class='tips'>填写收货地址</text>
- <button class='nxh__button' bindtap='chooseAddress' >使用微信地址</button>-->
- <image class='left' src='/static/img/location2.png'></image>
- <view class='center' wx:if='{{isUseAddress}}'>
- <text>{{addrObj.userName}}</text>
- <text>{{addrObj.provinceName+addrObj.cityName+addrObj.countyName+addrObj.detailInfo}}</text>
- <text>{{addrObj.telNumber}}</text>
- </view>
- <view class='tips' wx:else><text>使用微信地址</text></view>
- <image class='right' src='/static/img/item-right.png'></image>
- <!--兼容授权提醒-->
- <authdialog id='authdialog' title='授权提示' content='小程序需要您的授权才能提供更好的服务哦' confirmText='知道了'></authdialog>
- </view>
- <view class='address_line'></view>
- <view class='order' wx:for='{{list}}' wx:key='{{index}}' data-id='{{item.id}}'>
- <text class='title'>{{item.name}}</text>
- <view class='oper'>
- <text class='price'>¥ {{item.price}}</text>
- <view class='edit-num'>数量 1 件</view>
- </view>
- <view class='split_line'/>
- </view>
- </view>
- <view class='bottom'>
- <view class='left'>合计 ¥{{settlement}} 元</view>
- <view class='right' bindtap='doCash'>确定</view>
- </view>
|