添加网站文件
This commit is contained in:
100
application/admin/logic/PayConfigLogic.php
Normal file
100
application/admin/logic/PayConfigLogic.php
Normal file
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | likeshop100%开源免费商用商城系统
|
||||
// +----------------------------------------------------------------------
|
||||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||||
// | 开源版本可自由商用,可去除界面版权logo
|
||||
// | 商业版本务必购买商业授权,以免引起法律纠纷
|
||||
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
||||
// | gitee下载:https://gitee.com/likeshop_gitee
|
||||
// | github下载:https://github.com/likeshop-github
|
||||
// | 访问官网:https://www.likeshop.cn
|
||||
// | 访问社区:https://home.likeshop.cn
|
||||
// | 访问手册:http://doc.likeshop.cn
|
||||
// | 微信公众号:likeshop技术社区
|
||||
// | likeshop团队 版权所有 拥有最终解释权
|
||||
// +----------------------------------------------------------------------
|
||||
// | author: likeshopTeam
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace app\admin\logic;
|
||||
|
||||
use app\common\model\Pay;
|
||||
use think\Db;
|
||||
|
||||
class PayConfigLogic
|
||||
{
|
||||
|
||||
public static function lists()
|
||||
{
|
||||
$payModel = new Pay();
|
||||
$count = $payModel->count();
|
||||
$lists = $payModel->order('sort')->select();
|
||||
$lists->append(['status_text']);
|
||||
return ['list' => $lists, 'count' => $count];
|
||||
}
|
||||
|
||||
|
||||
public static function info($pay_code)
|
||||
{
|
||||
$payModel = new Pay();
|
||||
$result = $payModel->where(['code' => $pay_code])->append(['status_text'])->find();
|
||||
return $result;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 余额支付
|
||||
* @param $post
|
||||
* @author 段誉(2021/3/10 11:42)
|
||||
* @return bool
|
||||
*/
|
||||
public static function editBalance($post)
|
||||
{
|
||||
$payModel = new Pay();
|
||||
return $payModel->allowField(true)->save($post, ['code' => 'balance']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 微信支付
|
||||
* @param $post
|
||||
* @author 段誉(2021/3/10 10:30)
|
||||
* @return bool
|
||||
*/
|
||||
public static function editWechat($post)
|
||||
{
|
||||
$config = [
|
||||
'pay_sign_key' => $post['pay_sign_key'],
|
||||
'mch_id' => $post['mch_id'],
|
||||
'apiclient_cert' => $post['apiclient_cert'],
|
||||
'apiclient_key' => $post['apiclient_key']
|
||||
];
|
||||
$post['config'] = json_encode($config, JSON_UNESCAPED_UNICODE);
|
||||
|
||||
$payModel = new Pay();
|
||||
return $payModel->allowField(true)->save($post, ['code' => 'wechat']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 支付宝
|
||||
* @param $post
|
||||
* @author 段誉(2021/3/10 11:43)
|
||||
* @return int|string
|
||||
* @throws \think\Exception
|
||||
* @throws \think\exception\PDOException
|
||||
*/
|
||||
public static function editAlipay($post)
|
||||
{
|
||||
$config = [
|
||||
'app_id' => $post['app_id'],
|
||||
'private_key' => $post['private_key'],//应用私钥
|
||||
'ali_public_key' => $post['ali_public_key']//支付宝公钥
|
||||
];
|
||||
$post['config'] = json_encode($config, JSON_UNESCAPED_UNICODE);
|
||||
$payModel = new Pay();
|
||||
return $payModel->allowField(true)->save($post, ['code' => 'alipay']);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user