12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * Index.php
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2015-2025 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: http://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- * @author : niuteam
- * @date : 2015.1.17
- * @version : v1.0.0.0
- */
- namespace app\api\controller;
- use app\model\web\WebSite as WebsiteModel;
- /**
- * 网站设置
- * @author Administrator
- *
- */
- class Website extends BaseApi
- {
-
- /**
- * 基础信息
- */
- public function info()
- {
- $site_id = isset($this->params['site_id']) ? $this->params['site_id'] : 0;
- $filed = 'title,logo,desc,web_qrcode,web_status,close_reason,wap_status';
- $website_model = new WebsiteModel();
- $info = $website_model->getWebSite([ [ 'site_id', '=', $site_id ] ], $filed);
- return $this->response($info);
- }
-
- /**
- * 列表信息
- */
- public function lists()
- {
- }
-
- /**
- * 树状结构信息
- */
- public function tree()
- {
- }
-
- }
|