@extends('admin.public.base') @section('body_class') style="margin: 0 auto;width: 96%;padding: 30px 0px;" @endsection @section('content') @if( check_auth('admin/orders/import_execl') ) @endif
重置 @if( check_auth('admin/orders/down_excel') ) @endif
@csrf
@foreach ($list as $a) @endforeach
订单编号 产品编码 下单用户 产品名称 产品规格 产品数量 订单总价 成交总价 收货人 联系方式 收货地址 订单状态 下单时间 操作
{{$a['is_rebate']?'【赠品】':''}}{{$a['order_code']}} {{$a['product_code']}} {{$a['custom_name']}} {{$a['product_name']}} {{$a['sku_attr_names']}} {{$a['buy_num']}} ¥{{$a['price_total']}} ¥{{$a['pay_total']}} {{$a['contact_name']}} {{$a['contact_phone']}} {{$a['contact_province']}}/{{$a['contact_city']}}/{{$a['contact_area']}}/{{$a['contact_addr']}} {{$a['contact_shop']}} {{$a['state']}} {{date('Y-m-d H:i:s',$a['insert_time'])}} @if( check_auth('admin/orders/detail') ) {{$a['status']==9?'审核':'查看'}} @endif @if( $a['status'] == 1 && check_auth('admin/orders/set_status') ) 取消 @endif
{{$list->render()}}
总计 {{$list->total()}} 个订单
@endsection @section('javascript') @endsection