소스 검색

更新内容

moshaorui 2 달 전
부모
커밋
6a949cbb3d

+ 60 - 35
app/Admin/Controllers/SiteAlbumController.php

@@ -4,6 +4,7 @@ namespace App\Admin\Controllers;
 
 use App\Admin\Repositories\SiteAlbum;
 use App\Admin\Repositories\SiteAlbumFolder;
+use App\Admin\Repositories\SiteAlbumLog;
 use App\Libraries\CommonHelper;
 use App\Models\SiteAlbumFolder as SiteAlbumFolderModel;
 use Dcat\Admin\Form;
@@ -14,6 +15,7 @@ use Dcat\Admin\Layout\Content;
 use Dcat\Admin\Admin;
 use App\Admin\Repositories\NullRepository;
 use Dcat\Admin\Traits\HasUploadedFile;
+use Illuminate\Support\Facades\Cache;
 use function Symfony\Component\Translation\t;
 
 class SiteAlbumController extends AdminController
@@ -204,7 +206,28 @@ JS
                 $pdfs = $form->input('pdf');
                 $pdfs = empty($pdfs) ? [] : $pdfs;
                 $form->input('pdf', $pdfs);
+                //记录日志
+                if (!$form->isCreating()) {
+                    $id = $form->getKey();
+                    $cacheKey = 'album_log_'.$id;
+                    Cache::add($cacheKey, json_encode($form->model()->toArray()), 3600);
+                }
+            });
+
+            $form->saved(function (Form $form) {
+                if (empty($form->input('model')) == false) {
+                    $id = $form->getKey();
+                    $action = $form->isCreating() ? 'add' : 'edit';
+                    if ($action == 'add') {
+                        $oldData = "[]";
+                    } else {
+                        $oldData = Cache::get('album_log_'. $id);
+                        Cache::forget('album_log_'. $id);
+                    }
+                    SiteAlbumLog::log($action, $id,$form->input('model'),$oldData);
+                }
             });
+
             $form->tab(admin_trans_label('basic_info'), function (Form $form) {
                 $selectOptions = SiteAlbumFolder::selectOptions();
                 unset($selectOptions[0]);
@@ -363,12 +386,43 @@ JS
                          return json_encode($data);
                      });
             });
-            $folderTabs = SiteAlbumFolder::getAllFolderTabs();
-            $folderTabs = json_encode($folderTabs);
 
-                //以下JS作用:1.点击列表时,把folder_id参数传递给表单 2.切换文件夹时,显示隐藏相应的tab
-                Admin::script(
-<<<JS
+
+            //以下JS代码用于点击列表时,带上folder_id参数,还有隐藏的tab切换功能
+            $thisObj->formAddJS();
+        });
+    }
+
+    /*
+     * 自动生成视频封面,并上传到OSS
+     */
+    private function autoGenerateCover($videoSrc)
+    {
+        $cover = $videoSrc.'?x-oss-process=video/snapshot,t_2000,f_jpg,h_500,m_fast';
+        $cover = CommonHelper::ossUrl($cover);
+        $path = $this->upload($cover,'.jpg');
+        return $path;
+    }
+
+    private function upload($file,$imgType='.jpg')
+    {
+        $disk = $this->disk('oss');
+        $newName = uniqueCode("video_cover_").$imgType;
+        $dir = config("admin.upload.directory.image").'/uploads/'.date("Ymd").'/'.$newName;
+        $contents = file_get_contents($file);
+        if (!$contents) {
+            return ['status'=>false,'msg'=>'图片上传失败,请检查PHP配置'];
+        }
+        $disk->put($dir, $contents);
+        return ['status'=>true,'path'=>$dir];
+    }
+
+    private function formAddJS() {
+        $folderTabs = SiteAlbumFolder::getAllFolderTabs();
+        $folderTabs = json_encode($folderTabs);
+        //以下JS作用:1.点击列表时,把folder_id参数传递给表单 2.切换文件夹时,显示隐藏相应的tab
+        Admin::script(
+            <<<JS
 const featherIcon = document.querySelector('i.feather.icon-list');
 if (featherIcon) {
     // 找到 <i> 的上级 <a> 元素
@@ -419,36 +473,7 @@ function showHideTabs(fid) {
         }
 }
 JS
-                );
-
-
-        });
-
+        );
 
     }
-
-    /*
-     * 自动生成视频封面
-     */
-    private function autoGenerateCover($videoSrc)
-    {
-        $cover = $videoSrc.'?x-oss-process=video/snapshot,t_2000,f_jpg,h_500,m_fast';
-        //TODO 上传到OSS
-        $cover = CommonHelper::ossUrl($cover);
-        $path = $this->upload($cover,'.jpg');
-        return $path;
-    }
-
-    private function upload($file,$imgType='.jpg')
-    {
-        $disk = $this->disk('oss');
-        $newName = uniqueCode("video_cover_").$imgType;
-        $dir = config("admin.upload.directory.image").'/uploads/'.date("Ymd").'/'.$newName;
-        $contents = file_get_contents($file);
-        if (!$contents) {
-            return ['status'=>false,'msg'=>'图片上传失败,请检查PHP配置'];
-        }
-        $disk->put($dir, $contents);
-        return ['status'=>true,'path'=>$dir];
-    }
 }

+ 80 - 0
app/Admin/Controllers/SiteAlbumLogController.php

@@ -0,0 +1,80 @@
+<?php
+
+namespace App\Admin\Controllers;
+
+use App\Models\SiteAlbumLog;
+use Dcat\Admin\Form;
+use Dcat\Admin\Grid;
+use Dcat\Admin\Show;
+use Dcat\Admin\Http\Controllers\AdminController;
+use Dcat\Admin\Layout\Content;
+use Dcat\Admin\Admin;
+
+class SiteAlbumLogController extends AdminController
+{
+    /**
+     * page index
+     */
+    public function index(Content $content)
+    {
+        return $content
+            ->header('列表')
+            ->description('全部')
+            ->breadcrumb(['text'=>'列表','url'=>''])
+            ->body($this->grid());
+    }
+
+    /**
+     * Make a grid builder.
+     *
+     * @return Grid
+     */
+    protected function grid()
+    {
+        return Grid::make(new SiteAlbumLog(), function (Grid $grid) {
+            $grid->column('id')->sortable();
+            $grid->column('nick_name');
+            $grid->column('action');
+            $grid->column('model');
+            $grid->column('content')->display(function ($value) {
+                return implode(' | ', json_decode($value, true));
+            });
+            $grid->column('created_at');
+            $grid->column('updated_at')->sortable();
+            //搜索
+            $grid->filter(function (Grid\Filter $filter) {
+                $filter->panel();
+                $filter->expand();
+                $filter->equal('nick_name')->width(2);
+                $filter->equal('model')->width(2);
+            });
+            //按钮
+            $grid->disableCreateButton();
+            $grid->disableDeleteButton();
+            $grid->disableEditButton();
+            $grid->disableActions();
+            $grid->model()->orderBy('id', 'desc');
+        });
+    }
+
+    /**
+     * Make a show builder.
+     *
+     * @param mixed $id
+     *
+     * @return Show
+     */
+    protected function detail($id)
+    {
+        return Show::make($id, new SiteAlbumLog(), function (Show $show) {
+            $show->field('id');
+            $show->field('nick_name');
+            $show->field('action');
+            $show->field('model');
+            $show->field('content');
+            $show->field('created_at');
+            $show->field('updated_at');
+        });
+    }
+
+}

+ 7 - 0
app/Admin/Repositories/SiteAlbum.php

@@ -38,4 +38,11 @@ class SiteAlbum extends EloquentRepository
         return $result;
     }
 
+    public static function getByFolderId($id)
+    {
+        $siteAlbum = new Model();
+        $result = $siteAlbum->where('folder_id', $id)->first();
+        return $result;
+    }
+
 }

+ 56 - 0
app/Admin/Repositories/SiteAlbumLog.php

@@ -0,0 +1,56 @@
+<?php
+
+namespace App\Admin\Repositories;
+
+use App\Models\SiteAlbumLog as Model;
+use App\Models\SiteAlbum as AlbumModel;
+use Dcat\Admin\Admin;
+use Dcat\Admin\Repositories\EloquentRepository;
+
+class SiteAlbumLog extends EloquentRepository
+{
+    /**
+     * Model.
+     *
+     * @var string
+     */
+    protected $eloquentClass = Model::class;
+
+    /*
+     * 记录日志
+     */
+    public static function log($action,$albumId,$model,$input)
+    {
+        $data = AlbumModel::find($albumId)->toArray();
+        $input = json_decode($input,true);
+        $content = [];
+        if ($action == 'add') {
+            if ($data['cover'] != '[]') {$content[] = '主图';}
+            if ($data['en_detail'] != '[]') {$content[] = '英文详情';}
+            if ($data['cn_detail'] != '[]') {$content[] = '中文详情';}
+            if ($data['poster'] != '[]') {$content[] = '海报';}
+            if ($data['cert'] != '[]') {$content[] = '证书';}
+            if ($data['pdf'] != '[]') {$content[] = 'PDF';}
+            if ($data['video'] != '[]') {$content[] = '视频';}
+        } else if ($action == 'edit') {
+            if ($data['cover'] != $input['cover']) {$content[] = '主图';}
+            if ($data['en_detail'] != $input['en_detail']) {$content[] = '英文详情';}
+            if ($data['cn_detail'] != $input['cn_detail']) {$content[] = '中文详情';}
+            if ($data['poster'] != $input['poster']) {$content[] = '海报';}
+            if ($data['cert'] != $input['cert']) {$content[] = '证书';}
+            if ($data['pdf'] != $input['pdf']) {$content[] = 'PDF';}
+            if ($data['video'] != $input['video']) {$content[] = '视频';}
+        }
+        if (empty($content) == false) {
+            $nickName = Admin::user()->name;
+            $log = new Model();
+            $log->nick_name = $nickName;
+            $log->action = $action;
+            $log->model = $model;
+            $log->content = json_encode($content);
+            $log->album_id = $albumId;
+            $log->save();
+        }
+    }
+
+}

+ 2 - 1
app/Admin/routes.php

@@ -17,7 +17,6 @@ Route::group([
 ], function (Router $router) {
     //主页
     $router->get('/', 'HomeController@index');
-
     // 定义切换语言的路由
     $router->get('language-switch','LanguageController@index');
     // 不需要登录的路由
@@ -26,6 +25,8 @@ Route::group([
     $router->resource('site-folder', 'SiteAlbumFolderController');
     //相册
     $router->resource('site-album', 'SiteAlbumController');
+    //相册日志
+    $router->get('site-album-log', 'SiteAlbumLogController@index');
 });
 
 // 定义RPC服务

+ 14 - 0
app/Models/SiteAlbumLog.php

@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Models;
+
+use Dcat\Admin\Traits\HasDateTimeFormatter;
+
+use Illuminate\Database\Eloquent\Model;
+
+class SiteAlbumLog extends Model
+{
+	use HasDateTimeFormatter;
+    protected $table = 'site_album_log';
+    
+}

+ 2 - 0
app/Providers/AppServiceProvider.php

@@ -44,7 +44,9 @@ class AppServiceProvider extends ServiceProvider
                     Log::info($sql . ' [' . $query->time . 'ms]');
                 }
             });
+
         }
+        //
 
 
     }

+ 2 - 1
config/app.php

@@ -69,7 +69,8 @@ return [
     |
     */
 
-    'timezone' => 'UTC',
+    //'timezone' => 'UTC',
+    'timezone' => 'Asia/Shanghai',
 
     /*
     |--------------------------------------------------------------------------

+ 2 - 2
config/dictionary.php

@@ -20,8 +20,8 @@ return [
 
     //是否启用
     'enabled' => [
-        '1' => 'yes',
-        '0' => 'no',
+        '1' => 'Yes',
+        '0' => 'No',
     ],
 
 

+ 278 - 0
dcat_admin_ide_helper.php

@@ -0,0 +1,278 @@
+<?php
+
+/**
+ * A helper file for Dcat Admin, to provide autocomplete information to your IDE
+ *
+ * This file should not be included in your code, only analyzed by your IDE!
+ *
+ * @author jqh <841324345@qq.com>
+ */
+namespace Dcat\Admin {
+    use Illuminate\Support\Collection;
+
+    /**
+     * @property Grid\Column|Collection id
+     * @property Grid\Column|Collection name
+     * @property Grid\Column|Collection type
+     * @property Grid\Column|Collection version
+     * @property Grid\Column|Collection detail
+     * @property Grid\Column|Collection created_at
+     * @property Grid\Column|Collection updated_at
+     * @property Grid\Column|Collection is_enabled
+     * @property Grid\Column|Collection parent_id
+     * @property Grid\Column|Collection order
+     * @property Grid\Column|Collection icon
+     * @property Grid\Column|Collection uri
+     * @property Grid\Column|Collection extension
+     * @property Grid\Column|Collection permission_id
+     * @property Grid\Column|Collection menu_id
+     * @property Grid\Column|Collection slug
+     * @property Grid\Column|Collection http_method
+     * @property Grid\Column|Collection http_path
+     * @property Grid\Column|Collection role_id
+     * @property Grid\Column|Collection user_id
+     * @property Grid\Column|Collection value
+     * @property Grid\Column|Collection username
+     * @property Grid\Column|Collection password
+     * @property Grid\Column|Collection avatar
+     * @property Grid\Column|Collection remember_token
+     * @property Grid\Column|Collection language
+     * @property Grid\Column|Collection path_id
+     * @property Grid\Column|Collection content
+     * @property Grid\Column|Collection cover
+     * @property Grid\Column|Collection photo
+     * @property Grid\Column|Collection poster
+     * @property Grid\Column|Collection video
+     * @property Grid\Column|Collection cert
+     * @property Grid\Column|Collection detail_cn
+     * @property Grid\Column|Collection pdf
+     * @property Grid\Column|Collection deleted_at
+     * @property Grid\Column|Collection path
+     * @property Grid\Column|Collection path_md5
+     * @property Grid\Column|Collection status
+     * @property Grid\Column|Collection weigh
+     * @property Grid\Column|Collection email
+     * @property Grid\Column|Collection token
+     * @property Grid\Column|Collection tokenable_type
+     * @property Grid\Column|Collection tokenable_id
+     * @property Grid\Column|Collection abilities
+     * @property Grid\Column|Collection last_used_at
+     * @property Grid\Column|Collection expires_at
+     * @property Grid\Column|Collection folder_id
+     * @property Grid\Column|Collection parameters
+     * @property Grid\Column|Collection en_detail
+     * @property Grid\Column|Collection cn_detail
+     * @property Grid\Column|Collection enabled
+     * @property Grid\Column|Collection folder_type
+     * @property Grid\Column|Collection show_tabs
+     * @property Grid\Column|Collection nick_name
+     * @property Grid\Column|Collection action
+     *
+     * @method Grid\Column|Collection id(string $label = null)
+     * @method Grid\Column|Collection name(string $label = null)
+     * @method Grid\Column|Collection type(string $label = null)
+     * @method Grid\Column|Collection version(string $label = null)
+     * @method Grid\Column|Collection detail(string $label = null)
+     * @method Grid\Column|Collection created_at(string $label = null)
+     * @method Grid\Column|Collection updated_at(string $label = null)
+     * @method Grid\Column|Collection is_enabled(string $label = null)
+     * @method Grid\Column|Collection parent_id(string $label = null)
+     * @method Grid\Column|Collection order(string $label = null)
+     * @method Grid\Column|Collection icon(string $label = null)
+     * @method Grid\Column|Collection uri(string $label = null)
+     * @method Grid\Column|Collection extension(string $label = null)
+     * @method Grid\Column|Collection permission_id(string $label = null)
+     * @method Grid\Column|Collection menu_id(string $label = null)
+     * @method Grid\Column|Collection slug(string $label = null)
+     * @method Grid\Column|Collection http_method(string $label = null)
+     * @method Grid\Column|Collection http_path(string $label = null)
+     * @method Grid\Column|Collection role_id(string $label = null)
+     * @method Grid\Column|Collection user_id(string $label = null)
+     * @method Grid\Column|Collection value(string $label = null)
+     * @method Grid\Column|Collection username(string $label = null)
+     * @method Grid\Column|Collection password(string $label = null)
+     * @method Grid\Column|Collection avatar(string $label = null)
+     * @method Grid\Column|Collection remember_token(string $label = null)
+     * @method Grid\Column|Collection language(string $label = null)
+     * @method Grid\Column|Collection path_id(string $label = null)
+     * @method Grid\Column|Collection content(string $label = null)
+     * @method Grid\Column|Collection cover(string $label = null)
+     * @method Grid\Column|Collection photo(string $label = null)
+     * @method Grid\Column|Collection poster(string $label = null)
+     * @method Grid\Column|Collection video(string $label = null)
+     * @method Grid\Column|Collection cert(string $label = null)
+     * @method Grid\Column|Collection detail_cn(string $label = null)
+     * @method Grid\Column|Collection pdf(string $label = null)
+     * @method Grid\Column|Collection deleted_at(string $label = null)
+     * @method Grid\Column|Collection path(string $label = null)
+     * @method Grid\Column|Collection path_md5(string $label = null)
+     * @method Grid\Column|Collection status(string $label = null)
+     * @method Grid\Column|Collection weigh(string $label = null)
+     * @method Grid\Column|Collection email(string $label = null)
+     * @method Grid\Column|Collection token(string $label = null)
+     * @method Grid\Column|Collection tokenable_type(string $label = null)
+     * @method Grid\Column|Collection tokenable_id(string $label = null)
+     * @method Grid\Column|Collection abilities(string $label = null)
+     * @method Grid\Column|Collection last_used_at(string $label = null)
+     * @method Grid\Column|Collection expires_at(string $label = null)
+     * @method Grid\Column|Collection folder_id(string $label = null)
+     * @method Grid\Column|Collection parameters(string $label = null)
+     * @method Grid\Column|Collection en_detail(string $label = null)
+     * @method Grid\Column|Collection cn_detail(string $label = null)
+     * @method Grid\Column|Collection enabled(string $label = null)
+     * @method Grid\Column|Collection folder_type(string $label = null)
+     * @method Grid\Column|Collection show_tabs(string $label = null)
+     * @method Grid\Column|Collection nick_name(string $label = null)
+     * @method Grid\Column|Collection action(string $label = null)
+     */
+    class Grid {}
+
+    class MiniGrid extends Grid {}
+
+    /**
+     * @property Show\Field|Collection id
+     * @property Show\Field|Collection name
+     * @property Show\Field|Collection type
+     * @property Show\Field|Collection version
+     * @property Show\Field|Collection detail
+     * @property Show\Field|Collection created_at
+     * @property Show\Field|Collection updated_at
+     * @property Show\Field|Collection is_enabled
+     * @property Show\Field|Collection parent_id
+     * @property Show\Field|Collection order
+     * @property Show\Field|Collection icon
+     * @property Show\Field|Collection uri
+     * @property Show\Field|Collection extension
+     * @property Show\Field|Collection permission_id
+     * @property Show\Field|Collection menu_id
+     * @property Show\Field|Collection slug
+     * @property Show\Field|Collection http_method
+     * @property Show\Field|Collection http_path
+     * @property Show\Field|Collection role_id
+     * @property Show\Field|Collection user_id
+     * @property Show\Field|Collection value
+     * @property Show\Field|Collection username
+     * @property Show\Field|Collection password
+     * @property Show\Field|Collection avatar
+     * @property Show\Field|Collection remember_token
+     * @property Show\Field|Collection language
+     * @property Show\Field|Collection path_id
+     * @property Show\Field|Collection content
+     * @property Show\Field|Collection cover
+     * @property Show\Field|Collection photo
+     * @property Show\Field|Collection poster
+     * @property Show\Field|Collection video
+     * @property Show\Field|Collection cert
+     * @property Show\Field|Collection detail_cn
+     * @property Show\Field|Collection pdf
+     * @property Show\Field|Collection deleted_at
+     * @property Show\Field|Collection path
+     * @property Show\Field|Collection path_md5
+     * @property Show\Field|Collection status
+     * @property Show\Field|Collection weigh
+     * @property Show\Field|Collection email
+     * @property Show\Field|Collection token
+     * @property Show\Field|Collection tokenable_type
+     * @property Show\Field|Collection tokenable_id
+     * @property Show\Field|Collection abilities
+     * @property Show\Field|Collection last_used_at
+     * @property Show\Field|Collection expires_at
+     * @property Show\Field|Collection folder_id
+     * @property Show\Field|Collection parameters
+     * @property Show\Field|Collection en_detail
+     * @property Show\Field|Collection cn_detail
+     * @property Show\Field|Collection enabled
+     * @property Show\Field|Collection folder_type
+     * @property Show\Field|Collection show_tabs
+     * @property Show\Field|Collection nick_name
+     * @property Show\Field|Collection action
+     *
+     * @method Show\Field|Collection id(string $label = null)
+     * @method Show\Field|Collection name(string $label = null)
+     * @method Show\Field|Collection type(string $label = null)
+     * @method Show\Field|Collection version(string $label = null)
+     * @method Show\Field|Collection detail(string $label = null)
+     * @method Show\Field|Collection created_at(string $label = null)
+     * @method Show\Field|Collection updated_at(string $label = null)
+     * @method Show\Field|Collection is_enabled(string $label = null)
+     * @method Show\Field|Collection parent_id(string $label = null)
+     * @method Show\Field|Collection order(string $label = null)
+     * @method Show\Field|Collection icon(string $label = null)
+     * @method Show\Field|Collection uri(string $label = null)
+     * @method Show\Field|Collection extension(string $label = null)
+     * @method Show\Field|Collection permission_id(string $label = null)
+     * @method Show\Field|Collection menu_id(string $label = null)
+     * @method Show\Field|Collection slug(string $label = null)
+     * @method Show\Field|Collection http_method(string $label = null)
+     * @method Show\Field|Collection http_path(string $label = null)
+     * @method Show\Field|Collection role_id(string $label = null)
+     * @method Show\Field|Collection user_id(string $label = null)
+     * @method Show\Field|Collection value(string $label = null)
+     * @method Show\Field|Collection username(string $label = null)
+     * @method Show\Field|Collection password(string $label = null)
+     * @method Show\Field|Collection avatar(string $label = null)
+     * @method Show\Field|Collection remember_token(string $label = null)
+     * @method Show\Field|Collection language(string $label = null)
+     * @method Show\Field|Collection path_id(string $label = null)
+     * @method Show\Field|Collection content(string $label = null)
+     * @method Show\Field|Collection cover(string $label = null)
+     * @method Show\Field|Collection photo(string $label = null)
+     * @method Show\Field|Collection poster(string $label = null)
+     * @method Show\Field|Collection video(string $label = null)
+     * @method Show\Field|Collection cert(string $label = null)
+     * @method Show\Field|Collection detail_cn(string $label = null)
+     * @method Show\Field|Collection pdf(string $label = null)
+     * @method Show\Field|Collection deleted_at(string $label = null)
+     * @method Show\Field|Collection path(string $label = null)
+     * @method Show\Field|Collection path_md5(string $label = null)
+     * @method Show\Field|Collection status(string $label = null)
+     * @method Show\Field|Collection weigh(string $label = null)
+     * @method Show\Field|Collection email(string $label = null)
+     * @method Show\Field|Collection token(string $label = null)
+     * @method Show\Field|Collection tokenable_type(string $label = null)
+     * @method Show\Field|Collection tokenable_id(string $label = null)
+     * @method Show\Field|Collection abilities(string $label = null)
+     * @method Show\Field|Collection last_used_at(string $label = null)
+     * @method Show\Field|Collection expires_at(string $label = null)
+     * @method Show\Field|Collection folder_id(string $label = null)
+     * @method Show\Field|Collection parameters(string $label = null)
+     * @method Show\Field|Collection en_detail(string $label = null)
+     * @method Show\Field|Collection cn_detail(string $label = null)
+     * @method Show\Field|Collection enabled(string $label = null)
+     * @method Show\Field|Collection folder_type(string $label = null)
+     * @method Show\Field|Collection show_tabs(string $label = null)
+     * @method Show\Field|Collection nick_name(string $label = null)
+     * @method Show\Field|Collection action(string $label = null)
+     */
+    class Show {}
+
+    /**
+     * @method \App\Exceptions\Form\MultipleCutImage multipleCutImage(...$params)
+     * @method \App\Exceptions\Form\CutImage cutImage(...$params)
+     * @method \App\Exceptions\Form\TradFile tradFile(...$params)
+     * @method \App\Exceptions\Form\TradImage tradImage(...$params)
+     * @method \Dcat\Admin\Form\Extend\Distpicker\Form\Distpicker distpicker(...$params)
+     * @method \Dcat\Admin\Form\Extend\Diyforms\Form\DiyForm diyForm(...$params)
+     */
+    class Form {}
+
+}
+
+namespace Dcat\Admin\Grid {
+    /**
+     * @method $this distpicker(...$params)
+     */
+    class Column {}
+
+    /**
+     * @method \Dcat\Admin\Form\Extend\Distpicker\Filter\DistpickerFilter distpicker(...$params)
+     */
+    class Filter {}
+}
+
+namespace Dcat\Admin\Show {
+    /**
+     * @method $this diyForm(...$params)
+     */
+    class Field {}
+}

+ 2 - 0
lang/zh_CN/global.php

@@ -116,6 +116,8 @@ return [
         'pdf_src'               => 'PDF文件',
         'video_src'             => '视频文件',
         'missing_content'       => '缺少内容',
+        'nick_name'             => '昵称',
+        'action'                => '操作',
     ],
     'labels' => [
         'list'         => '列表',

+ 2 - 1
lang/zh_CN/menu.php

@@ -56,6 +56,7 @@ return [
 
         #相册
         'folder' => '文件夹',
-        'album' => '相册',
+        'album' => '相册内容',
+        'album_log' => '相册日志',
     ],
 ];