vr-shopxo-source/application/plugins/wallet/index/Wallet.php

91 lines
2.8 KiB
PHP
Raw Normal View History

2019-04-28 10:31:39 +00:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
2019-05-08 17:15:36 +00:00
namespace app\plugins\wallet\index;
2019-04-28 10:31:39 +00:00
2019-05-08 17:15:36 +00:00
use app\plugins\wallet\index\Common;
2019-04-30 09:27:27 +00:00
use app\plugins\wallet\service\BaseService;
use app\plugins\wallet\service\WalletService;
2019-04-28 10:31:39 +00:00
/**
2019-04-30 08:27:01 +00:00
* 钱包 - 账户明细
2019-04-28 10:31:39 +00:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
2019-04-30 08:27:01 +00:00
class Wallet extends Common
2019-04-28 10:31:39 +00:00
{
/**
* 构造方法
* @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['user'] = $this->user;
// 分页
2019-05-10 10:40:14 +00:00
$number = 10;
2019-04-28 10:31:39 +00:00
// 条件
2019-04-30 09:27:27 +00:00
$where = BaseService::WalletLogWhere($params);
2019-04-28 10:31:39 +00:00
// 获取总数
2019-04-30 09:27:27 +00:00
$total = BaseService::WalletLogTotal($where);
2019-04-28 10:31:39 +00:00
// 分页
$page_params = array(
'number' => $number,
'total' => $total,
'where' => $params,
'page' => isset($params['page']) ? intval($params['page']) : 1,
2019-04-30 09:27:27 +00:00
'url' => PluginsHomeUrl('wallet', 'wallet', 'index'),
2019-04-28 10:31:39 +00:00
);
$page = new \base\Page($page_params);
$this->assign('page_html', $page->GetPageHtml());
// 获取列表
$data_params = array(
'm' => $page->GetPageStarNumber(),
'n' => $number,
'where' => $where,
);
2019-04-30 09:27:27 +00:00
$data = BaseService::WalletLogList($data_params);
2019-04-28 10:31:39 +00:00
$this->assign('data_list', $data['data']);
2019-04-30 09:27:27 +00:00
// 静态数据
$this->assign('business_type_list', WalletService::$business_type_list);
$this->assign('operation_type_list', WalletService::$operation_type_list);
$this->assign('money_type_list', WalletService::$money_type_list);
2019-04-28 10:31:39 +00:00
// 参数
$this->assign('params', $params);
2019-05-08 17:15:36 +00:00
return $this->fetch('../../../plugins/view/wallet/index/wallet/index');
2019-04-28 10:31:39 +00:00
}
}
?>