├── .babelrc ├── .editorconfig ├── README.md ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package.json ├── server ├── db.js ├── index.js └── user │ ├── login.js │ └── register.js ├── src ├── App.vue ├── client.js ├── common │ ├── icons │ │ ├── icon-about.svg │ │ ├── icon-ai.svg │ │ ├── icon-ai2.svg │ │ ├── icon-back.svg │ │ ├── icon-chat.svg │ │ ├── icon-emoji.svg │ │ ├── icon-group.svg │ │ ├── icon-group2.svg │ │ ├── icon-index.svg │ │ ├── icon-loading.svg │ │ ├── icon-menu.svg │ │ ├── icon-more.svg │ │ ├── icon-msg.svg │ │ ├── icon-top.svg │ │ ├── icon-website.svg │ │ └── icon-yuyin.svg │ └── style │ │ ├── about.scss │ │ ├── base.scss │ │ ├── changecolor.scss │ │ ├── collection.scss │ │ ├── content.scss │ │ ├── focus.scss │ │ ├── footer.scss │ │ ├── header.scss │ │ ├── newslist.scss │ │ ├── sharemore.scss │ │ ├── showmsg.scss │ │ ├── sidemenu.scss │ │ └── talk.scss ├── components │ ├── AI │ │ └── AI.vue │ ├── About │ │ └── about.vue │ ├── Asidemenu │ │ └── sidemenu.vue │ ├── Content │ │ └── content.vue │ ├── Focus │ │ └── focus.vue │ ├── Footer │ │ └── footer.vue │ ├── Header │ │ └── header.vue │ ├── Like │ │ └── like.vue │ ├── News │ │ └── news.vue │ ├── NewsList │ │ └── newslist.vue │ ├── SetColor │ │ └── changecolor.vue │ ├── ShowMsg │ │ └── showmsg.vue │ ├── Talk │ │ └── talk.vue │ ├── Task │ │ └── task.vue │ ├── collection │ │ └── collection.vue │ ├── enter │ │ ├── enter.vue │ │ ├── images │ │ │ ├── account.png │ │ │ ├── flow1.png │ │ │ ├── flow2.png │ │ │ ├── goback.png │ │ │ ├── password.png │ │ │ ├── phone.png │ │ │ └── verify.png │ │ └── tour-app-account.less │ ├── login │ │ └── login.vue │ └── shareMore │ │ └── shareMore.vue ├── main.js ├── pic │ ├── about.png │ ├── avatar.jpg │ ├── avatar2.jpg │ ├── close.png │ ├── collection.png │ ├── color.png │ ├── focus_1.png │ ├── focus_2.png │ ├── history.png │ ├── home_1.png │ ├── home_2.png │ ├── info.png │ ├── jishu.png │ ├── like_1.png │ ├── like_2.png │ ├── my_1.png │ ├── my_2.png │ ├── radio_1.png │ ├── radio_2.png │ ├── timg.jpg │ ├── user.jpg │ ├── user.png │ └── zuopin.png └── router │ └── index.js ├── static ├── .gitkeep ├── image │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 7.png └── js │ └── socket.js └── tour.sql /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/.editorconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/config/dev.env.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/package.json -------------------------------------------------------------------------------- /server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/server/db.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/server/index.js -------------------------------------------------------------------------------- /server/user/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/server/user/login.js -------------------------------------------------------------------------------- /server/user/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/server/user/register.js -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/client.js -------------------------------------------------------------------------------- /src/common/icons/icon-about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-about.svg -------------------------------------------------------------------------------- /src/common/icons/icon-ai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-ai.svg -------------------------------------------------------------------------------- /src/common/icons/icon-ai2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-ai2.svg -------------------------------------------------------------------------------- /src/common/icons/icon-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-back.svg -------------------------------------------------------------------------------- /src/common/icons/icon-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-chat.svg -------------------------------------------------------------------------------- /src/common/icons/icon-emoji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-emoji.svg -------------------------------------------------------------------------------- /src/common/icons/icon-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-group.svg -------------------------------------------------------------------------------- /src/common/icons/icon-group2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-group2.svg -------------------------------------------------------------------------------- /src/common/icons/icon-index.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-index.svg -------------------------------------------------------------------------------- /src/common/icons/icon-loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-loading.svg -------------------------------------------------------------------------------- /src/common/icons/icon-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-menu.svg -------------------------------------------------------------------------------- /src/common/icons/icon-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-more.svg -------------------------------------------------------------------------------- /src/common/icons/icon-msg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-msg.svg -------------------------------------------------------------------------------- /src/common/icons/icon-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-top.svg -------------------------------------------------------------------------------- /src/common/icons/icon-website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-website.svg -------------------------------------------------------------------------------- /src/common/icons/icon-yuyin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/icons/icon-yuyin.svg -------------------------------------------------------------------------------- /src/common/style/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/about.scss -------------------------------------------------------------------------------- /src/common/style/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/base.scss -------------------------------------------------------------------------------- /src/common/style/changecolor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/changecolor.scss -------------------------------------------------------------------------------- /src/common/style/collection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/collection.scss -------------------------------------------------------------------------------- /src/common/style/content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/content.scss -------------------------------------------------------------------------------- /src/common/style/focus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/focus.scss -------------------------------------------------------------------------------- /src/common/style/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/footer.scss -------------------------------------------------------------------------------- /src/common/style/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/header.scss -------------------------------------------------------------------------------- /src/common/style/newslist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/newslist.scss -------------------------------------------------------------------------------- /src/common/style/sharemore.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/sharemore.scss -------------------------------------------------------------------------------- /src/common/style/showmsg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/showmsg.scss -------------------------------------------------------------------------------- /src/common/style/sidemenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/sidemenu.scss -------------------------------------------------------------------------------- /src/common/style/talk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/common/style/talk.scss -------------------------------------------------------------------------------- /src/components/AI/AI.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/AI/AI.vue -------------------------------------------------------------------------------- /src/components/About/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/About/about.vue -------------------------------------------------------------------------------- /src/components/Asidemenu/sidemenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Asidemenu/sidemenu.vue -------------------------------------------------------------------------------- /src/components/Content/content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Content/content.vue -------------------------------------------------------------------------------- /src/components/Focus/focus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Focus/focus.vue -------------------------------------------------------------------------------- /src/components/Footer/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Footer/footer.vue -------------------------------------------------------------------------------- /src/components/Header/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Header/header.vue -------------------------------------------------------------------------------- /src/components/Like/like.vue: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/News/news.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/News/news.vue -------------------------------------------------------------------------------- /src/components/NewsList/newslist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/NewsList/newslist.vue -------------------------------------------------------------------------------- /src/components/SetColor/changecolor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/SetColor/changecolor.vue -------------------------------------------------------------------------------- /src/components/ShowMsg/showmsg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/ShowMsg/showmsg.vue -------------------------------------------------------------------------------- /src/components/Talk/talk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Talk/talk.vue -------------------------------------------------------------------------------- /src/components/Task/task.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/Task/task.vue -------------------------------------------------------------------------------- /src/components/collection/collection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/collection/collection.vue -------------------------------------------------------------------------------- /src/components/enter/enter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/enter.vue -------------------------------------------------------------------------------- /src/components/enter/images/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/account.png -------------------------------------------------------------------------------- /src/components/enter/images/flow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/flow1.png -------------------------------------------------------------------------------- /src/components/enter/images/flow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/flow2.png -------------------------------------------------------------------------------- /src/components/enter/images/goback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/goback.png -------------------------------------------------------------------------------- /src/components/enter/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/password.png -------------------------------------------------------------------------------- /src/components/enter/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/phone.png -------------------------------------------------------------------------------- /src/components/enter/images/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/images/verify.png -------------------------------------------------------------------------------- /src/components/enter/tour-app-account.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/enter/tour-app-account.less -------------------------------------------------------------------------------- /src/components/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/login/login.vue -------------------------------------------------------------------------------- /src/components/shareMore/shareMore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/components/shareMore/shareMore.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pic/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/about.png -------------------------------------------------------------------------------- /src/pic/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/avatar.jpg -------------------------------------------------------------------------------- /src/pic/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/avatar2.jpg -------------------------------------------------------------------------------- /src/pic/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/close.png -------------------------------------------------------------------------------- /src/pic/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/collection.png -------------------------------------------------------------------------------- /src/pic/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/color.png -------------------------------------------------------------------------------- /src/pic/focus_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/focus_1.png -------------------------------------------------------------------------------- /src/pic/focus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/focus_2.png -------------------------------------------------------------------------------- /src/pic/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/history.png -------------------------------------------------------------------------------- /src/pic/home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/home_1.png -------------------------------------------------------------------------------- /src/pic/home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/home_2.png -------------------------------------------------------------------------------- /src/pic/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/info.png -------------------------------------------------------------------------------- /src/pic/jishu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/jishu.png -------------------------------------------------------------------------------- /src/pic/like_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/like_1.png -------------------------------------------------------------------------------- /src/pic/like_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/like_2.png -------------------------------------------------------------------------------- /src/pic/my_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/my_1.png -------------------------------------------------------------------------------- /src/pic/my_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/my_2.png -------------------------------------------------------------------------------- /src/pic/radio_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/radio_1.png -------------------------------------------------------------------------------- /src/pic/radio_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/radio_2.png -------------------------------------------------------------------------------- /src/pic/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/timg.jpg -------------------------------------------------------------------------------- /src/pic/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/user.jpg -------------------------------------------------------------------------------- /src/pic/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/user.png -------------------------------------------------------------------------------- /src/pic/zuopin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/pic/zuopin.png -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/src/router/index.js -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/1.png -------------------------------------------------------------------------------- /static/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/2.png -------------------------------------------------------------------------------- /static/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/3.png -------------------------------------------------------------------------------- /static/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/4.png -------------------------------------------------------------------------------- /static/image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/5.png -------------------------------------------------------------------------------- /static/image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/image/7.png -------------------------------------------------------------------------------- /static/js/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/static/js/socket.js -------------------------------------------------------------------------------- /tour.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveondo/CloudNews/HEAD/tour.sql --------------------------------------------------------------------------------