1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <nav type="back" background-color="{{activeColor}}" title="提交订单" frontColor="#ffffff" />
- <view class="order">
- <image class="order-image" src="{{goods.image}}"></image>
- <view class="order-box">
- <view class="order-name">{{goods.name}}</view>
- <view class="order-price">¥{{goods.price}}</view>
- <view class="order-portion">
- <view class="order-time">{{goods.shopStore.workingTime}}</view>
- <!-- <view>
- <van-stepper value="{{ number }}" bind:change="onChange" />
- </view> -->
- </view>
- </view>
- </view>
- <view class="box">
- <view class="name">{{shopstore.storeName}}</view>
- <view class="time">营业时间:{{shopstore.workingTime}}</view>
- <view class="time">地址:{{shopstore.address}}</view>
- <view class="taxi">
- <view class="taxi-box" bindtap="taxi">
- <view class="taxi-phone">
- <van-icon size="60rpx" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/5oaona032247.png" />
- </view>
- <view class="taxi-name">打车</view>
- </view>
- <view class="taxi-boxs" bindtap="phone">
- <view class="taxi-phone">
- <van-icon size="60rpx" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220413/jip51n032425.png" />
- </view>
- <view class="taxi-name">电话</view>
- </view>
- </view>
- </view>
- <view class="box">
- <view class="name">卡券内容</view>
- <rich-text nodes="{{goods.details}}" style="width: 92%;height: 100%; margin-right: 0 auto;"></rich-text>
- </view>
- <view class="box">
- <view class="name">温馨提示</view>
- <block wx:for="{{goods.services}}" wx:key="index">
- <view class="voucher">{{item.value}}</view>
- </block>
- </view>
- <view class="bommon">
- <view class="bommon-price">合计:¥{{prices}}</view>
- <view class="bommon-submit" bindtap="submit" style="background-color: {{activeColor}};">提交订单</view>
- </view>
- <payment style="z-index: 99999;" id='payMent' show="{{show}}" tradeNo="{{tradeNo}}" price="{{prices}}" bind:payResult='acceptResult' showType="all" />
|