mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改支付
This commit is contained in:
parent
1d2af54785
commit
6baecf52d0
@ -306,9 +306,9 @@ class Order extends Auth
|
||||
if (empty($payments)) $this->error('获取订单支付参数失败');
|
||||
// 读取支付通道配置
|
||||
$query = $this->app->db->name('BaseUserPayment')->field('type,code,name,cover,content')->order('sort desc,id desc');
|
||||
$query->where(['status' => 1, 'deleted' => 0])->whereIn('code', str2arr($payments))->whereIn('type', PaymentService::getTypeByApi($this->type));
|
||||
$query->where(['status' => 1, 'deleted' => 0])->whereIn('code', str2arr($payments))->whereIn('type', PaymentService::getTypeApi($this->type));
|
||||
$this->success('获取支付参数数据', $query->withAttr('content', function ($content) {
|
||||
return json_encode($content, true);
|
||||
return json_decode($content, true);
|
||||
})->select()->toArray());
|
||||
}
|
||||
|
||||
|
@ -236,11 +236,9 @@ abstract class PaymentService
|
||||
*/
|
||||
public static function getTypeAll(): array
|
||||
{
|
||||
$types = [];
|
||||
[$types, $binds] = [[], array_keys(UserAdminService::TYPES)];
|
||||
foreach (self::TYPES as $k => $v) if (isset($v['bind'])) {
|
||||
if (array_intersect($v['bind'], array_keys(UserAdminService::TYPES))) {
|
||||
$types[$k] = $v;
|
||||
}
|
||||
if (array_intersect($v['bind'], $binds)) $types[$k] = $v;
|
||||
}
|
||||
return $types;
|
||||
}
|
||||
@ -250,7 +248,7 @@ abstract class PaymentService
|
||||
* @param string $api
|
||||
* @return array
|
||||
*/
|
||||
public static function getTypeByApi(string $api = ''): array
|
||||
public static function getTypeApi(string $api = ''): array
|
||||
{
|
||||
$types = [];
|
||||
foreach (self::TYPES as $type => $attr) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user