forked from damoqiongqiu/NiceFish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dir-desc.txt
57 lines (57 loc) · 2.08 KB
/
dir-desc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
├─app
│ ├─animations //这里定义了动画效果
│ ├─comment //这里是添加评论组件
│ │ ├─add-comment
│ │ ├─model
│ │ └─services
│ ├─home //这是首页组件
│ │ ├─online-contact
│ │ └─social-channel
│ ├─manage //这是管理员后台组件
│ │ ├─comment-table
│ │ ├─manage-main
│ │ ├─post-table
│ │ │ └─services
│ │ ├─sys-param
│ │ └─user-table
│ ├─post //这是跟文章有关的组件
│ │ ├─model
│ │ ├─post-detail
│ │ │ └─services
│ │ ├─post-detail-main
│ │ ├─postlist
│ │ │ └─services
│ │ └─write-post //这是写文章组件,需要参考TinyMCE编辑器和ng2集成的请看这里
│ ├─shared
│ ├─sitestat
│ ├─user //这里是与用户相关的组件
│ │ ├─forget-pwd
│ │ ├─model
│ │ ├─user-info //@Input和@Output的用法请参考这个目录
│ │ ├─user-login //模板驱动型表单请参考这个目录
│ │ ├─user-main
│ │ ├─user-profile //动态表单请参考这个目录
│ │ │ └─dyn-form
│ │ │ └─field
│ │ └─user-register //响应式表单请参考这个目录
│ │ └─directives
│ └─utils
├─assets //这个目录里面是一些CSS、字体图标、图片等
│ ├─bootstrap-v3.3.7
│ ├─css
│ ├─fonts
│ │ ├─bootstrap
│ │ ├─icomoon
│ │ │ └─icomoon
│ │ │ ├─demo-files
│ │ │ └─fonts
│ │ └─simple-line-icons
│ ├─i18n
│ ├─imgs
│ └─skins
│ └─lightgray
│ ├─fonts
│ └─img
├─documentation
├─environments
└─mock-data //测试数据全部放在这个目录里面,【注意】这个目录需要你手动拷贝到Tomcat去