浏览代码

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);
         }