Commit 1afbd7f0 by 杨昕

优化激活码页面

parent a94960cd
Pipeline #16529 passed with stages
in 53 seconds
...@@ -37,11 +37,11 @@ ...@@ -37,11 +37,11 @@
</form> </form>
</div> </div>
@if(count($media_categories) > 0)
<div class="active_code" style="margin: 20px 0;"> <div class="active_code" style="margin: 20px 0;">
@if(count($activity_codes) > 0)
<div class="userinfo"> <div class="userinfo">
加密人员:张三 加密人员:{{$mobile}}
</div> </div>
<div class="active_code_list"> <div class="active_code_list">
<table class="table table-hover"> <table class="table table-hover">
...@@ -53,21 +53,24 @@ ...@@ -53,21 +53,24 @@
</thead> </thead>
<tbody> <tbody>
@foreach ($media_categories as $key => $media_category) @foreach ($activity_codes as $key => $activity_code)
<tr> <tr>
<td>{{$key+1}}</td> <td>{{$key+1}}</td>
<td >{{$media_category}}</td> <td >{{$activity_code}}</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
@else @else
@if($doc_id)
<div>未查到相关数据</div>
@endif
@endif
</div>
@endif
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment