Go to file
2025-07-14 23:27:18 +08:00
app 修改添加题目功能 2025-07-14 23:27:18 +08:00
config first commit 2025-07-14 14:55:25 +08:00
database first commit 2025-07-14 14:55:25 +08:00
public 修改添加题目功能 2025-07-14 23:27:18 +08:00
route first commit 2025-07-14 14:55:25 +08:00
.env 修改添加题目功能 2025-07-14 23:27:18 +08:00
.example.env first commit 2025-07-14 14:55:25 +08:00
.gitignore 修改添加题目功能 2025-07-14 23:27:18 +08:00
.travis.yml first commit 2025-07-14 14:55:25 +08:00
composer.json first commit 2025-07-14 14:55:25 +08:00
composer.lock first commit 2025-07-14 14:55:25 +08:00
LICENSE.txt first commit 2025-07-14 14:55:25 +08:00
README.md 增加科目管理功能 2025-07-14 17:50:10 +08:00
think first commit 2025-07-14 14:55:25 +08:00

phpAdmin 后台管理 (admin-thinkphp-Layui2)

一、介绍

  • phpAdmin 后台管理

  • [admin-thinkphp-layui]

    • 后端框架Thinkphp6.1
    • Layui2.8

二、安装教程

location ~* (runtime|application)/{
	return 403;
}
location / {
	if (!-e $request_filename){
		rewrite  ^(.*)$  /index.php?s=$1  last;   break;
	}
}

三、使用说明

四、鸣谢

五、技术支持

  • QQ357099073

六、数据表结构

  1. 题目表(questions)
  2. 选择题选项表(question_options)
  3. 科目表(subjects)
  4. 知识点表(knowledge_points)
  5. 题目标签表(question_tags)
  6. 题目标签关联表(question_tag_relations)
  7. 题目附件表(question_attachments)
  8. 题目使用记录表(question_usage_records)
  9. 题目统计表(question_statistics)