...
|
...
|
@@ -16,6 +16,9 @@ class Index extends Frontend |
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 下载APP
|
|
|
*/
|
|
|
public function download()
|
|
|
{
|
|
|
$href = '';
|
...
|
...
|
@@ -38,4 +41,14 @@ class Index extends Frontend |
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 用户协议及隐私协议
|
|
|
*/
|
|
|
public function agreement()
|
|
|
{
|
|
|
$content = db('mobile_config')->where('id',1)->value('agreement');
|
|
|
$this->assign('content',$content);
|
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
|
|
|
} |
...
|
...
|
|