作者 郭文星

123

... ... @@ -479,14 +479,7 @@ class Car extends Base
return $this->success("请求成功",$data);
}
/**
*认证声明
* @return void
*/
public function authentication_statement(){
$content = config("site.content");//微信小程序AppID
return $this->success($content);
}
/**
*紧急手机号
... ... @@ -768,4 +761,42 @@ class Car extends Base
]);
return $this->success("请求成功",$res);
}
/**
* 乘车须知
* @return void
*/
public function getriding_instructions(){
$content = config("site.riding_instructions");//微信小程序AppID
return $this->success("请求成功",$content);
}
/**
* 通知公告
* @return void
*/
public function getnotice(){
$content = config("site.notice");//微信小程序AppID
return $this->success("请求成功",$content);
}
/**
* 司机认证
* @return void
*/
public function getdriver_authentication(){
$content = config("site.driver_authentication");//微信小程序AppID
return $this->success("请求成功",$content);
}
/**
* 关于我们
* @return void
*/
public function getaboutwe(){
$content = config("site.aboutwe");//微信小程序AppID
return $this->success("请求成功",$content);
}
}
\ No newline at end of file
... ...
... ... @@ -46,5 +46,8 @@ return array (
'wxxcx_AppSecret' => 'baf744d21875280a5e98611f66adaf91',
'content' => '111111111111111111111222222222',
'alarm_phone' => '13528348347',
'riding_instructions' => '',
'riding_instructions' => '<p>乘车须知乘车须知乘车须知乘车须知乘车须知乘车须知<br></p>',
'notice' => '<p><span style="background-color: rgb(249, 249, 249);">通知公告</span><span style="background-color: rgb(249, 249, 249);">通知公告</span><span style="background-color: rgb(249, 249, 249);">通知公告</span><span style="background-color: rgb(249, 249, 249);">通知公告</span><span style="background-color: rgb(249, 249, 249);">通知公告</span><span style="background-color: rgb(249, 249, 249);">通知公告</span><br></p>',
'driver_authentication' => '<p>司机认证司机认证司机认证司机认证司机认证司机认证<br></p>',
'aboutwe' => '<p><span style="background-color: rgb(249, 249, 249);">关于我们</span><span style="background-color: rgb(249, 249, 249);">关于我们</span><span style="background-color: rgb(249, 249, 249);">关于我们</span><span style="background-color: rgb(249, 249, 249);">关于我们</span><br></p>',
);
... ...