├── 毕业设计(微信小程序) ├── app.wxss ├── vant-ui │ ├── common │ │ ├── style │ │ │ ├── theme.wxss │ │ │ ├── var.wxss │ │ │ ├── mixins │ │ │ │ ├── clearfix.wxss │ │ │ │ ├── ellipsis.wxss │ │ │ │ └── hairline.wxss │ │ │ ├── clearfix.wxss │ │ │ ├── ellipsis.wxss │ │ │ └── hairline.wxss │ │ ├── color.js │ │ ├── component.d.ts │ │ ├── color.d.ts │ │ ├── utils.d.ts │ │ ├── utils.js │ │ └── index.wxss │ ├── definitions │ │ ├── index.js │ │ ├── weapp.js │ │ └── index.d.ts │ ├── area │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ ├── button │ │ ├── index.d.ts │ │ └── index.json │ ├── card │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.js │ │ └── index.wxss │ ├── cell │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.js │ ├── circle │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── col │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ ├── dialog │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxss │ ├── divider │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── index.js │ ├── field │ │ ├── index.d.ts │ │ └── index.json │ ├── grid │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── icon │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ ├── image │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── info │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.js │ │ ├── index.wxml │ │ └── index.wxss │ ├── loading │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ ├── nav-bar │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.js │ │ └── index.wxml │ ├── notify │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ ├── notify.d.ts │ │ ├── index.wxss │ │ └── notify.js │ ├── overlay │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── panel │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.js │ │ └── index.wxml │ ├── picker │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── shared.js │ │ ├── shared.d.ts │ │ └── index.wxss │ ├── popup │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── radio │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── rate │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── row │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── search │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxss │ ├── sidebar │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── slider │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── stepper │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── steps │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.js │ ├── sticky │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── switch │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── tab │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── tabbar │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── tabs │ │ ├── index.d.ts │ │ └── index.json │ ├── tag │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ ├── toast │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.js │ │ ├── index.wxml │ │ └── toast.d.ts │ ├── action-sheet │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxss │ ├── cell-group │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── checkbox-group │ │ ├── index.wxml │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.js │ ├── checkbox │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── collapse │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ ├── count-down │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── utils.d.ts │ ├── goods-action │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── index.js │ ├── grid-item │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── notice-bar │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── progress │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxs │ │ ├── index.wxss │ │ ├── index.wxml │ │ └── index.js │ ├── radio-group │ │ ├── index.d.ts │ │ ├── index.wxml │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.js │ ├── sidebar-item │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ ├── index.wxss │ │ └── index.js │ ├── submit-bar │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── swipe-cell │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── tabbar-item │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── transition │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.js │ ├── tree-select │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxs │ │ └── index.wxss │ ├── collapse-item │ │ ├── index.d.ts │ │ ├── index.json │ │ └── index.wxml │ ├── datetime-picker │ │ ├── index.d.ts │ │ ├── index.wxss │ │ ├── index.json │ │ └── index.wxml │ ├── dropdown-item │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── dropdown-menu │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── goods-action-icon │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ ├── index.js │ │ └── index.wxml │ ├── picker-column │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxs │ │ ├── index.wxss │ │ └── index.wxml │ ├── goods-action-button │ │ ├── index.d.ts │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── mixins │ │ ├── basic.d.ts │ │ ├── link.d.ts │ │ ├── touch.d.ts │ │ ├── button.d.ts │ │ ├── open-type.d.ts │ │ ├── observer │ │ │ ├── behavior.d.ts │ │ │ ├── index.d.ts │ │ │ ├── behavior.js │ │ │ └── index.js │ │ ├── transition.d.ts │ │ ├── link.js │ │ ├── button.js │ │ ├── basic.js │ │ ├── open-type.js │ │ └── touch.js │ └── wxs │ │ ├── array.wxs │ │ ├── utils.wxs │ │ ├── object.wxs │ │ ├── bem.wxs │ │ └── memoize.wxs ├── pages │ ├── skin │ │ ├── skin.json │ │ ├── skin.wxml │ │ ├── skin.js │ │ └── skin.wxss │ ├── top │ │ ├── top.json │ │ └── top.wxml │ ├── Comment │ │ ├── Comment.json │ │ ├── Comment.wxss │ │ ├── Comment.wxml │ │ └── Comment.js │ ├── index │ │ ├── index.json │ │ ├── index.wxss │ │ └── index.wxml │ ├── search │ │ ├── search.json │ │ ├── search.js │ │ └── search.wxml │ ├── shake │ │ ├── shake.json │ │ └── shake.wxml │ ├── coming │ │ ├── coming.json │ │ ├── coming.wxml │ │ ├── coming.js │ │ └── coming.wxss │ ├── setting │ │ ├── setting.wxss │ │ ├── setting.json │ │ └── setting.wxml │ ├── history │ │ └── history.json │ ├── about │ │ ├── about.json │ │ ├── about.js │ │ ├── about.wxss │ │ └── about.wxml │ ├── gallery │ │ ├── gallery.json │ │ ├── gallery.wxml │ │ └── gallery.wxss │ ├── personInfo │ │ ├── personInfo.json │ │ ├── personInfo.wxml │ │ └── personInfo.wxss │ ├── information │ │ ├── information.json │ │ └── information.js │ ├── editPersonInfo │ │ └── editPersonInfo.json │ └── popular │ │ ├── popular.json │ │ ├── popular.wxss │ │ ├── popular.js │ │ └── popular.wxml ├── images │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── binxue.jpg │ ├── movie.jpg │ ├── icon │ │ ├── xx.png │ │ ├── chat.png │ │ ├── chat1.png │ │ ├── search.png │ │ ├── share.png │ │ ├── star.png │ │ ├── view.png │ │ ├── fivestar.png │ │ ├── arrow-right.png │ │ ├── collection.png │ │ ├── none-star.png │ │ ├── share-anti.png │ │ └── collection-anti.png │ ├── shouyir.jpg │ ├── yisheng.jpg │ ├── 20191023144043_WrCUT.jpeg │ └── 20191023160052_t2Hek.jpeg ├── comonents │ ├── movie-item │ │ ├── movie-item.json │ │ ├── movie-item.wxml │ │ ├── movie-item.js │ │ └── movie-item.wxss │ ├── message │ │ ├── message.wxml │ │ └── message.js │ ├── nullTip │ │ └── nullTip.wxml │ └── list │ │ └── list.wxml ├── dist │ └── images │ │ ├── loading.gif │ │ ├── top_icon.png │ │ ├── coming_icon.png │ │ ├── search_icon.png │ │ ├── popular_icon.png │ │ ├── top_active_icon.png │ │ ├── weui-info-icon.png │ │ ├── coming_active_icon.png │ │ ├── search_active_icon.png │ │ ├── weui-success-icon.png │ │ ├── weui-warning-icon.png │ │ └── popular_active_icon.png ├── jsconfig.json ├── .vscode │ └── settings.json ├── sitemap.json ├── utils │ ├── filter.wxs │ └── util.js ├── comm │ └── style │ │ └── tab.wxss ├── models │ ├── DetailModel.js │ └── HTTP.js └── app.js ├── my-app01 ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── app.component.less │ │ ├── foo │ │ │ ├── foo.component.less │ │ │ ├── foo.component.ts │ │ │ ├── foo.component.spec.ts │ │ │ └── foo.component.html │ │ ├── home │ │ │ └── login │ │ │ │ ├── login.component.less │ │ │ │ ├── login.component.html │ │ │ │ ├── login.component.ts │ │ │ │ └── login.component.spec.ts │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.module.ts │ │ └── app.component.spec.ts │ ├── favicon.ico │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── styles.less │ ├── index.html │ ├── main.ts │ └── test.ts ├── e2e │ ├── tsconfig.json │ ├── src │ │ ├── app.po.ts │ │ └── app.e2e-spec.ts │ └── protractor.conf.js ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json ├── browserslist ├── tsconfig.json ├── .gitignore ├── README.md └── karma.conf.js └── todomvc-angular ├── src ├── assets │ └── .gitkeep ├── app │ ├── app.component.less │ ├── app-routing.module.ts │ ├── app.module.ts │ └── app.component.spec.ts ├── favicon.ico ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── styles.less ├── styles.css ├── index.html ├── main.ts └── test.ts ├── e2e ├── tsconfig.json ├── src │ ├── app.po.ts │ └── app.e2e-spec.ts └── protractor.conf.js ├── .editorconfig ├── tsconfig.app.json ├── tsconfig.spec.json ├── browserslist ├── tsconfig.json ├── .gitignore ├── README.md └── karma.conf.js /毕业设计(微信小程序)/app.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my-app01/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my-app01/src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todomvc-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my-app01/src/app/foo/foo.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /todomvc-angular/src/app/app.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/theme.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/var.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/definitions/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/definitions/weapp.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my-app01/src/app/home/login/login.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/area/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/card/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/circle/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/col/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/mixins/clearfix.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/mixins/ellipsis.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/mixins/hairline.wxss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/dialog/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/divider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/field/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/grid/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/image/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/info/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/loading/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/nav-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/notify/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/overlay/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/panel/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/popup/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/radio/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/rate/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/row/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/search/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sidebar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/slider/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/stepper/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/steps/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sticky/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/switch/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tab/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tabbar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tabs/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tag/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/toast/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/action-sheet/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/cell-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/checkbox-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/checkbox/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/collapse/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/count-down/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/goods-action/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/grid-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/notice-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/progress/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/radio-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/radio-group/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sidebar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/submit-bar/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/swipe-cell/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tabbar-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/transition/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tree-select/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /my-app01/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/checkbox-group/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/collapse-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/datetime-picker/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/dropdown-item/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/dropdown-menu/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/goods-action-icon/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/picker-column/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/skin/skin.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/top/top.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/area/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/goods-action-button/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tab/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tag/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /my-app01/src/app/home/login/login.component.html: -------------------------------------------------------------------------------- 1 |

login works!

2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/Comment/Comment.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/Comment/Comment.wxss: -------------------------------------------------------------------------------- 1 | /* pages/Comment/Comment.wxss */ -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/search/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/shake/shake.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": {} 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/cell-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/circle/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/col/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/collapse/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/grid/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/info/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/loading/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/radio-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/row/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/slider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/stepper/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sticky/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/tabbar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/transition/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/checkbox-group/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/collapse/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/count-down/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/datetime-picker/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/dropdown-menu/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/basic.d.ts: -------------------------------------------------------------------------------- 1 | export declare const basic: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/link.d.ts: -------------------------------------------------------------------------------- 1 | export declare const link: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/touch.d.ts: -------------------------------------------------------------------------------- 1 | export declare const touch: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/picker-column/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/progress/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/radio-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sidebar/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/swipe-cell/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/coming/coming.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/setting/setting.wxss: -------------------------------------------------------------------------------- 1 | @import '../../comonents/list/list.wxss'; -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/checkbox-group/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/goods-action/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/button.d.ts: -------------------------------------------------------------------------------- 1 | export declare const button: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/history/history.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "浏览历史" 3 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/open-type.d.ts: -------------------------------------------------------------------------------- 1 | export declare const openType: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/observer/behavior.d.ts: -------------------------------------------------------------------------------- 1 | export declare const behavior: string; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sidebar/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sidebar{width:85px} -------------------------------------------------------------------------------- /my-app01/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/my-app01/src/favicon.ico -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/1.jpg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/2.jpg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/3.jpg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/divider/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/sticky/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-sticky{position:relative} -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/common/style/clearfix.wxss: -------------------------------------------------------------------------------- 1 | .van-clearfix:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /my-app01/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /my-app01/src/styles.less: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/comonents/movie-item/movie-item.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true, 3 | "usingComponents": {} 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/binxue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/binxue.jpg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/movie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/movie.jpg -------------------------------------------------------------------------------- /todomvc-angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/todomvc-angular/src/favicon.ico -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/xx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/xx.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/shouyir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/shouyir.jpg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/yisheng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/yisheng.jpg -------------------------------------------------------------------------------- /todomvc-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/chat.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/chat1.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/search.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/share.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/star.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/view.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于", 3 | "enablePullDownRefresh": false 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/transition.d.ts: -------------------------------------------------------------------------------- 1 | export declare const transition: (showDefaultValue: boolean) => any; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/row/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-row:after{display:table;clear:both;content:""} -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/loading.gif -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/top_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/top_icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/fivestar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/fivestar.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2015", 4 | "module": "commonjs" 5 | } 6 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/Comment/Comment.wxml: -------------------------------------------------------------------------------- 1 | 2 | pages/Comment/Comment.wxml 3 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/gallery/gallery.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "相册", 3 | "enablePullDownRefresh": false 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/setting/setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "设置", 3 | "enablePullDownRefresh": false 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/mixins/observer/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare function observe(vantOptions: any, options: any): void; 2 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/row/index.wxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/coming_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/coming_icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/search_icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/arrow-right.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/collection.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/none-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/none-star.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/share-anti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/share-anti.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/personInfo/personInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "个人资料", 3 | "enablePullDownRefresh": false 4 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/popular_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/popular_icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/count-down/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-count-down{color:#333;font-size:14px;line-height:20px} -------------------------------------------------------------------------------- /毕业设计(微信小程序)/vant-ui/grid/index.wxss: -------------------------------------------------------------------------------- 1 | @import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden} -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/top_active_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/top_active_icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/dist/images/weui-info-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/dist/images/weui-info-icon.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/20191023144043_WrCUT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/20191023144043_WrCUT.jpeg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/20191023160052_t2Hek.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/20191023160052_t2Hek.jpeg -------------------------------------------------------------------------------- /毕业设计(微信小程序)/images/icon/collection-anti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoubaishuang/-/HEAD/毕业设计(微信小程序)/images/icon/collection-anti.png -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/information/information.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | "van-loading": "/vant-ui/loading/index" 4 | } 5 | } -------------------------------------------------------------------------------- /毕业设计(微信小程序)/pages/setting/setting.wxml: -------------------------------------------------------------------------------- 1 | 2 |