| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * 首页
- * @author wesmiler
- */
- namespace app\weixin\controller;
- use app\weixin\model\Wechat;
- use cmf\controller\HomeBaseController;
- class PageController extends HomeBaseController
- {
- /**
- * 客服
- * @return mixed
- */
- public function custom(){
- return $this->fetch(':index/custom');
- }
- /**
- * 关于我们
- * @return mixed
- */
- public function about(){
- return $this->fetch(':index/about');
- }
- /**
- * 违规处罚
- * @return mixed
- */
- public function rule(){
- return $this->fetch(':index/rule');
- }
- /**
- * 认证说明
- * @return mixed
- */
- public function auth(){
- return $this->fetch(':index/auth');
- }
- /**
- * 用户服务协议
- * @return mixed
- */
- public function agree(){
- return $this->fetch(':index/agree');
- }
- /**
- * 分销用户服务协议
- * @return mixed
- */
- public function marketAgree(){
- return $this->fetch(':index/marketAgree');
- }
- /**
- * 隐私保护政策
- * @return mixed
- */
- public function privacy(){
- return $this->fetch(':index/privacy');
- }
- }
- ?>
|