zx/app/controller/admin/system/sms/SmsPay.php

98 lines
2.6 KiB
PHP
Raw Normal View History

2024-07-02 15:32:59 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\controller\admin\system\sms;
use crmeb\basic\BaseController;
use crmeb\services\YunxinSmsService;
use think\App;
/**
* Class SmsPay
* @package app\controller\admin\system\sms
* @author xaboy
* @day 2020-05-18
*/
class SmsPay extends BaseController
{
/**
* @var YunxinSmsService
*/
protected $service;
/**
* Sms constructor.
* @param App $app
*/
public function __construct(App $app)
{
parent::__construct($app);
$this->service = YunxinSmsService::create();
}
/**
* @return mixed
* @author xaboy
* @day 2020-05-18
*/
public function number()
{
$countInfo = $this->service->count();
if ($countInfo['status'] == 400) return app('json')->fail($countInfo['msg']);
$info['account'] = $this->service->account();
$info['number'] = $countInfo['data']['number'];
$info['send_total'] = $countInfo['data']['send_total'];
return app('json')->success($info);
}
/**
* @return mixed
* @author xaboy
* @day 2020-05-18
*/
public function price()
{
[$page, $limit] = $this->getPage();
$mealInfo = $this->service->meal($page, $limit);
if ($mealInfo['status'] == 400) return app('json')->fail($mealInfo['msg']);
return app('json')->success($mealInfo['data']);
}
/**
* @return mixed
* @author xaboy
* @day 2020-05-18
*/
public function pay()
{
list($payType, $mealId, $price) = $this->request->params([
['payType', 'weixin'],
['mealId', 0],
['price', 0],
], true);
$payInfo = $this->service->pay($payType, $mealId, $price, $this->request->adminId());
if ($payInfo['status'] == 400) return app('json')->fail($payInfo['msg']);
return app('json')->success($payInfo['data']);
}
/**
* @author xaboy
* @day 2020-05-18
*/
public function notice()
{
//TODO 短信支付成功回调
}
}