gq 7 lat temu
rodzic
commit
5b919e67c0

+ 1 - 1
server/resources/views/admin/dream/info/index.blade.php

xqd
@@ -109,7 +109,7 @@
 										<button onclick="layer.open({type: 2,area: ['80%', '90%'],content: '{{ U('Dream/Info/view',['id'=>$item->id])}}'});"  class="btn btn-primary ">查看更多</button>
 									@endif
 									<a href = "{{ U('Interaction/Info/view',['id'=>$item->id])}} " class="btn btn-primary ">查看动态</a>
-									<a href = "{{ U('Dream/Info/supportInfo',['dream_id'=>$item->id])}} " class="btn btn-success ">支持记录</a>
+									<a href = "{{ U('Dream/Info/supportInfo',['dream_id'=>$item->id])}} " class="btn btn-success ">捐款动态</a>
 								</td>
 							</tr>
 							@endforeach

+ 2 - 1
server/resources/views/admin/dream/support_dream/index.blade.php

xqd xqd
@@ -22,6 +22,7 @@
 						<thead>
     						<tr>
 								
+            <th class="sorting" data-sort="user_id"> 支持者id </th>
             <th class="sorting" data-sort="user_id"> 支持者 </th>
             <th class="sorting" data-sort="coin"> 梦想币 </th>
             <th class="sorting" data-sort="score"> 获得的梦想分 </th>
@@ -31,7 +32,7 @@
 						<tbody>
 						@if(isset($list))
 							@foreach($list as $key => $item)							<tr>
-								
+			<td>{{ $item->user_id }}</td>
             <td>{{ empty($item->user) ? '' : $item->user->nickname }}</td>
             <td>{{ $item->coin }}</td>
             <td>{{ $item->score }}</td>

+ 3 - 2
server/resources/views/admin/user/cash/out/index.blade.php

xqd xqd
@@ -64,7 +64,7 @@
             <td>{{ $item->cash }}</td>
             <td>{{ $item->created_at }}</td>
 								<td>
-									<div class="btn-group">
+								{{--	<div class="btn-group">
 										<button data-toggle="dropdown"
 											class="btn btn-warning btn-sm dropdown-toggle"
 											aria-expanded="false">
@@ -83,7 +83,8 @@
 											@endif
 
 										</ul>
-									</div>
+									</div>--}}
+									<a href="{{ U('User/Cash/Out/update',['id'=>$item->id])}}" class="btn btn-primary">审核</a>
 								</td>
 							</tr>
 							@endforeach