Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.
/ Angular-MS Public archive

基于angular1.x实现,响应式后台管理系统

Notifications You must be signed in to change notification settings

Lsnsh/Angular-MS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular-MS

基于angular实现,后台管理系统,目前有登录、注册、图标、信息列表、添加、详情页。

构建

# 安装
npm install

# 发布 (需配置发布路径)
fis3 release

fis-conf.js

// 配置发布后的默认文件夹路径
fis.match('*', {
    // deploy阶段使用local-deliver插件
    deploy: fis.plugin('local-deliver', {
        // 指定发布的路径
        // 当前设置为支持php的服务器路径下
        to: 'D:/Program Files/ApacheServer/htdocs/ng-ms-demo'
    })
});

预览

登录页

   用户登录使用静态数据,内置两个账户: username: Tom, password: 123456 username: Lindy, password: 123456 预览效果迷路了 预览效果迷路了

注册页

   注册是写入到cookie中,未设置超时时间,关闭浏览器后自动过期。 预览效果迷路了 预览效果迷路了

图表页

   使用highcharts图表库,绘制直线、堆叠条形、圆饼图等。 预览效果迷路了

列表页

   信息列表,实现了分页功能。 预览效果迷路了

创建页

   学生表单信息创建。 预览效果迷路了

响应式页

   媒体查询配合BootStrap响应式工具类实现。 预览效果迷路了

技术栈

angular1.x
angular-ui-router
bootstrap
jquery
highcharts
less
fis3