1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/orders/order-detail.wxml-->
- <view class="container">
- <navigation-bar color="#fff" title="订单详情"></navigation-bar>
- <scroll-view class="record-list" type="list" scroll-y bindscrolltolower="loadMore">
- <view class="order-status">
- <view class="status">
- <!-- <image src="{{ statusList[status].logo }}"></image> -->
- <text>{{ statusList[status].title }}</text>
- </view>
- <view class="tips">{{ statusList[status].content }}</view>
- </view>
- <view class="order-content">
- <view class="item-content">
- <image class='goods-icon' src="{{ goodsInfo.pic }}" mode="" />
- <view class="goods-desc">
- <view class="goodsInfo">
- <view class="goods-name">{{ goodsInfo.name }}</view>
- <view class="goods-price">
- <text class="stuff">¥ </text>
- <text class="priceZ">{{ goodsInfo.integerPart }}</text>
- <text class="priceF">.{{ goodsInfo.decimalPart }}</text>
- </view>
- </view>
- <view class="goods-type">
- <view class="goods-card">{{ goodsInfo.typeName }}</view>
- <view class="goods-num">共 1 件</view>
- </view>
- </view>
- </view>
- </view>
- <!-- <view class="order-time">
- <view class="order-item">
- <view class="title">订单号</view>
- <view class="value">2133442226668</view>
- </view>
- <view class="order-item">
- <view class="title">下单时间</view>
- <view class="value">2023-07-12 18:12:45</view>
- </view>
- </view> -->
- </scroll-view>
- <view class="order-btn">
- <view class="price">
- <view class="desc">支付金额:</view>
- <view class="currentPrice">
- <text class="stuff">¥ </text>
- <text class="priceZ">{{ goodsInfo.integerPart }}</text>
- <text class="priceF">.{{ goodsInfo.decimalPart }}</text>
- </view>
- </view>
- <button type="primary" bind:tap="onSubmit">{{ goodsInfo.orderNo ? '继续支付' : '立即支付' }}</button>
- </view>
- <!-- 客服 -->
- <service wx:if="{{serviceShow}}"></service>
- </view>
|