소스 검색

Merge branch '20250522_diywebfr'

15313670163 4 일 전
부모
커밋
1913133053
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/JsonRpc/PublicRpcService.php

+ 1 - 1
app/JsonRpc/PublicRpcService.php

@@ -950,7 +950,7 @@ class PublicRpcService implements PublicRpcServiceInterface
      */
     public function getAllTemplate(array $data): array
     {
-        $result = Template::where('template_name','like','%'.$data['template_name'].'%')->get();
+        $result = Template::get()->all();
         if(empty($result)){
             return Result::error("暂无皮肤", 0);
         }