liugc 1 год назад
Родитель
Сommit
99d22b7063
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      app/adminapi/lists/property/PropertyOrderLists.php

+ 1 - 1
app/adminapi/lists/property/PropertyOrderLists.php

@@ -70,7 +70,7 @@ class PropertyOrderLists extends BaseAdminDataLists implements ListsSearchInterf
     public function lists(): array
     {
         return PropertyOrder::with(['propertyHead','propertyUser'])->where($this->searchWhere)->where($this->queryWhere())
-            ->field(['id', 'property_head_id', 'property_user_id', 'remark', 'order_status', 'work_id','address'])
+            ->field(['id', 'property_head_id', 'property_user_id', 'remark', 'order_status', 'work_id','address','create_time'])
             ->limit($this->limitOffset, $this->limitLength)
             ->order(['id' => 'desc'])
             ->select()