|
|
|
@ -68,11 +68,11 @@ class IndustryOrderController extends AdminController |
|
|
|
->display('查看') |
|
|
|
->modal('购买信息', function ($model) { |
|
|
|
$info = [ |
|
|
|
'预留姓名' => $this->name ?? '', |
|
|
|
'预留手机' => $this->mobile ?? '', |
|
|
|
'产品名称' => $this->title, |
|
|
|
'规格名称' => $this->spec->name ?? '', |
|
|
|
'规格日期' => $this->spec->date ?? '', |
|
|
|
['预留姓名', $this->name ?? ''], |
|
|
|
['预留手机', $this->mobile ?? ''], |
|
|
|
['产品名称', $this->title], |
|
|
|
['规格名称', $this->spec->name ?? ''], |
|
|
|
['规格日期', $this->spec->date ?? ''], |
|
|
|
]; |
|
|
|
return Table::make([], $info); |
|
|
|
}); |
|
|
|
|