@extends('layouts.base') @section('content')
{{--顶部搜索--}}
{!! app\common\helpers\AddressHelper::tplLinkedAddress(['search[province_id]','search[city_id]','search[area_id]'], []) !!}
导出 Excel
@if (!$is_apply)
添加
@endif
搜索
{{--信息列表--}}
ID
终端商信息
引荐人信息
注册人信息
营业执照
门头照片
内部照片
@if($is_apply) 申请时间 @else 审核时间 @endif
操作
@foreach ($list as $item)
{{ $item['id'] }}
{{ $item['title'] }}
{{ $item['province_info']['areaname'] }}{{ $item['city_info']['areaname'] }}{{ $item['area_info']['areaname'] }}
{{--状态:0=待审核,1=使用中,2=驳回--}} @if ($item['status'] == 0)
待审核
@elseif ($item['status'] == 1)
使用中
@elseif ($item['status'] == 2)
已驳回
@endif
昵称:{{ $item['team_dividend_member']['nickname'] }}
ID:{{ $item['team_dividend_member']['uid'] }}
注册人:{{ $item['contacts'] }}
联系电话:{{ $item['contacts_phone'] }}
@if($is_apply) {{ $item['created_at'] }} @else {{ $item['to_examine_time'] }} @endif
@if ($is_apply) {{--审核内容--}} @if ($item['status'] == 0)
审核通过
驳回申请
@endif
详情
@else {{--使用中内容--}}
编辑
删除
销售统计
@endif
@endforeach
{!! $pager !!}
{{--驳回弹框--}}
×
驳回申请
@endsection