Skip to content

ThinkPHP 6.0 与 Ant Design Pro Vue 基础前后分离权限系统

License

Notifications You must be signed in to change notification settings

Faiz56/think-admin

 
 

Repository files navigation

TAnt

Build Status

ThinkPHP 6.0 与 Ant Design Pro Vue 基础前后分离权限系统

警告: 不授权 hexianqi1959、趣果科技 使用

预览地址:

前端

Ant Design Vue Pro 项目 预览

后端

开发文档

开发计划

最新版本

没安装Composer? 请在最新版本链接下找到TAnt_Full.zip下载

安装

拉取代码

git clone https://github.com/edenleung/think-admin.git

# 稳定版
composer create-project xiaodi/tant

# 数据库从 database/2021-02-18.sql 导入

导入数据表

database/2020-05-27.sql

定时任务

配置

class Example
{
    public function register()
    {
        new Crontab('* * * * * *', function () {
            echo date('Y-m-d H:i:s') . "\n";
        });
    }
}

注册

<?php

namespace app\command;

class Tasker extends Command
{
    protected $tasks = [
        Example::class,
    ];
}

启动

php think tasker start

其它包

权限包

https://github.com/xiaodit/think-permission

JWT包

https://github.com/xiaodit/think-jwt

h5 模板

https://github.com/edenleung/vue-h5-template

打赏

如果此项目对你有帮助的,不忘给我打赏哦。

License

Apache License Version 2.0

About

ThinkPHP 6.0 与 Ant Design Pro Vue 基础前后分离权限系统

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.6%
  • Other 0.4%