Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swenson1992/dailyreport
日报管理系统V1版本,适合小团队的每日汇报记录
https://github.com/swenson1992/dailyreport
coffeescript dailyreport nodejs redis
Last synced: about 9 hours ago
JSON representation
日报管理系统V1版本,适合小团队的每日汇报记录
- Host: GitHub
- URL: https://github.com/swenson1992/dailyreport
- Owner: Swenson1992
- Created: 2017-12-06T12:12:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T21:09:07.000Z (10 months ago)
- Last Synced: 2025-01-23T23:05:46.371Z (about 9 hours ago)
- Topics: coffeescript, dailyreport, nodejs, redis
- Language: JavaScript
- Homepage:
- Size: 6.91 MB
- Stars: 197
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
## Daily Report 日报管理工具
写日报工具,该工具简单易用,包含网页和手机版。使用该日报工具可以随时随地使用手机或者电脑写和浏览日报.
提供小团队的日报工具,发现问题请提交issue,看到会第一时间回复修正~~共勉.详细的说明,请参考[Daily Report安装说明](https://songjian925.github.io/DailyReport/)
### 目录说明
```
工程目录
├── README.md
├── ReportServe
├── app.js
├── changelog.md
├── changelog.sh
├── config.coffee
├── config.js
├── controlers
│ ├── adminCtr.coffee
│ ├── adminCtr.js
│ ├── departmentCtr.coffee
│ ├── departmentCtr.js
│ ├── installCtr.coffee
│ ├── installCtr.js
│ ├── reportCtr.coffee
│ ├── reportCtr.js
│ ├── userCtr.coffee
│ └── userCtr.js
├── dailyReportServer
├── models
│ ├── departmentsModel.coffee
│ ├── departmentsModel.js
│ ├── reportModel.coffee
│ ├── reportModel.js
│ ├── usersModel.coffee
│ └── usersModel.js
├── other&this
│ └── db-info.md
├── package.json
├── routes
│ ├── routeProfile.coffee
│ └── routeProfile.js
├── utils.coffee
├── utils.js
├── views
│ ├── admin
│ │ ├── admingroup.hbs
│ │ ├── department.hbs
│ │ └── users.hbs
│ ├── install.hbs
│ ├── login.hbs
│ ├── mobile
│ │ ├── layout.hbs
│ │ ├── login.hbs
│ │ ├── password.hbs
│ │ ├── show.hbs
│ │ ├── showsubordinate.hbs
│ │ └── write.hbs
│ ├── password.hbs
│ ├── show.hbs
│ ├── showsubordinate.hbs
│ └── write.hbs
└── vo
├── Response.coffee
└── Response.js```