标签:
build/(工程目录)
common/
tplAdmin/
tplCustomer/
tplHelpdesk/
tplRepairer/
appAdmin/ (独立模块,以app名字开头,各app模块内容近似)
appCustomer/
appHelpdesk/
appRepairer/
appLogin/
common/ (通用模块库)
utils/ (其他组件)
controller/ (相关的子模板的controller.js存放在这里)
directives/ (相关的directive.js存放在这里)
admin_app.js (app模型定义和路由配置文件)
admin_main.js (requirejs的入口和配置文件)
admin_services.js (app的相关服务配置文件)
angular_filter/ (一些通用的过滤器)
common_plugin.js (一些非基于angular的但比较重要组件,例如console plugin)
css/
img/
js/
lib/ (包含所有第三方类库)
templete/ (子模板文件夹,其内容按模块类型分类)
404.html
admin.html (admin模块的入口html)
customer.html (customer模块的入口html)
helpdesk.html (helpdesk模块的入口html)
login.html (login模块的入口html)
index.html (程序的总入口点,用以根据配置跳转到各个模块入口)
repairer.html (repairer模块的入口html)
node_modules/ (grunt)
src/ (未经grunt处理的源文件)
test/ (端到端测试)
gruntfile.js (grunt)
human.txt
package.json (grunt)
README.md
标签:
原文地址:http://my.oschina.net/u/1992917/blog/384612