| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecadmin\block\account;
- use fecadmin\FecadminbaseBlock;
- use fecadmin\models\AdminUser;
- use fecadmin\models\AdminRole;
- use fec\helpers\CUrl;
- /**
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- class Manager extends FecadminbaseBlock{
- public $_obj ;
- public $_paramKey = 'id';
- public $_defaultDirection = 'asc';
-
- # 初始化参数
- public function initParam(){
- # 定义编辑和删除的URL
-
- $this->_editUrl = CUrl::getUrl("fecadmin/account/manageredit");
- $this->_deleteUrl = CUrl::getUrl("fecadmin/account/managerdelete");
- $this->_obj = new AdminUser;
- $this->_paramKey = 'id';
- /*
- # 自定义参数如下:
- #排序默认为主键倒序
- $this->_orderField = 'created_at';
- $this->_sortDirection = 'asc';
-
- # 主键默认为id
- $this->_paramKey = 'id';
-
- #第一次打开默认为第一页,一页显示50个
- $this->_pageNum = 1;
- $this->_numPerPage;
-
- */
- parent::initParam();
-
- }
-
- public function getLastData(){
- # 返回数据的函数
- # 隐藏部分
- $pagerForm = $this->getPagerForm();
- # 搜索部分
- $searchBar = $this->getSearchBar();
- # 编辑 删除 按钮部分
- $editBar = $this->getEditBar();
- # 表头部分
- $thead = $this->getTableThead();
- # 表内容部分
- $tbody = $this->getTableTbody();
- # 分页部分
- $toolBar = $this->getToolBar($this->_param['numCount'],$this->_param['pageNum'],$this->_param['numPerPage']);
-
- return [
- 'pagerForm' => $pagerForm,
- 'searchBar' => $searchBar,
- 'editBar' => $editBar,
- 'thead' => $thead,
- 'tbody' => $tbody,
- 'toolBar' => $toolBar,
- ];
- }
-
-
-
-
- # 定义搜索部分字段格式
- public function getSearchArr(){
-
- $data = [
-
- [ # selecit的Int 类型
- 'type'=>'select',
- 'title'=>'状态',
- 'name'=>'status',
- 'columns_type' =>'int', # int使用标准匹配, string使用模糊查询
- 'value'=> [ # select 类型的值
- AdminUser::STATUS_ACTIVE=>'激活',
- AdminUser::STATUS_DELETED=>'关闭',
- ],
- ],
- [ # 字符串类型
- 'type'=>'inputtext',
- 'title'=>'用户名',
- 'name'=>'username' ,
- 'columns_type' =>'string'
- ],
- [ # 字符串类型
- 'type'=>'inputtext',
- 'title'=>'员工编号',
- 'name'=>'code' ,
- 'columns_type' =>'string'
- ],
-
- [ # 字符串类型
- 'type'=>'inputtext',
- 'title'=>'邮箱',
- 'name'=>'email' ,
- 'columns_type' =>'string'
- ],
- [ # 时间区间类型搜索
- 'type'=>'inputdatefilter',
- 'name'=> 'created_at_datetime',
- 'columns_type' =>'datetime',
- 'value'=>[
- 'gte'=>'用户创建时间开始',
- 'lt' =>'用户创建时间结束',
- ]
- ],
-
-
- ];
- return $data;
- }
-
-
-
-
-
-
-
- # 定义表格显示部分的配置
- public function getTableFieldArr(){
- $table_th_bar = [
- [
- 'orderField' => 'id',
- 'label' => 'ID',
- 'width' => '110',
- 'align' => 'center',
-
- ],
- [
- 'orderField' => 'username',
- 'label' => '用户名称',
- 'width' => '110',
- 'align' => 'center',
- ],
-
- [
- 'orderField' => 'person',
- 'label' => '姓名',
- 'width' => '110',
- 'align' => 'center',
- ],
- [
- 'orderField' => 'code',
- 'label' => '员工编号',
- 'width' => '110',
- 'align' => 'center',
- ],
- /*
- [
- 'orderField' => 'role',
- 'width' => '110',
- 'align' => 'left',
- 'display' => AdminRole::getAdminRoleArr(),
- ],
- */
-
-
- [
- 'orderField' => 'email',
- 'width' => '110',
- 'align' => 'center',
- ],
- [
- 'orderField' => 'created_at_datetime',
- //'label' => '用户名称',
- 'width' => '190',
- 'align' => 'center',
- //'convert' => ['datetime' =>'date'],
- ],
-
- [
- 'orderField' => 'updated_at_datetime',
- //'label' => '用户名称',
- 'width' => '190',
- 'align' => 'center',
- //'convert' => ['datetime' =>'date'], # int date datetime 显示的转换
- ],
-
-
-
- [
- 'orderField' => 'status',
- //'label' => '用户名称',
- 'width' => '60',
- 'align' => 'center',
- 'display' => [ # 显示转换 ,譬如 值为1显示为激活,值为10显示为关闭
- '1' => '激活',
- '10' => '关闭',
- ],
-
- ],
-
-
-
- /*
- [
- 'orderField' => 'allowance',
- //'label' => '用户名称',
- //'width' => '190',
- 'align' => 'center',
-
- ],
-
-
- [
- 'orderField' => 'allowance_updated_at',
- //'label' => '用户名称',
- //'width' => '190',
- 'align' => 'center',
-
- ],
- */
-
-
-
- ];
- return $table_th_bar ;
- }
-
-
-
-
-
-
-
-
-
-
-
- }
|