123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!--pages/orders/order-detail.wxml-->
- <view class="container">
- <navigation-bar title="{{ statusList[status].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>
- <!-- ¥ {{ 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="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>
- <view class="btnGroup">
- <button type="primary" bind:tap="onSubmit">{{ goodsInfo.orderNo ? '继续支付' : '立即支付' }}</button>
- <view class="btnInnerFree" wx:if="{{ goodsInfo.giftFlag }}">当天激活<text>赠{{goodsInfo.giftLongTime}}</text></view>
- </view>
- </view>
- <service wx:if="{{serviceShow}}"></service>
- </view>
|