init
This commit is contained in:
78
wx05cb767e6530b48f/pages/aftermarket/index.wxml
Normal file
78
wx05cb767e6530b48f/pages/aftermarket/index.wxml
Normal file
@@ -0,0 +1,78 @@
|
||||
<view class="container m-b5">
|
||||
<view class="goods-detail-box">
|
||||
<view class="header f-28 col-3">
|
||||
<view catchtap="bindHeaderTap" class="{{dataType==='all'?'active':''}}" data-type="all">全部售后</view>
|
||||
<view bindtap="bindHeaderTap" class="{{dataType==='apply'?'active':''}}" data-type="apply">已申请</view>
|
||||
<view bindtap="bindHeaderTap" class="{{dataType==='complete'?'active':''}}" data-type="complete">已完成</view>
|
||||
</view>
|
||||
<scroll-view scrollY="{{true}}">
|
||||
<view class="wrapper">
|
||||
<view wx:if="{{data.length}}">
|
||||
<view class="m-top20 " wx:for="{{data}}" wx:key="this">
|
||||
<view class="order-box b-f">
|
||||
<view class="order-header dis-flex">
|
||||
<view class="flex-box t-l">
|
||||
<text class="title">商品信息</text>
|
||||
</view>
|
||||
<view class="flex-box t-r">
|
||||
<text class="cont" wx:if="{{item.refund_status==2}}">已完成</text>
|
||||
<text class="cont" wx:if="{{item.refund_status==1}}">已申请</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="order-box b-f">
|
||||
<view class="order-cont dis-flex">
|
||||
<view class="order-num">
|
||||
<text>退款单号:{{item.refund_no}}</text>
|
||||
</view>
|
||||
<view class="order-time">
|
||||
<text>{{item.create_time}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="order-box order-img_list">
|
||||
<view class="order-shop">
|
||||
<view bindtap="detail" class="order-list-box dis-flex" data-id="{{item.order_goods_id}}">
|
||||
<view class="left">
|
||||
<view class="dis-flex">
|
||||
<view class="order-shop-left">
|
||||
<image src="{{item.image.file_path}}"></image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="right p-r">
|
||||
<text class="goods-number">共1件</text>
|
||||
<text class="iconfont icon-xiangyoujiantou user-orderJtou"></text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="order-box b-f">
|
||||
<view class="order-btn dis-flex">
|
||||
<view class="order-left">
|
||||
<view class="text">
|
||||
<text>申请时间:</text>
|
||||
<text class="">{{item.aftermarket_apply_date}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="order-right">
|
||||
<view class="dis-flex">
|
||||
<view class="flex-box">
|
||||
<view bindtap="orderDetail" class="btn-main" data-id="{{item.order_id}}">订单详情</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view wx:else>
|
||||
<view class="yoshop-notcont">
|
||||
<text class="iconfont icon-ziyuan"></text>
|
||||
<text class="cont">亲,您还没有售后信息哦!</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
Reference in New Issue
Block a user