12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <wxs module="dateUtil" src="../../utils/dateTime.wxs"></wxs>
- <view class="order-panel" wx:if="{{orderList.length>0}}">
- <view class="wux-light--bg wux-hairline--top wux-mt--15 wux-mb--15" wx:for="{{orderList}}" wx:key="index">
- <wux-wing-blank >
- <view class="wux-hairline--bottom">
- <wux-row>
- <wux-col span="10">
- <view>售后单号:{{item.refund.sn}}</view>
- </wux-col>
- <wux-col span="2" class="wux-text--right">
- <view >{{item.refund.refuse_type_text}}</view>
- </wux-col>
- </wux-row>
- </view>
- <view class="wux-hairline--bottom">
- <wux-row >
- <wux-col span="7">
- <view>退款人:{{item.refund.member_name}}</view>
- </wux-col>
- <wux-col span="5" class="wux-text--right">
- <view >{{dateUtil.dateFormat(item.refund.create_time,'yyyy-MM-dd hh:mm')}}</view>
- </wux-col>
- </wux-row>
- </view>
- <view class="wux-hairline--bottom">
- <wux-row >
- <wux-col span="6" >
- <view >关联订单:</view>
- </wux-col>
- <wux-col span="6" class="wux-text--right">
- <view>{{item.refund.order_sn}}</view>
- </wux-col>
- </wux-row>
- </view>
- <view >
- <wux-row >
- <wux-col span="6" >
- <view class="wux-assertive">退款状态:{{item.refund.refund_status_text}}</view>
- </wux-col>
- <wux-col span="6" class="wux-text--right">
- <view class="wux-assertive">申请退款金额:¥{{item.refund.refund_price}}</view>
- </wux-col>
- </wux-row>
- </view>
- <view >
- <wux-row >
- <wux-col span="12" >
- <view >退款原因:{{item.refund.refund_reason}}</view>
- </wux-col>
- </wux-row>
- </view>
- </wux-wing-blank>
- <wux-cell-group>
- <wux-cell title="售后订单商品" hoverClass="none">
- <van-card
- price="{{goods.price}}"
- wx:for="{{item.refund_goods}}"
- wx:for-index="idx" wx:for-item="goods" wx:key="index"
- title="{{goods.goods_name}}"
- thumb="{{goods.goods_image}}"
- >
- <view slot="bottom">
- <view>购买数量:{{goods.ship_num}}</view>
- <view>退货数量:{{goods.return_num}}</view>
- </view>
- </van-card>
- </wux-cell>
- </wux-cell-group>
- <view class="btns">
- <van-button type="primary" wx:if="{{item.refund.after_sale_operate_allowable.allow_seller_approval}}" data-sn="{{item.refund.sn}}" data-agree="1" data-price="{{item.refund.refund_price}}" size="small" bindtap="handleRefundAuth">同意</van-button>
- <van-button type="danger" wx:if="{{item.refund.after_sale_operate_allowable.allow_seller_approval}}" data-sn="{{item.sn}}" data-agree="0" size="small" class="wux-ml--15" bindtap="handleRefundAuth">拒绝</van-button>
- </view>
- </view>
- </view>
- <view wx:else>
- <wux-result icon="{{null}}" label="没有数据" fixed>
- <view class="wux-result__icon wux-result__icon" slot="header">
- <wux-icon type="ios-filing" size="93" color="grey" />
- </view>
- </wux-result>
- </view>
- <!--交互组件-->
- <wux-toptips id="wux-toptips" />
- <wux-toast id="wux-toast" />
- <wux-loading id="wux-loading" />
- <wux-dialog id="wux-dialog" />
|