@extends('layouts.base') @section('content')
| ID | 用户信息 | 订单商品 | 阶段时间 | 状态 | 预计解冻时间 实际解冻时间 |
返利金额 | 解冻后是否需要复购 | 下单时间 |
|---|---|---|---|---|---|---|---|---|
| {{ $item['id'] }} |
|
{{ $item['goods']['title'] }} {{ $item['order']['order_sn'] }} |
第{{ $item['quarter'] }}季度第{{ $item['month'] }}个月 | {{--状态:0=冻结中,1=待结算,2=已结算,3=已失效,4=已退款(失效)--}} @switch($item['status']) @case(0)冻结中@break @case(1)待结算@break @case(2)已结算@break @case(3)已失效@break @case(4)已退款@break @endswitch | {{ $item['expect_thaw_time'] ?? '-' }} {{ $item['reality_thaw_time'] ?? '-' }} |
{{ $item['money'] ?? 0 }} | {{--领取后是否需要复购:0=不需要,1=需要--}} @switch($item['is_repurchase']) @case(0)不需要@break @case(1)需要@break @endswitch | {{ $item['created_at'] }} |