mirror of
https://gitee.com/likeadmin/likeadmin_php_saas.git
synced 2026-09-06 23:08:46 +08:00
119 lines
3.8 KiB
PHP
119 lines
3.8 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
namespace app\platformapi\controller\tenant;
|
||
|
||
use app\platformapi\controller\BaseAdminController;
|
||
use app\platformapi\lists\tenant\TenantLists;
|
||
use app\platformapi\logic\setting\pay\PayConfigLogic;
|
||
use app\platformapi\logic\setting\pay\PayWayLogic;
|
||
use app\platformapi\logic\tenant\TenantAdminLogic;
|
||
use app\platformapi\logic\tenant\TenantLogic;
|
||
use app\platformapi\logic\tenant\TenantSystemMenuLogic;
|
||
use app\platformapi\validate\tenant\TenantValidate;
|
||
use think\facade\Db;
|
||
|
||
/**
|
||
* 用户控制器
|
||
* Class TenantController
|
||
* @package app\platformapi\controller\user
|
||
*/
|
||
class TenantController extends BaseAdminController
|
||
{
|
||
|
||
/**
|
||
* @notes 用户列表
|
||
* @return \think\response\Json
|
||
* @author 段誉
|
||
* @date 2022/9/22 16:16
|
||
*/
|
||
public function lists()
|
||
{
|
||
return $this->dataLists(new TenantLists());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取用户详情
|
||
* @return \think\response\Json
|
||
* @author 段誉
|
||
* @date 2022/9/22 16:34
|
||
*/
|
||
public function detail()
|
||
{
|
||
$params = (new TenantValidate())->goCheck('detail');
|
||
$detail = TenantLogic::detail($params['id']);
|
||
return $this->success('', $detail);
|
||
}
|
||
|
||
/**
|
||
* @notes 新增租户信息 同步初始化对应租户信息
|
||
* @return \think\response\Json
|
||
* @author yfdong
|
||
* @date 2024/09/07 12:23
|
||
*/
|
||
public function add()
|
||
{
|
||
$params = (new TenantValidate())->post()->goCheck('add');
|
||
try {
|
||
// 开始事务
|
||
DB::startTrans();
|
||
// 验证参数
|
||
// 创建租户基本信息
|
||
$tenant = TenantLogic::add($params);
|
||
// 创建租户菜单权限
|
||
TenantSystemMenuLogic::initialization($tenant['id']);
|
||
// 初始化租户管理员账号
|
||
TenantAdminLogic::initialization($tenant['id'], $tenant['sn'], $params);
|
||
// 初始化支付方式配置
|
||
PayConfigLogic::initialization($tenant['id']);
|
||
// 初始化支付配置是否开启
|
||
PayWayLogic::initialization($tenant['id']);
|
||
// 提交事务
|
||
DB::commit();
|
||
// 返回成功
|
||
return $this->success('新增成功', [], 1, 1);
|
||
} catch (\Exception $e) {
|
||
// 回滚事务
|
||
DB::rollBack();
|
||
// 处理异常并返回错误信息
|
||
return $this->fail('新增失败' . $e->getMessage());
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @notes 编辑用户信息
|
||
* @return \think\response\Json
|
||
* @author 段誉
|
||
* @date 2022/9/22 16:34
|
||
*/
|
||
public function edit()
|
||
{
|
||
$params = (new TenantValidate())->post()->goCheck();
|
||
TenantLogic::edit($params);
|
||
return $this->success('操作成功', [], 1, 1);
|
||
}
|
||
|
||
/**
|
||
* @notes 删除租户
|
||
* @return \think\response\Json
|
||
* @author JXDN
|
||
* @date 2024/09/03 17:02
|
||
*/
|
||
public function delete()
|
||
{
|
||
$params = (new TenantValidate())->post()->goCheck('delete');
|
||
TenantLogic::delete($params);
|
||
return $this->success('删除成功', [], 1, 1);
|
||
}
|
||
} |