2024-01-16 13:06:20 +08:00

168 lines
5.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
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载https://gitee.com/likeshop_gitee
// | github下载https://github.com/likeshop-github
// | 访问官网https://www.likeshop.cn
// | 访问社区https://home.likeshop.cn
// | 访问手册http://doc.likeshop.cn
// | 微信公众号likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权购买去版权授权后方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
namespace app\admin\controller;
use app\admin\logic\UserLogic;
use app\common\server\ConfigServer;
class User extends AdminBase
{
/**
* 会员列表
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function lists(){
if ($this->request->isAjax()) {
$get = $this->request->get();
$this->_success('', UserLogic::lists($get));
}
$this->assign('level_list',UserLogic::getLevelList());
$this->assign('group_list',UserLogic::getGroupList());
return $this->fetch();
}
/**
* 导出
*/
public function exportFile()
{
$get = $this->request->get();
$this->_success('', UserLogic::exportFile($get));
}
/*
* 设置分组
*/
public function setGroup(){
if($this->request->isAjax()){
$post = $this->request->post();
UserLogic::setGroup($post);
$this->_success('设置成功','');
}
$this->assign('group_list',UserLogic::getGroupList());
return $this->fetch();
}
/**
* 账户调整
* @param $id
* @return mixed
*/
public function adjustAccount($id){
if ($this->request->isAjax()) {
$post = $this->request->post();
$result = $this->validate($post,'app\admin\validate\AdjustAccount');
if($result === true){
$result = UserLogic::adjustAccount($post); //逻辑层处理信息
if($result){
$this->_success('操作成功',$result);
}
$result = '操作失败';
}
$this->_error($result);
}
$this->assign('info',UserLogic::getUser($id));
return $this->fetch();
}
/*
* 等级调整
*/
public function adjustLevel($id){
if ($this->request->isAjax()) {
$post = $this->request->post();
$result = $this->validate($post,'app\admin\validate\AdjustUserLevel');
if($result === true){
$result = UserLogic::adjustLevel($post); //逻辑层处理信息
if($result){
$this->_success('操作成功',$result);
}
$result = '操作失败';
}
$this->_error($result);
}
$this->assign('info',UserLogic::getUser($id));
$this->assign('user_level',UserLogic::getLevelList());
return $this->fetch();
}
/*
* 会员编辑
*/
public function edit($id){
if($this->request->isAjax()){
$post = $this->request->post();
$result = $this->validate($post,'app\admin\validate\User');
if($result === true){
UserLogic::edit($post);
$this->_success('保存成功');
}
return $this->_error($result);
}
$detail = UserLogic::getUser($id,true);
$this->assign('info',$detail);
return $this->fetch();
}
/*
* 会员详情
*/
public function info($id){
$detail = UserLogic::getUser($id,false,true);
$this->assign('detail',$detail);
return $this->fetch();
}
public function getList(){
$post = $this->request->get('');
$list = UserLogic::getList($post);
$this->_success('',$list);
}
public function sendCouponList(){
if($this->request->isAjax()){
$list = UserLogic::sendCouponList();
$this->_success('',$list);
}
return $this->fetch();
}
/**
* 转账记录
*/
public function transferRecord()
{
if($this->request->isAjax()) {
$get = $this->request->get();
$get['page'] = $get['page'] ?? $this->page_no;
$get['limit'] = $get['limit'] ?? $this->page_size;
$data = UserLogic::transferRecord($get);
$this->_success('', $data);
}
return $this->fetch();
}
}