| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace app\home\controller;
- use think\Lang;
- use think\Cache;
- use think\Request;
- use think\Controller;
- use think\Validate;
- /**
- * 主页管理类
- */
- class Product extends Common
- {
- /**
- * 构造函数
- *
- * @access public
- */
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * 产品与服务
- *
- * @access public
- * @return array JsonString
- */
- public function product()
- {
- return $this->fetch();
- }
- /**
- * 产品与服务详情
- *
- * @access public
- * @return array JsonString
- */
- public function details()
- {
- return $this->fetch();
- }
- }
|