联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
新建的模块中模块名中的如何自定义在哪里自定义
类型:迅睿CMS 更新时间:2021-04-25 17:46:39 模块

新建的模块中views/模块名_list中的$list_field如何自定义,在哪里自定义。

回帖
  • #1楼    迅睿框架创始人
    2020-03-31 20:11:17
    Google Pixel 手机 0
  • 咸鱼项目经
    #2楼    咸鱼项目经
    2020-08-20 14:20:58
    Chrome 0
    搞定了,我是这样写的。
        //会员用需求管理列表
        public function member_list() {
            $user = dr_member_info($this->uid);
            if(!array_key_exists(4,$user["groupid"]) && !array_key_exists(6,$user["groupid"])){
                $this->_json(0, dr_lang('只有审核会员才可以使用本功能!'));   
            }
            // 初始化数据表
            $this->_init([
                'table'      => '1_demand',  // (不带前缀的)表名字
                'order_by'   => 'id desc', // 列表排序,默认的排序方式
                'date_field' => '', // 按时间段搜索字段,没有时间字段留空
                'list_field' => [
                    'id' => ['name' =>'ID','width' =>'10%','use'=>1],
                    'name' => ['name' =>'名称','width' =>'25%','use'=>1],
                    'fabudanwei' => ['name' =>'发布单位','width' =>'15%','use'=>1],
                    'inputtime' => ['name' =>'提交时间','width' =>'15%','use'=>1],
                    'xuqiujiazhi' => ['name' =>'需求价值','width' =>'10%','use'=>1],
                    'xuqiujindu' => ['name' =>'对接进度','width' =>'10%','use'=>1],
                ]
            ]);
    
            $this->list_pagesize = 12;
            if($this->init['where_list']) {
                $this->init['where_list'].= ' AND (djtdid = 0 and shifoubaomi != 2) or (djtdid != 0)';
            } else {
                $this->init['where_list'] = '(djtdid = 0 and shifoubaomi != 2) OR (djtdid != 0)';
            }
            list($tpl) = $this->_List();
            \Phpcmf\Service::V()->display('demand_member_list.html');
        }
    我把排序字段加了上去,因为是会员调用,所以要手动编写list_field,如果我的方法不对,请指出,再次感谢!回复迅睿框架创始人
  • #3楼    迅睿框架创始人
    2020-08-20 14:25:20
    Chrome 0
    //会员用需求管理列表
        public function member_index() {
            $user = dr_member_info($this->uid);
            if(!array_key_exists(4,$user["groupid"]) && !array_key_exists(6,$user["groupid"])){
                $this->_json(0, dr_lang('只有审核会员才可以使用本功能!'));   
            }
            // 初始化数据表
            $this->_init([
                'table'      => SITE_ID.'_demand',  // (不带前缀的)表名字
                'order_by'   => 'id desc', // 列表排序,默认的排序方式
                'date_field' => '', // 按时间段搜索字段,没有时间字段留空
                'where_list' => '(djtdid = 0 and shifoubaomi != 2) OR (djtdid != 0)',
                'list_field' => [
                    'id' => ['name' =>'ID','width' =>'10%','use'=>1],
                    'name' => ['name' =>'名称','width' =>'25%','use'=>1],
                    'fabudanwei' => ['name' =>'发布单位','width' =>'15%','use'=>1],
                    'inputtime' => ['name' =>'提交时间','width' =>'15%','use'=>1],
                    'xuqiujiazhi' => ['name' =>'需求价值','width' =>'10%','use'=>1],
                    'xuqiujindu' => ['name' =>'对接进度','width' =>'10%','use'=>1],
                ]
            ]);
    
            $this->list_pagesize = 12;
        
            list($tpl) = $this->_List();
            \Phpcmf\Service::V()->display('demand_member_list.html');
        }
    1、方法名称改为member_index2、where组合进init中
  • 起飞的我
    #4楼    起飞的我
    2021-04-25 17:46:39
    Chrome 0
    迅睿框架创始人:完美,谢谢谢谢