update
This commit is contained in:
@@ -60,6 +60,7 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>用户ID</th>
|
||||
<th>邀请人ID</th>
|
||||
<th>昵称</th>
|
||||
<th>头像地址</th>
|
||||
<th>余额</th>
|
||||
@@ -68,6 +69,7 @@
|
||||
<th>手机号</th>
|
||||
<th>角色</th>
|
||||
<th>用户宠物</th>
|
||||
<th>优惠券</th>
|
||||
<th>创建时间</th>
|
||||
<th>用户操作</th>
|
||||
</tr>
|
||||
@@ -75,6 +77,7 @@
|
||||
<tbody>
|
||||
<tr th:each="item:${list}">
|
||||
<td th:text="${item.id}">用户ID</td>
|
||||
<td th:text="${item.inviteUserId}">邀请人ID</td>
|
||||
<td th:text="${item.nickName}">昵称</td>
|
||||
<td><img th:src="${item.headImgUrl}" alt="url" style="width: 100px; height: auto;"/> </td>
|
||||
<td th:text="${item.amount == null ? 0 : item.amount / 10.0}">余额</td>
|
||||
@@ -85,6 +88,9 @@
|
||||
<td>
|
||||
<a class="open-popup" data-title="宠物下单" th:attr="data-url=@{'/users/users/toPetInfos/'+${item.id}}" data-size="auto" href="#">宠物下单</a>
|
||||
</td>
|
||||
<td>
|
||||
<a class="open-popup" data-title="优惠券列表" th:attr="data-url=@{'/users/users/toCouponsInfos/'+${item.id}}" data-size="auto" href="#">优惠券列表</a>
|
||||
</td>
|
||||
<td th:text="${item.createTime}">创建时间</td>
|
||||
<td>
|
||||
<a class="open-popup" data-title="充值" th:attr="data-url=@{'/users/users/toRecharge/'+${item.id}}" data-size="auto" href="#">充值</a>
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org"
|
||||
xmlns:mo="http://www.thymeleaf.org">
|
||||
<head th:replace="/common/template :: header(~{::title},~{::link},~{::style})">
|
||||
</head>
|
||||
<body class="timo-layout-page">
|
||||
<div class="layui-card">
|
||||
|
||||
<div class="layui-card-body">
|
||||
<div class="timo-table-wrap">
|
||||
<table class="layui-table timo-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>优惠券ID</th>
|
||||
<th>优惠券名称</th>
|
||||
<th>优惠券折扣</th>
|
||||
<th>优惠券状态</th>
|
||||
<th>过期时间</th>
|
||||
<th>最后更新时间</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr th:each="item:${userCouponsList}">
|
||||
<td th:text="${item.id}">优惠券ID</td>
|
||||
<td th:text="${item.coupons.name}">优惠券名称</td>
|
||||
<td th:text="${item.coupons.discount / 10.0}">优惠券折扣</td>
|
||||
<td th:text="${#dicts.userCouponsStatus(item.couponsStatus)}">优惠券状态</td>
|
||||
<td th:text="${item.lastExpireTime}">过期时间</td>
|
||||
<td th:text="${item.updateTime}">最后更新时间</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script th:replace="/common/template :: script"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user