예제 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '其他页面';
     $this->lists['func']['url'] = 'single';
     $this->model = new ComFuncModel();
 }
예제 #2
0
 /**
  * 企业页面 链接控制
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '链接管理';
     $this->lists['func']['url'] = 'link';
     $this->model = new LinkModel();
 }
예제 #3
0
 /**
  * 企业后台首页
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '公司信息';
     $this->lists['category']['url'] = 'cominfo';
     $this->lists['func']['name'] = '页面布局';
     $this->lists['func']['url'] = 'layout';
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '内容设置';
     $this->lists['category']['url'] = 'content';
     $this->lists['func']['name'] = '联系编辑';
     $this->lists['func']['url'] = 'contact';
 }
예제 #5
0
 /**
  * 企业后台 图片管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '综合应用';
     $this->lists['category']['url'] = 'general';
     $this->lists['func']['name'] = '图片管理';
     $this->lists['func']['url'] = 'pic';
     $this->model = new PicModel();
 }
예제 #6
0
 /**
  * 企业页面 ppt管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '内容设置';
     $this->lists['category']['url'] = 'content';
     $this->lists['func']['name'] = '宣传编辑';
     $this->lists['func']['url'] = 'ppt';
     $this->model = new AdModel();
 }
예제 #7
0
 /**
  * 企业开展后台,产品管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '内容设置';
     $this->lists['category']['url'] = 'content';
     $this->lists['func']['name'] = '产品编辑';
     $this->lists['func']['url'] = 'product';
     $this->model = new GoodsModel();
 }
예제 #8
0
 /**
  * 企业后台 视频管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '综合应用';
     $this->lists['category']['url'] = 'general';
     $this->lists['func']['name'] = '视频管理';
     $this->lists['func']['url'] = 'video';
     $this->model = new VideoModel();
 }
예제 #9
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['category']['name'] = '综合应用';
     $this->lists['category']['url'] = 'general';
     $this->lists['func']['name'] = '访问管理';
     $this->lists['func']['url'] = 'visit';
     $this->model = new VisitlogModel();
     //公司页面访问日志刷新频率
     $comMainModel = ComMainModel::where('cid', $this->cid)->first();
     $this->visitRate = $comMainModel->visitRate;
 }
예제 #10
0
 /**
  * 企业后台基本设置
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '基本设置';
     $this->lists['func']['url'] = 'basic';
 }
예제 #11
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '模块列表';
     $this->lists['func']['url'] = 'singlemodule';
 }
예제 #12
0
 public function __construct()
 {
     parent::__construct();
     $this->model = new ComFuncModel();
     $this->pics = PicModel::where('uid', $this->userid)->where('del', 0)->get();
 }