You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
<?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' => [],
|
|
]
|
|
];
|
|
|