61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
|
|
<?php
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Author: Devil
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
namespace app\plugins\wallet;
|
||
|
|
|
||
|
|
use app\plugins\wallet\Common;
|
||
|
|
use app\plugins\wallet\BusinessService;
|
||
|
|
use app\service\PluginsService;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 钱包 - 余额提现
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 0.0.1
|
||
|
|
* @datetime 2016-12-01T21:51:08+0800
|
||
|
|
*/
|
||
|
|
class Cash extends Common
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 构造方法
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @date 2019-03-15
|
||
|
|
* @desc description
|
||
|
|
*/
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
parent::__construct();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 余额提现
|
||
|
|
* @author Devil
|
||
|
|
* @blog http://gong.gg/
|
||
|
|
* @version 1.0.0
|
||
|
|
* @datetime 2019-03-15T23:51:50+0800
|
||
|
|
* @param [array] $params [输入参数]
|
||
|
|
*/
|
||
|
|
public function index($params = [])
|
||
|
|
{
|
||
|
|
// 参数
|
||
|
|
$params = input();
|
||
|
|
$params['user'] = $this->user;
|
||
|
|
|
||
|
|
$this->assign('data_list', []);
|
||
|
|
|
||
|
|
|
||
|
|
// 参数
|
||
|
|
$this->assign('params', $params);
|
||
|
|
return $this->fetch('../../../plugins/view/wallet/cash/index');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
?>
|