From ec2cd375e5caa6fc8c0e6c00c98916c62f5cc7e7 Mon Sep 17 00:00:00 2001 From: "iVampireSP.com" Date: Fri, 3 Feb 2023 21:07:57 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/work-orders/index.blade.php | 4 ++++ resources/views/admin/work-orders/show.blade.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/resources/views/admin/work-orders/index.blade.php b/resources/views/admin/work-orders/index.blade.php index 0aff5c5..8dca685 100644 --- a/resources/views/admin/work-orders/index.blade.php +++ b/resources/views/admin/work-orders/index.blade.php @@ -23,6 +23,7 @@ 模块 主机 发起者 + 创建时间 状态 操作 @@ -66,6 +67,9 @@ class="host_name" {{ $workOrder->user->name }} + + {{ $workOrder->created_at }}, {{ $workOrder->created_at->diffForHumans() }} + diff --git a/resources/views/admin/work-orders/show.blade.php b/resources/views/admin/work-orders/show.blade.php index cb07ed8..6909d2e 100644 --- a/resources/views/admin/work-orders/show.blade.php +++ b/resources/views/admin/work-orders/show.blade.php @@ -6,6 +6,10 @@

{{ $workOrder->title }}

UUID: {{ $workOrder->uuid }} +
+ 创建时间: {{ $workOrder->created_at }}, {{ $workOrder->created_at->diffForHumans() }}。 +
+ 最后更新时间: {{ $workOrder->updated_at }}。

编辑此工单 用户: {{ $workOrder->user->name }}