| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <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="am-scrollable-horizontal am-u-sm-12">
- <table width="100%" class="am-table am-table-compact am-table-striped
- tpl-table-black am-text-nowrap">
- <thead>
- <tr>
- <th>ID</th>
- <th class="am-text-center">用户</th>
- <th>商品图片</th>
- <th>商品名称</th>
- <th>评分</th>
- <th>评价内容</th>
- <th>是否有图片</th>
- <th>显示状态</th>
- <th>评价排序</th>
- <th>评价时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <?php if (!$list->isEmpty()): foreach ($list as $item): ?>
- <tr>
- <td class="am-text-middle"><?= $item['comment_id'] ?></td>
- <td class="am-text-center">
- <p class=""><?= $item['user']['nickName'] ?></p>
- <p class="am-link-muted">(用户id:<?= $item['user']['user_id'] ?>)</p>
- </td>
- <td class="am-text-middle">
- <a href="<?= $item['order_goods']['image']['file_path'] ?>"
- title="点击查看大图" target="_blank">
- <img src="<?= $item['order_goods']['image']['file_path'] ?>"
- width="50" height="50" alt="商品图片">
- </a>
- </td>
- <td class="am-text-middle">
- <p class="item-title"><?= $item['order_goods']['goods_name'] ?></p>
- </td>
- <td class="am-text-middle">
- <?php if ($item['score'] == 10) : ?>
- <span class="x-color-green">好评</span>
- <?php elseif ($item['score'] == 20) : ?>
- <span class="x-color-yellow">中评</span>
- <?php else: ?>
- <span class="x-color-red">差评</span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle">
- <p class="item-title"><?= $item['content'] ?></p>
- </td>
- <td class="am-text-middle">
- <?php if ($item['is_picture']) : ?>
- <span class="x-color-green">是</span>
- <?php else: ?>
- <span class="">否</span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle">
- <?php if ($item['status']) : ?>
- <span class="x-color-green">显示</span>
- <?php else: ?>
- <span class="x-color-red">隐藏</span>
- <?php endif; ?>
- </td>
- <td class="am-text-middle"><?= $item['sort'] ?></td>
- <td class="am-text-middle"><?= $item['create_time'] ?></td>
- <td class="am-text-middle">
- <div class="tpl-table-black-operation">
- <?php if (checkPrivilege('apps.sharing.comment/detail')): ?>
- <a href="<?= url('apps.sharing.comment/detail', ['comment_id' => $item['comment_id']]) ?>">
- <i class="am-icon-pencil"></i> 详情
- </a>
- <?php endif; ?>
- <?php if (checkPrivilege('apps.sharing.comment/delete')): ?>
- <a href="javascript:void(0);"
- class="item-delete tpl-table-black-operation-del"
- data-id="<?= $item['comment_id'] ?>">
- <i class="am-icon-trash"></i> 删除
- </a>
- <?php endif; ?>
- <?php if (checkPrivilege('apps.sharing.order/detail')): ?>
- <a class="tpl-table-black-operation-default"
- href="<?= url('apps.sharing.order/detail', ['order_id' => $item['order_id']]) ?>">
- <i class="iconfont icon-order-o"></i> 订单详情
- </a>
- <?php endif; ?>
- </div>
- </td>
- </tr>
- <?php endforeach; else: ?>
- <tr>
- <td colspan="11" 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 () {
- // 删除元素
- var url = "<?= url('apps.sharing.comment/delete') ?>";
- $('.item-delete').delete('comment_id', url);
- });
- </script>
|