You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者, 助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件, 未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
return [
//默认支付模式
'default' => 'wechat_pay' ,
//支付方式
'payType' => [ 'weixin' => '微信支付' , 'yue' => '余额支付' , 'offline' => '线下支付' ],
//提现方式
'extractType' => [ 'alipay' , 'bank' , 'weixin' ],
//配送方式
'deliveryType' => [ 'send' => '商家配送' , 'express' => '快递配送' ],
//驱动模式
'stores' => [
//微信支付
'wechat_pay' => [],
//支付宝支付
'ali_pay' => [],
//余额支付
'yue' => [],
]
];