标签:
本系统采用Thinkphp3.2版本开发
管理系统登录界面

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="{$Think.const.CSS_URL}login.css">
<script type="text/javascript" src="{$Think.const.JS_URL}jquery.min.js"></script>
<title>后台登陆</title>
</head>
<body>
<div id="login_top">
<div id="welcome">
欢迎使用兴湘学院科创中心人员管理系统
</div>
<div id="back">
<a href="#">返回首页</a> |
<a href="#">帮助</a>
</div>
</div>
<div id="login_center">
<div id="login_area">
<div id="login_form">
<form action="__SELF__" method="post">
<div id="login_tip">
用户登录 UserLogin
</div>
<div><input type="text" class="username" name="username"/></div>
<div><input type="password" class="pwd" name="password"/></div>
<div id="btn_area">
<input type="submit" name="submit" id="sub_btn" value="登 录"/>
<input type="reset" name="submit" id="sub_btn" value="重 置"/>
</div>
</form>
</div>
</div>
</div>
<div id="login_bottom">
兴湘学院科创中心版权所有&陆羽工作室提供技术支持
</div>
</body>
</html>
管理系统后台的管理界面

下面给大家介绍下,开发过程
首先,在你的www目录下创建你的项目名称

最重要的是people项目里的文件的编写


Controller控制器里的文件目录

UserController.class.php是实现用户的信息管理功能。
ManagerController.class.php是实现高级管理权限的功能配置。
MessageController.class.php是实现所管理各个行政部门信息的增,删,改,查的功能。
LeaderController.class.php是实现主席团成员的信息增,删,改,查的功能
RecordController.class.php是实现请假功能。
RewardController.class.php是实现奖惩记录的功能。
MeetController.class.php,DmeetController.class.php是实现会议记录功能,其中用到了百度编辑器插件ueditor。若有需要安装教程的可在下方留言。其实百度官方有文档手册。
下面是视图模版

文件的功能是与控制器对应文件一样
下面是对数据库操作的Model文件

源代码就不一一介绍了,感兴趣的朋友可以自行下载研究。http://download.csdn.net/detail/u014621044/9008139
下面介绍下ThinkPHP框架
标签:
原文地址:http://www.cnblogs.com/yxhblogs/p/4741214.html