2025-03-13 09:24:48 +08:00

31 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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' => [],
]
];