...
|
...
|
@@ -768,7 +768,7 @@ class Car extends Base |
|
|
* @return void
|
|
|
*/
|
|
|
public function getriding_instructions(){
|
|
|
$content = config("site.riding_instructions");//微信小程序AppID
|
|
|
$content = config("site.riding_instructions");
|
|
|
return $this->success("请求成功",$content);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -777,7 +777,7 @@ class Car extends Base |
|
|
* @return void
|
|
|
*/
|
|
|
public function getnotice(){
|
|
|
$content = config("site.notice");//微信小程序AppID
|
|
|
$content = config("site.notice");
|
|
|
return $this->success("请求成功",$content);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -787,7 +787,7 @@ class Car extends Base |
|
|
* @return void
|
|
|
*/
|
|
|
public function getdriver_authentication(){
|
|
|
$content = config("site.driver_authentication");//微信小程序AppID
|
|
|
$content = config("site.driver_authentication");
|
|
|
return $this->success("请求成功",$content);
|
|
|
}
|
|
|
|
...
|
...
|
@@ -796,7 +796,7 @@ class Car extends Base |
|
|
* @return void
|
|
|
*/
|
|
|
public function getaboutwe(){
|
|
|
$content = config("site.aboutwe");//微信小程序AppID
|
|
|
$content = config("site.aboutwe");
|
|
|
return $this->success("请求成功",$content);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|