12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!--pages/orders/order-detail.wxml-->
- <view class="container">
- <navigation-bar 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>¥</text>{{ goodsInfo.salePrice }}</view>
- </view>
- <view class="goods-type">
- <view class="goods-card">{{ goodsInfo.typeName }}</view>
- <view class="goods-num">x1</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="orders" bind:tap="onService">
- <image src="./images/icon-service.png" />
- <text>客服</text>
- </view>
- <view class="more">
- <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>
- </view>
- <service popShow="{{ showService }}" bind:changePop="changePop"></service>
- </view>
|