admin/resources/views/charts/member/offline_team_order.blade.php

94 lines
4.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@extends('layouts.base')
@section('content')
<link href="{{static_url('yunshop/balance/balance.css')}}" media="all" rel="stylesheet" type="text/css"/>
<div class="w1200 m0a">
<div class="rightlist" id="member-blade">
@include('layouts.tabs')
<div class="panel panel-default">
<div class="panel-body">
<form action="" method="post" class="form-horizontal" role="form" id="form1">
<div class="form-group col-sm-11 col-lg-11 col-xs-12">
<div class="">
<div class='input-group'>
<div class='form-input'>
<p class="input-group-addon" >会员ID</p>
<input class="form-control price" style="width: 40%;" type="text" name="search[member_id]" value="{{ $search['member_id'] ?? ''}}">
</div>
<div class='form-input'>
<p class="input-group-addon" >会员信息</p>
<input class="form-control price" style="width: 40%;" type="text" name="search[member_info]" value="{{ $search['member_info'] ?? ''}}">
</div>
<div class=''>
<p class="" align="center">每天凌晨1点执行数据统计统计截止到前一天的数据建议不要再同一时间设置数据自动备份、快照等计划任务</p>
</div>
</div>
</div>
</div>
<div class="form-group col-sm-1 col-lg-1 col-xs-12">
<div class="">
<input type="submit" class="btn btn-block btn-success" value="搜索">
</div>
</div>
</form>
</div>
<div class='panel-body'>
<table class="table table-hover">
<thead>
<tr>
{{--排序、会员ID、会员信息、团队总人数、支付下线人数、支付订单总数、支付订单总额--}}
<th style='width:80px;'>排行</th>
<th>会员ID</th>
<th>会员信息</th>
<th>团队总人数</th>
<th>支付下线人数</th>
<th>支付订单商品数量</th>
<th>支付订单总额</th>
</tr>
</thead>
<tbody>
@foreach($list as $key => $item)
<tr>
<td>
@if($key + 1 + ($this_page - 1)*$page_size <= 3)
<labe class='label label-danger' style='padding:8px;'>&nbsp;{{ $key + 1 + ($this_page - 1)*$page_size }}&nbsp;</labe>
@else
<labe class='label label-default' style='padding:8px;'>&nbsp;{{ $key + 1 + ($this_page - 1)*$page_size }}&nbsp;</labe>
@endif
</td>
<td>{{ $item['belongs_to_member']['uid'] }}</td>
<td>
@if(!empty($item['belongs_to_member']['avatar_image']))
<img src='{{ $item['belongs_to_member']['avatar_image'] }}' style='width:30px;height:30px;padding:1px;border:1px solid #ccc' /><br/>
@endif
@if(empty($item['belongs_to_member']['nickname']))
未更新
@else
{{ $item['belongs_to_member']['nickname'] }}
@endif
</td>
<td>{{ $item['team_count'] }}</td>
<td>{{ $item['pay_count'] }}</td>
<td>{{ $item['goods_count'] }}</td>
<td>{{ $item['amount'] }}</td>
</tr>
@endforeach
</table>
{!! $page !!}
</div>
</div>
</div>
</div>
@endsection