| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <div class="row-content am-cf">
- <div class="row">
- <div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
- <div class="widget am-cf">
- <div class="widget-head am-cf">
- <div class="widget-title am-cf">售后列表</div>
- </div>
- <div class="widget-body am-fr">
- <!-- 工具栏 -->
- <div class="page_toolbar am-margin-bottom-xs am-cf">
- <form class="toolbar-form" action="">
- <input type="hidden" name="s" value="/<?= $request->pathinfo() ?>">
- <div class="am-u-sm-12 am-u-md-12">
- <div class="am fr">
- <div class="am-form-group tpl-form-border-form am-fl">
- <input type="text" name="start_time"
- class="am-form-field"
- value="<?= $request->get('start_time') ?>" placeholder="请选择起始日期"
- data-am-datepicker>
- </div>
- <div class="am-form-group tpl-form-border-form am-fl">
- <input type="text" name="end_time"
- class="am-form-field"
- value="<?= $request->get('end_time') ?>" placeholder="请选择截止日期"
- data-am-datepicker>
- </div>
- <div class="am-form-group am-fl">
- <select name="type"
- data-am-selected="{btnSize: 'sm', placeholder: '售后类型'}">
- <option value=""></option>
- <option value="10" <?= $request->get('type') === '10' ? 'selected' : '' ?>>
- 退货退款
- </option>
- <option value="20" <?= $request->get('type') === '20' ? 'selected' : '' ?>>
- 换货
- </option>
- </select>
- </div>
- <div class="am-form-group am-fl">
- <select name="state"
- data-am-selected="{btnSize: 'sm', placeholder: '处理状态'}">
- <option value=""></option>
- <option value="0" <?= $request->get('state') === '0' ? 'selected' : '' ?>>
- 进行中
- </option>
- <option value="10" <?= $request->get('state') === '10' ? 'selected' : '' ?>>
- 已拒绝
- </option>
- <option value="20" <?= $request->get('state') === '20' ? 'selected' : '' ?>>
- 已完成
- </option>
- </select>
- </div>
- <div class="am-form-group am-fl">
- <div class="am-input-group am-input-group-sm tpl-form-border-form">
- <input type="text" class="am-form-field" name="order_no"
- placeholder="请输入订单号"
- value="<?= $request->get('order_no') ?>">
- <div class="am-input-group-btn">
- <button class="am-btn am-btn-default am-icon-search"
- type="submit"></button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </form>
- </div>
- <div class="order-list am-scrollable-horizontal am-u-sm-12 am-margin-top-xs">
- <table width="100%" class="am-table am-table-centered
- am-text-nowrap am-margin-bottom-xs">
- <thead>
- <tr>
- <th width="24%" class="goods-detail">商品信息</th>
- <th width="10%">单价/数量</th>
- <th width="15%">付款价</th>
- <th>买家</th>
- <th>售后类型</th>
- <th>处理状态</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <?php if (!$list->isEmpty()): foreach ($list as $item): ?>
- <tr class="order-empty">
- <td colspan="7"></td>
- </tr>
- <tr>
- <td class="am-text-middle am-text-left" colspan="7">
- <span class="am-margin-right-lg">售后申请时间:<?= $item['create_time'] ?></span>
- <span class="am-margin-right-lg">订单号:<?= $item['order_no'] ?></span>
- </td>
- </tr>
- <tr>
- <td class="goods-detail am-text-middle">
- <div class="goods-image">
- <img src="<?= $item['order_goods']['image']['file_path'] ?>"
- alt="">
- </div>
- <div class="goods-info">
- <p class="goods-title"><?= $item['order_goods']['goods_name'] ?></p>
- <p class="goods-spec am-link-muted"><?= $item['order_goods']['goods_attr'] ?></p>
- </div>
- </td>
- <td class="am-text-middle">
- <p>¥<?= $item['order_goods']['goods_price'] ?></p>
- <p>×<?= $item['order_goods']['total_num'] ?></p>
- </td>
- <td class="am-text-middle">
- <p>¥<?= $item['order_goods']['total_pay_price'] ?></p>
- </td>
- <td class="am-text-middle">
- <p><?= $item['user']['nickName'] ?></p>
- <p class="am-link-muted">(用户id:<?= $item['user']['user_id'] ?>)</p>
- </td>
- <td class="am-text-middle">
- <span class="am-badge am-badge-secondary"> <?= $item['type']['text'] ?> </span>
- </td>
- <td class="am-text-middle">
- <?php if ($item['status']['value'] == 0): ?>
- <!-- 审核状态-->
- <p>
- <span>商家审核:</span>
- <?php if ($item['is_agree']['value'] == 0): ?>
- <span class="am-badge"> <?= $item['is_agree']['text'] ?> </span>
- <?php elseif ($item['is_agree']['value'] == 10): ?>
- <span class="am-badge am-badge-success"> <?= $item['is_agree']['text'] ?> </span>
- <?php elseif ($item['is_agree']['value'] == 20): ?>
- <span class="am-badge am-badge-warning"> <?= $item['is_agree']['text'] ?> </span>
- <?php endif; ?>
- </p>
- <!-- 发货状态-->
- <?php if ($item['type']['value'] == 10 && $item['is_agree']['value'] == 10): ?>
- <p>
- <span>用户发货:</span>
- <?php if ($item['is_user_send'] == 0): ?>
- <span class="am-badge"> 待发货 </span>
- <?php else: ?>
- <span class="am-badge am-badge-success"> 已发货 </span>
- <?php endif; ?>
- </p>
- <?php endif; ?>
- <!-- 商家收货状态-->
- <?php if (
- $item['type']['value'] == 10
- && $item['is_agree']['value'] == 10
- && $item['is_user_send'] == 1
- && $item['is_receipt'] == 0
- ): ?>
- <p><span>商家收货:</span> <span class="am-badge">待收货</span></p>
- <?php endif; ?>
- <?php elseif ($item['status']['value'] == 20): ?>
- <span class="am-badge am-badge-success"> <?= $item['status']['text'] ?> </span>
- <?php elseif ($item['status']['value'] == 10 || $item['status']['value'] == 30): ?>
- <span class="am-badge am-badge-warning"> <?= $item['status']['text'] ?> </span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle">
- <?php $url = url('order.refund/detail', ['order_refund_id' => $item['order_refund_id']]); ?>
- <div class="tpl-table-black-operation">
- <?php if (checkPrivilege('order.refund/detail')): ?>
- <a class="tpl-table-black-operation-green"
- href="<?= $url ?>">售后详情</a>
- <?php endif; ?>
- <?php if (checkPrivilege(['order.refund/detail', 'order.refund/audit'])): ?>
- <?php if ($item['is_agree']['value'] == 0): ?>
- <a class="tpl-table-black-operation-del"
- href="<?= $url ?>#audit">去审核</a>
- <?php endif; ?>
- <?php endif; ?>
- <?php if (checkPrivilege(['order.refund/detail', 'order.refund/receipt'])): ?>
- <?php if (
- $item['type']['value'] == 10
- && $item['is_agree']['value'] == 10
- && $item['is_user_send'] == 1
- && $item['is_receipt'] == 0
- ): ?>
- <a class="tpl-table-black-operation-del"
- href="<?= $url ?>#receipt">确认收货</a>
- <?php endif; ?>
- <?php endif; ?>
- </div>
- </td>
- </tr>
- <?php endforeach; else: ?>
- <tr>
- <td colspan="7" class="am-text-center">暂无记录</td>
- </tr>
- <?php endif; ?>
- </tbody>
- </table>
- </div>
- <div class="am-u-lg-12 am-cf">
- <div class="am-fr"><?= $list->render() ?> </div>
- <div class="am-fr pagination-total am-margin-right">
- <div class="am-vertical-align-middle">总记录:<?= $list->total() ?></div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- $(function () {
- });
- </script>
|