├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── proxyconfig.json ├── server.js ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.less │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ └── core.module.ts │ ├── pages │ │ ├── home │ │ │ ├── components │ │ │ │ ├── member-card │ │ │ │ │ ├── member-card.component.html │ │ │ │ │ ├── member-card.component.less │ │ │ │ │ └── member-card.component.ts │ │ │ │ └── wy-carousel │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── wy-carousel.component.html │ │ │ │ │ ├── wy-carousel.component.less │ │ │ │ │ └── wy-carousel.component.ts │ │ │ ├── home-resolve.service.ts │ │ │ ├── home-routing.module.ts │ │ │ ├── home.component.html │ │ │ ├── home.component.less │ │ │ ├── home.component.ts │ │ │ └── home.module.ts │ │ ├── member │ │ │ ├── center │ │ │ │ ├── center-resolve.service.ts │ │ │ │ ├── center.component.html │ │ │ │ ├── center.component.less │ │ │ │ └── center.component.ts │ │ │ ├── components │ │ │ │ └── records │ │ │ │ │ ├── records.component.html │ │ │ │ │ ├── records.component.less │ │ │ │ │ └── records.component.ts │ │ │ ├── member-routing.module.ts │ │ │ ├── member.module.ts │ │ │ └── record-detail │ │ │ │ ├── record-detail.component.html │ │ │ │ ├── record-detail.component.ts │ │ │ │ └── record-resolve.service.ts │ │ ├── pages.module.ts │ │ ├── sheet-info │ │ │ ├── sheet-info-resolver.service.ts │ │ │ ├── sheet-info-routing.module.ts │ │ │ ├── sheet-info.component.html │ │ │ ├── sheet-info.component.less │ │ │ ├── sheet-info.component.ts │ │ │ └── sheet-info.module.ts │ │ ├── sheet-list │ │ │ ├── sheet-list-routing.module.ts │ │ │ ├── sheet-list.component.html │ │ │ ├── sheet-list.component.less │ │ │ ├── sheet-list.component.ts │ │ │ └── sheet-list.module.ts │ │ ├── singer │ │ │ ├── singer-detail │ │ │ │ ├── singer-detail.component.html │ │ │ │ ├── singer-detail.component.less │ │ │ │ ├── singer-detail.component.ts │ │ │ │ └── singer-resolver.service.ts │ │ │ ├── singer-routing.module.ts │ │ │ └── singer.module.ts │ │ └── song-info │ │ │ ├── song-info-resolver.service.ts │ │ │ ├── song-info-routing.module.ts │ │ │ ├── song-info.component.html │ │ │ ├── song-info.component.less │ │ │ ├── song-info.component.ts │ │ │ └── song-info.module.ts │ ├── services │ │ ├── data-types │ │ │ ├── common.types.ts │ │ │ └── member.type.ts │ │ ├── home.service.ts │ │ ├── http-interceptors │ │ │ ├── common.interceptor.ts │ │ │ └── index.ts │ │ ├── member.service.ts │ │ ├── search.service.ts │ │ ├── services.module.ts │ │ ├── sheet.service.ts │ │ ├── singer.service.ts │ │ ├── song.service.ts │ │ └── storage.service.ts │ ├── share │ │ ├── directives │ │ │ ├── clickoutside.directive.ts │ │ │ └── img-default.directive.ts │ │ ├── pipes │ │ │ ├── format-time.pipe.ts │ │ │ └── play-count.pipe.ts │ │ ├── share.module.ts │ │ └── wy-ui │ │ │ ├── single-sheet │ │ │ ├── single-sheet.component.html │ │ │ ├── single-sheet.component.less │ │ │ └── single-sheet.component.ts │ │ │ ├── wy-layer │ │ │ ├── wy-check-code │ │ │ │ ├── wy-check-code.component.html │ │ │ │ ├── wy-check-code.component.less │ │ │ │ ├── wy-check-code.component.ts │ │ │ │ └── wy-code │ │ │ │ │ ├── wy-code.component.html │ │ │ │ │ ├── wy-code.component.less │ │ │ │ │ └── wy-code.component.ts │ │ │ ├── wy-layer-default │ │ │ │ ├── wy-layer-default.component.less │ │ │ │ └── wy-layer-default.component.ts │ │ │ ├── wy-layer-like │ │ │ │ ├── wy-layer-like.component.html │ │ │ │ ├── wy-layer-like.component.less │ │ │ │ └── wy-layer-like.component.ts │ │ │ ├── wy-layer-login │ │ │ │ ├── wy-layer-login.component.html │ │ │ │ ├── wy-layer-login.component.less │ │ │ │ └── wy-layer-login.component.ts │ │ │ ├── wy-layer-modal │ │ │ │ ├── wy-layer-modal.component.html │ │ │ │ ├── wy-layer-modal.component.less │ │ │ │ └── wy-layer-modal.component.ts │ │ │ ├── wy-layer-register │ │ │ │ ├── wy-layer-register.component.html │ │ │ │ ├── wy-layer-register.component.less │ │ │ │ └── wy-layer-register.component.ts │ │ │ ├── wy-layer-share │ │ │ │ ├── wy-layer-share.component.html │ │ │ │ ├── wy-layer-share.component.less │ │ │ │ └── wy-layer-share.component.ts │ │ │ └── wy-layer.module.ts │ │ │ ├── wy-player │ │ │ ├── player-type.ts │ │ │ ├── wy-player-panel │ │ │ │ ├── wy-lyric.ts │ │ │ │ ├── wy-player-panel.component.html │ │ │ │ ├── wy-player-panel.component.less │ │ │ │ └── wy-player-panel.component.ts │ │ │ ├── wy-player.component.html │ │ │ ├── wy-player.component.less │ │ │ ├── wy-player.component.ts │ │ │ ├── wy-player.module.ts │ │ │ └── wy-scroll │ │ │ │ └── wy-scroll.component.ts │ │ │ ├── wy-search │ │ │ ├── jump.service.ts │ │ │ ├── wy-search-panel │ │ │ │ ├── wy-search-panel.component.html │ │ │ │ ├── wy-search-panel.component.less │ │ │ │ └── wy-search-panel.component.ts │ │ │ ├── wy-search.component.html │ │ │ ├── wy-search.component.less │ │ │ ├── wy-search.component.ts │ │ │ └── wy-search.module.ts │ │ │ ├── wy-slider │ │ │ ├── wy-slider-handle.component.ts │ │ │ ├── wy-slider-helper.ts │ │ │ ├── wy-slider-track.component.ts │ │ │ ├── wy-slider-types.ts │ │ │ ├── wy-slider.component.html │ │ │ ├── wy-slider.component.less │ │ │ ├── wy-slider.component.ts │ │ │ └── wy-slider.module.ts │ │ │ └── wy-ui.module.ts │ ├── store │ │ ├── actions │ │ │ ├── member.actions.ts │ │ │ └── player.actions.ts │ │ ├── batch-actions.service.ts │ │ ├── index.ts │ │ ├── reducers │ │ │ ├── member.reducer.ts │ │ │ └── player.reducer.ts │ │ └── selectors │ │ │ ├── member.selector.ts │ │ │ └── player.selector.ts │ └── utils │ │ ├── array.ts │ │ ├── base64.ts │ │ ├── number.ts │ │ └── tools.ts ├── assets │ ├── .gitkeep │ ├── images │ │ ├── button2.png │ │ ├── coverall.png │ │ ├── icon.png │ │ ├── icon2.png │ │ ├── iconall.png │ │ ├── index.png │ │ ├── layer.png │ │ ├── platform.png │ │ ├── playbar.png │ │ ├── playlist.png │ │ ├── playlist_bg.png │ │ ├── singer.jpg │ │ ├── statbar.png │ │ ├── table.png │ │ └── toplist.png │ └── styles │ │ ├── index.less │ │ ├── layout.less │ │ ├── mixins.less │ │ ├── varibles.less │ │ └── zorro.less ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/package.json -------------------------------------------------------------------------------- /proxyconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/proxyconfig.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/server.js -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/app.component.less -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/core/core.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/components/member-card/member-card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/member-card/member-card.component.html -------------------------------------------------------------------------------- /src/app/pages/home/components/member-card/member-card.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/member-card/member-card.component.less -------------------------------------------------------------------------------- /src/app/pages/home/components/member-card/member-card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/member-card/member-card.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/components/wy-carousel/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/wy-carousel/banner.png -------------------------------------------------------------------------------- /src/app/pages/home/components/wy-carousel/wy-carousel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/wy-carousel/wy-carousel.component.html -------------------------------------------------------------------------------- /src/app/pages/home/components/wy-carousel/wy-carousel.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/wy-carousel/wy-carousel.component.less -------------------------------------------------------------------------------- /src/app/pages/home/components/wy-carousel/wy-carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/components/wy-carousel/wy-carousel.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home-resolve.service.ts -------------------------------------------------------------------------------- /src/app/pages/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home.component.less -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/home/home.module.ts -------------------------------------------------------------------------------- /src/app/pages/member/center/center-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/center/center-resolve.service.ts -------------------------------------------------------------------------------- /src/app/pages/member/center/center.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/center/center.component.html -------------------------------------------------------------------------------- /src/app/pages/member/center/center.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/center/center.component.less -------------------------------------------------------------------------------- /src/app/pages/member/center/center.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/center/center.component.ts -------------------------------------------------------------------------------- /src/app/pages/member/components/records/records.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/components/records/records.component.html -------------------------------------------------------------------------------- /src/app/pages/member/components/records/records.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/components/records/records.component.less -------------------------------------------------------------------------------- /src/app/pages/member/components/records/records.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/components/records/records.component.ts -------------------------------------------------------------------------------- /src/app/pages/member/member-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/member-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/member/member.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/member.module.ts -------------------------------------------------------------------------------- /src/app/pages/member/record-detail/record-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/record-detail/record-detail.component.html -------------------------------------------------------------------------------- /src/app/pages/member/record-detail/record-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/record-detail/record-detail.component.ts -------------------------------------------------------------------------------- /src/app/pages/member/record-detail/record-resolve.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/member/record-detail/record-resolve.service.ts -------------------------------------------------------------------------------- /src/app/pages/pages.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/pages.module.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info-resolver.service.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info.component.html -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info.component.less -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info.component.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-info/sheet-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-info/sheet-info.module.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-list/sheet-list-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-list/sheet-list-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-list/sheet-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-list/sheet-list.component.html -------------------------------------------------------------------------------- /src/app/pages/sheet-list/sheet-list.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-list/sheet-list.component.less -------------------------------------------------------------------------------- /src/app/pages/sheet-list/sheet-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-list/sheet-list.component.ts -------------------------------------------------------------------------------- /src/app/pages/sheet-list/sheet-list.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/sheet-list/sheet-list.module.ts -------------------------------------------------------------------------------- /src/app/pages/singer/singer-detail/singer-detail.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer-detail/singer-detail.component.html -------------------------------------------------------------------------------- /src/app/pages/singer/singer-detail/singer-detail.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer-detail/singer-detail.component.less -------------------------------------------------------------------------------- /src/app/pages/singer/singer-detail/singer-detail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer-detail/singer-detail.component.ts -------------------------------------------------------------------------------- /src/app/pages/singer/singer-detail/singer-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer-detail/singer-resolver.service.ts -------------------------------------------------------------------------------- /src/app/pages/singer/singer-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/singer/singer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/singer/singer.module.ts -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info-resolver.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info-resolver.service.ts -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info.component.html -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info.component.less -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info.component.ts -------------------------------------------------------------------------------- /src/app/pages/song-info/song-info.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/pages/song-info/song-info.module.ts -------------------------------------------------------------------------------- /src/app/services/data-types/common.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/data-types/common.types.ts -------------------------------------------------------------------------------- /src/app/services/data-types/member.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/data-types/member.type.ts -------------------------------------------------------------------------------- /src/app/services/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/home.service.ts -------------------------------------------------------------------------------- /src/app/services/http-interceptors/common.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/http-interceptors/common.interceptor.ts -------------------------------------------------------------------------------- /src/app/services/http-interceptors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/http-interceptors/index.ts -------------------------------------------------------------------------------- /src/app/services/member.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/member.service.ts -------------------------------------------------------------------------------- /src/app/services/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/search.service.ts -------------------------------------------------------------------------------- /src/app/services/services.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/services.module.ts -------------------------------------------------------------------------------- /src/app/services/sheet.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/sheet.service.ts -------------------------------------------------------------------------------- /src/app/services/singer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/singer.service.ts -------------------------------------------------------------------------------- /src/app/services/song.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/song.service.ts -------------------------------------------------------------------------------- /src/app/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/services/storage.service.ts -------------------------------------------------------------------------------- /src/app/share/directives/clickoutside.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/directives/clickoutside.directive.ts -------------------------------------------------------------------------------- /src/app/share/directives/img-default.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/directives/img-default.directive.ts -------------------------------------------------------------------------------- /src/app/share/pipes/format-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/pipes/format-time.pipe.ts -------------------------------------------------------------------------------- /src/app/share/pipes/play-count.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/pipes/play-count.pipe.ts -------------------------------------------------------------------------------- /src/app/share/share.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/share.module.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/single-sheet/single-sheet.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/single-sheet/single-sheet.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/single-sheet/single-sheet.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/single-sheet/single-sheet.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/single-sheet/single-sheet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/single-sheet/single-sheet.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-check-code.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-check-code/wy-code/wy-code.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-default/wy-layer-default.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-default/wy-layer-default.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-default/wy-layer-default.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-default/wy-layer-default.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-like/wy-layer-like.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-login/wy-layer-login.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-modal/wy-layer-modal.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-register/wy-layer-register.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer-share/wy-layer-share.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-layer/wy-layer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-layer/wy-layer.module.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/player-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/player-type.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player-panel/wy-lyric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player-panel/wy-lyric.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player-panel/wy-player-panel.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-player.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-player.module.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-player/wy-scroll/wy-scroll.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-player/wy-scroll/wy-scroll.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/jump.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/jump.service.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search-panel/wy-search-panel.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search.component.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-search/wy-search.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-search/wy-search.module.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider-handle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider-handle.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider-helper.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider-track.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider-track.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider-types.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider.component.html -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider.component.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider.component.less -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider.component.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-slider/wy-slider.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-slider/wy-slider.module.ts -------------------------------------------------------------------------------- /src/app/share/wy-ui/wy-ui.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/share/wy-ui/wy-ui.module.ts -------------------------------------------------------------------------------- /src/app/store/actions/member.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/actions/member.actions.ts -------------------------------------------------------------------------------- /src/app/store/actions/player.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/actions/player.actions.ts -------------------------------------------------------------------------------- /src/app/store/batch-actions.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/batch-actions.service.ts -------------------------------------------------------------------------------- /src/app/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/index.ts -------------------------------------------------------------------------------- /src/app/store/reducers/member.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/reducers/member.reducer.ts -------------------------------------------------------------------------------- /src/app/store/reducers/player.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/reducers/player.reducer.ts -------------------------------------------------------------------------------- /src/app/store/selectors/member.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/selectors/member.selector.ts -------------------------------------------------------------------------------- /src/app/store/selectors/player.selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/store/selectors/player.selector.ts -------------------------------------------------------------------------------- /src/app/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/utils/array.ts -------------------------------------------------------------------------------- /src/app/utils/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/utils/base64.ts -------------------------------------------------------------------------------- /src/app/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/utils/number.ts -------------------------------------------------------------------------------- /src/app/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/app/utils/tools.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/button2.png -------------------------------------------------------------------------------- /src/assets/images/coverall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/coverall.png -------------------------------------------------------------------------------- /src/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/icon.png -------------------------------------------------------------------------------- /src/assets/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/icon2.png -------------------------------------------------------------------------------- /src/assets/images/iconall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/iconall.png -------------------------------------------------------------------------------- /src/assets/images/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/index.png -------------------------------------------------------------------------------- /src/assets/images/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/layer.png -------------------------------------------------------------------------------- /src/assets/images/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/platform.png -------------------------------------------------------------------------------- /src/assets/images/playbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/playbar.png -------------------------------------------------------------------------------- /src/assets/images/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/playlist.png -------------------------------------------------------------------------------- /src/assets/images/playlist_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/playlist_bg.png -------------------------------------------------------------------------------- /src/assets/images/singer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/singer.jpg -------------------------------------------------------------------------------- /src/assets/images/statbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/statbar.png -------------------------------------------------------------------------------- /src/assets/images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/table.png -------------------------------------------------------------------------------- /src/assets/images/toplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/images/toplist.png -------------------------------------------------------------------------------- /src/assets/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/styles/index.less -------------------------------------------------------------------------------- /src/assets/styles/layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/styles/layout.less -------------------------------------------------------------------------------- /src/assets/styles/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/styles/mixins.less -------------------------------------------------------------------------------- /src/assets/styles/varibles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/styles/varibles.less -------------------------------------------------------------------------------- /src/assets/styles/zorro.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/assets/styles/zorro.less -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lycHub/ng-wyy/HEAD/tslint.json --------------------------------------------------------------------------------