首页
统计
留言
Search
1
PHP中使用反射
995 阅读
2
phpstorm配置SFTP
940 阅读
3
Go语言——结构体
792 阅读
4
PhpStorm 使用 AI 代码生成工具 Codeium
779 阅读
5
关于PHP的垃圾回收机制
763 阅读
后端
PHP
Go
数据库
其他
前端
其他技术
生活杂谈
登录
Search
标签搜索
Laravel
Mysql
RPC
Redis
Liunx
PHP
CSS
ES
算法
开发工具
断点续传
反射
phpstorm
工具
防盗链
CURL
设计模式
面试
Nginx
搜索引擎
quhe.net
首页
栏目
后端
PHP
Go
数据库
其他
前端
其他技术
生活杂谈
页面
统计
留言
搜索到
1
篇与
Dcat
的结果
2023-10-13
DcatAdmin行操作按钮样式调整(图标+文字)
效果更改方式在 app/Admin/Actions/Grid/ 下新建 TextActions.php 文件,内容如下<?php namespace App\Admin\Actions\Grid; use Dcat\Admin\Grid\Displayers\Actions; /** * 重写行操作按钮样式 */ class TextActions extends Actions { /** * @return string */ protected function getViewLabel() { $label = trans('admin.show'); return '<i class="feather icon-eye text-success"></i> <span class="text-success">' . $label . '</span>  '; } /** * @return string */ protected function getEditLabel() { $label = trans('admin.edit'); return '<i class="feather icon-edit-1 text-custom"></i> <span class="text-custom">' . $label . '</span>  '; } /** * @return string */ protected function getQuickEditLabel() { $label = trans('admin.edit'); $label2 = trans('admin.quick_edit'); return '<i class="feather icon-edit-1 text-custom"></i> <span class="text-custom" title="' . $label2 . '">' . $label . '</span>  '; } /** * @return string */ protected function getDeleteLabel() { $label = trans('admin.delete'); return '<i class="feather icon-alert-triangle text-danger"></i> <span class="text-danger">' . $label . '</span>  '; } } 在 config/admin.php 中更改配置项 grid.grid_action_class, 如下// The global Grid action display class. 'grid_action_class' => App\Admin\Actions\Grid\TextActions::class,
2023年10月13日
76 阅读
0 评论
1 点赞