WIN-2308041133\Administrator 9 달 전
부모
커밋
380cce619a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/common/dao/store/order/VerifyRecordDao.php

+ 1 - 1
app/common/dao/store/order/VerifyRecordDao.php

@@ -50,7 +50,7 @@ class VerifyRecordDao extends BaseDao
                 $query->where('product_id',$where['product_id']);
             })->when(isset($where['status']) && $where['status'] !== '',function($query) use($where){
                 $query->where('status',$where['status']);
-            });
+            })->with(['product','user']);
         return $query;
     }