├── .gitignore ├── src ├── assets │ └── logo.png ├── main.js ├── App.vue ├── lib │ ├── cron.js │ ├── CoordinateTransform.js │ ├── clipboard.min.js │ └── jquery-2.2.0.min.js └── components │ ├── CoordinateTransform.vue │ └── CronExpressions.vue ├── dist ├── element-icons.eot ├── element-icons.ttf ├── element-icons.woff └── element-icons.svg ├── commit.sh ├── .babelrc ├── index.html ├── README.md ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | .idea/ -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee1k/stool/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /dist/element-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee1k/stool/HEAD/dist/element-icons.eot -------------------------------------------------------------------------------- /dist/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee1k/stool/HEAD/dist/element-icons.ttf -------------------------------------------------------------------------------- /dist/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gee1k/stool/HEAD/dist/element-icons.woff -------------------------------------------------------------------------------- /commit.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | git add . 3 | git commit -m 'update' 4 | git push origin master 5 | git push coding master 6 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "es2015", 5 | { 6 | "modules": false 7 | } 8 | ] 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |44 |
| 319 | | 320 |321 | 秒 322 | | 323 |324 | 分钟 325 | | 326 |327 | 小时 328 | | 329 |330 | 日 331 | | 332 |
333 | 月 334 | |
335 | 336 | 星期 337 | | 338 |339 | 年 340 | | 341 |
| 344 | 表达式字段: 345 | | 346 |
347 | |
353 |
354 | |
360 |
361 | |
367 |
368 | |
374 |
375 | |
381 |
382 | |
388 |
389 | |
395 |
| Cron 表达式: | 398 |
399 | |
404 | ||||||