| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\api\controller\h5;
- use app\api\services\UserServices;
- use think\facade\View;
- class ThirdPay
- {
- protected $service = null;
- public function __construct (UserServices $services)
- {
- $this->service = $services;
- }
- // 畅联支付成功
- public function thirdPayclSuccess(){
- return View::fetch();
- }
- // 畅联支付失败
- public function thirdPayclError(){
- return View::fetch();
- }
- }
|