gitextract_7afk0_go/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── package.json └── src/ ├── angular-practice/ │ ├── angular-code-review/ │ │ └── AngularJS1.x Code Review CheckList.xmind │ ├── angular-skill-tree/ │ │ └── AngularJS1.x 技能点.xmind │ ├── checkbox-tree/ │ │ ├── checkbox.css │ │ ├── checkbox.js │ │ ├── checkbox.tpl.html │ │ ├── index.html │ │ ├── reset.css │ │ ├── tree.css │ │ ├── tree.html │ │ ├── tree.js │ │ └── treeItem.html │ ├── dropdown/ │ │ ├── README.md │ │ ├── date.css │ │ ├── date.js │ │ ├── date.tpl.html │ │ ├── dropdown-autocomplete.js │ │ ├── dropdown-autocomplete.tpl.html │ │ ├── dropdown-date.js │ │ ├── dropdown-date.tpl.html │ │ ├── dropdown-select.js │ │ ├── dropdown-select.tpl.html │ │ ├── dropdown.css │ │ ├── dropdown.js │ │ ├── index.css │ │ ├── index.html │ │ └── json.js │ ├── flymeal/ │ │ ├── README.md │ │ ├── data/ │ │ │ ├── order.json │ │ │ └── restaurant.json │ │ ├── directives/ │ │ │ ├── index.js │ │ │ ├── myPaging.html │ │ │ ├── myRank.html │ │ │ └── myRestaurantCard.html │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── package.json │ │ └── partials/ │ │ ├── home.html │ │ ├── leftnav.html │ │ ├── list.html │ │ ├── myComments.html │ │ ├── myEvaluate.html │ │ ├── myMenu.html │ │ ├── myOrder.html │ │ ├── myOrderList.html │ │ ├── myRestaurant.html │ │ └── personal.html │ ├── form/ │ │ ├── checkbox.css │ │ ├── checkbox.js │ │ ├── checkbox.tpl.html │ │ ├── index.html │ │ ├── radio.css │ │ ├── radio.js │ │ └── radio.tpl.html │ ├── http-server/ │ │ ├── README.md │ │ ├── conf/ │ │ │ ├── test-array-config.js │ │ │ ├── test-object-config.js │ │ │ ├── test-reg-config.js │ │ │ └── test-rest-config.js │ │ ├── data/ │ │ │ ├── area.json │ │ │ ├── city.json │ │ │ └── province.json │ │ ├── db.json │ │ ├── mock-conf.js │ │ ├── mock-router.js │ │ ├── mock-server.js │ │ └── package.json │ ├── loading/ │ │ ├── index.html │ │ ├── loading.css │ │ ├── loading.js │ │ └── loading.tpl.html │ ├── modal/ │ │ ├── index.html │ │ ├── modal.body.html │ │ ├── modal.css │ │ ├── modal.js │ │ └── modal.tpl.html │ ├── pagination/ │ │ ├── index.html │ │ ├── pagination.css │ │ ├── pagination.js │ │ └── pagination.tpl.html │ ├── panel/ │ │ ├── README.md │ │ ├── index.css │ │ ├── index.html │ │ ├── panel.css │ │ ├── panel.js │ │ └── panel.tpl.html │ ├── resource/ │ │ ├── README.md │ │ ├── app.js │ │ ├── index.html │ │ └── package.json │ ├── slide/ │ │ ├── README.md │ │ ├── index.css │ │ ├── index.html │ │ ├── slide.css │ │ ├── slide.js │ │ └── slide.tpl.html │ ├── steps/ │ │ ├── index.html │ │ ├── steps.css │ │ ├── steps.js │ │ └── steps.tpl.html │ ├── switch/ │ │ ├── README.md │ │ ├── index.html │ │ ├── switch.css │ │ ├── switch.js │ │ └── switch.tpl.html │ ├── tooltip/ │ │ ├── index.html │ │ ├── tooltip.css │ │ ├── tooltip.js │ │ └── tooltip.tpl.html │ ├── voice/ │ │ ├── demo.html │ │ ├── demo.js │ │ ├── readme.md │ │ ├── voice.css │ │ ├── voice.directive.js │ │ └── voice.tpl.html │ └── weibo/ │ ├── README.md │ ├── index.html │ ├── index.js │ └── style.css ├── css-practice/ │ ├── blockAndInline.html │ ├── box.html │ ├── center.html │ ├── css.html │ ├── elema.html │ ├── flex-layout.html │ ├── jd-book-desc.html │ ├── jd-left-menu.html │ ├── jd-order.html │ ├── position.html │ ├── resume.html │ ├── tmall-simple-nav.html │ ├── youku-nav.html │ └── youku.html ├── guide/ │ ├── css.md │ └── js.md └── js-practice/ ├── code-snippet/ │ ├── HashMap.js │ ├── co.js │ └── deepCopy.js ├── concept/ │ ├── closure.md │ ├── constructor.md │ ├── decorator.md │ ├── facade.md │ ├── factoryPattern.md │ ├── flyWeight.md │ ├── module.md │ ├── object.md │ ├── others.md │ └── singleton.md ├── jd-menu/ │ ├── index.html │ ├── index.js │ └── style.css ├── login/ │ ├── index.html │ ├── index.js │ └── style.css ├── searchpca/ │ ├── data.js │ ├── index.html │ └── index.js ├── table/ │ ├── index.html │ ├── index.js │ └── table.js ├── tabs/ │ ├── index.html │ ├── index.js │ └── style.css ├── todolist/ │ ├── index.html │ ├── index.js │ └── style.css ├── two-ways-binding/ │ └── pub-sub/ │ ├── index.html │ └── pub-sub.js ├── weibo/ │ ├── index.html │ ├── index.js │ └── style.css └── youku/ ├── index.html ├── index.js └── style.css