Commit 1af077ce9db5a068683c001a04cecada3fd5e06d

Authored by liwei2917
1 parent 27142205

修改审核列表左上角认领数量,改为10条和100条

src/main/resources/templates/page/comment.html
... ... @@ -39,10 +39,10 @@
39 39 onclick="receive(0);">认领
40 40 </button>
41 41 <button type="button" class="btn btn-success btn-sm margin-r-5 action_bottom"
42   - onclick="receive(100);">认领100条
  42 + onclick="receive(10);">认领10条
43 43 </button>
44 44 <button type="button" class="btn btn-success btn-sm margin-r-5 action_bottom"
45   - onclick="receive(1000);">认领1000条
  45 + onclick="receive(100);">认领100条
46 46 </button>
47 47 <button type="button" class="btn btn-warning btn-sm margin-r-5 action_bottom"
48 48 onclick="retReceive();">退领
... ... @@ -307,19 +307,19 @@
307 307 <button class="btn btn-warning btn-sm">退领</button>
308 308 </a>
309 309  
310   - <span th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> &nbsp;</span>
311   - <a class="pass_one"
312   - th:href="@{'javascript:comment('+${comment.id}+',1)'}"
313   - th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}">
314   - <button class="btn btn-success btn-sm">通过</button>
315   - </a>
316   -
317   - <span th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> &nbsp;</span>
318   - <a class="failed_one"
319   - th:href="@{'javascript:comment('+${comment.id}+',2)'}"
320   - th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}">
321   - <button class="btn btn-danger btn-sm">拒绝</button>
322   - </a>
  310 +<!-- <span th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> &nbsp;</span> -->
  311 +<!-- <a class="pass_one" -->
  312 +<!-- th:href="@{'javascript:comment('+${comment.id}+',1)'}" -->
  313 +<!-- th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> -->
  314 +<!-- <button class="btn btn-success btn-sm">通过</button> -->
  315 +<!-- </a> -->
  316 +
  317 +<!-- <span th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> &nbsp;</span> -->
  318 +<!-- <a class="failed_one" -->
  319 +<!-- th:href="@{'javascript:comment('+${comment.id}+',2)'}" -->
  320 +<!-- th:if="${comment.receive and session.sessionUser.userId==comment.receive_user_id}"> -->
  321 +<!-- <button class="btn btn-danger btn-sm">拒绝</button> -->
  322 +<!-- </a> -->
323 323 </td>
324 324 </tr>
325 325 </tbody>
... ...
src/main/resources/templates/page/video.html
... ... @@ -33,11 +33,11 @@
33 33 </button>
34 34 <button type="button" class="btn btn-success btn-sm margin-r-5 action claim"
35 35 value="2" data="claim100" id="claim100" data-toggle="modal"
36   - data-target="#modal" onclick="receive(100);">认领100条
  36 + data-target="#modal" onclick="receive(10);">认领10条
37 37 </button>
38 38 <button type="button" class="btn btn-success btn-sm margin-r-5 action claim"
39 39 value="2" data="claim1000" id="claim1000" data-toggle="modal"
40   - data-target="#modal" onclick="receive(1000);">认领1000条
  40 + data-target="#modal" onclick="receive(100);">认领100条
41 41 </button>
42 42 <button type="button" class="btn btn-warning btn-sm margin-r-5 action claim"
43 43 value="2" data="claim1000" id="claim1000" data-toggle="modal"
... ...