Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/uncleLian/vue2-native

基于vue2 + vue-router + vuex 构建的一个新闻类大型单页面应用 —— 今日头条(native端)
https://github.com/uncleLian/vue2-native

Last synced: 3 months ago
JSON representation

基于vue2 + vue-router + vuex 构建的一个新闻类大型单页面应用 —— 今日头条(native端)

Lists

README

        

# vue2-native
![image](https://img.shields.io/badge/vue-2.5.13-blue.svg)
![image](https://img.shields.io/badge/vue--router-3.0.1-blue.svg)
![image](https://img.shields.io/badge/vuex-3.0.1-blue.svg)
![image](https://img.shields.io/badge/mint--ui-2.2.13-blue.svg)

> API 接口已失效 ‼️

## 简介
vue2-native 是一个仿今日头条app的[混合开发](https://baike.baidu.com/item/hybrid%20app/270520?fr=aladdin)项目,页面代码使用Vue开发,原生功能使用[cordova](http://cordova.axuer.com/)并打包成app,共20个页面,涉及文章的分类、展示、阅读、推荐、搜索和用户的登录、评论、收藏以及后台文章编辑等等,是一个完整的生态链。其复杂度不用说大家也能感受到。这是一个很好的vue进阶机会,请保持足够的耐心。

## 说明
> 如果此开源系列对你有帮助,你可以点右上角 "star"支持一下,非常感谢!^_^ 🌹

> 或者您可以 "follow(关注)" 一下作者,我正在不断开源更多实用的项目

> 如有问题可以直接在 Issues 中提,或者加入我们下方Vue群更进一步地交流

## 最终目标
Vue学习系列
- 第一阶段:[vue2-echo](https://github.com/uncleLian/vue2-echo) —— echo回声( 移动端,难度:★★☆☆☆ 入门项目, 推荐 ⭐️⭐️⭐️️⭐️⭐️)
- 第二阶段:[vue2-news](https://github.com/uncleLian/vue2-news) —— 今日头条( 移动端,难度:★★★☆☆ 过渡项目)
- 第三阶段:[vue2-health](https://github.com/uncleLian/vue2-health) —— 头条号( pc端,难度:★★★☆☆ 过渡项目)
- 第四阶段:[vue2-native](https://github.com/uncleLian/vue2-native) —— 今日头条( native端,难度:★★★★☆ 进阶项目,可跳过)
- 第五阶段:[vue-blog](https://github.com/uncleLian/vue-blog) —— 后台管理集成解决方案( pc端管理后台,难度:★★★★★ 进阶项目,推荐 ⭐️⭐️⭐️️⭐️⭐️️️️)

##### 注:此系列只关注前端项目的实现,后端等知识不是此系列的范围,但会告知一二。

## 注意

1、本地运行项目请把项目里的mint-ui.common.js文件替换掉 node_modules/minit-ui/lib/mint-ui.common.js文件。主要优化下拉动作和左右滑动的体验。详细查看文章 [饿了么mint-ui库loadmore组件的下拉问题](http://liansixin.win/2017/08/01/mint-ui/)

2、项目演示是运行在浏览器的,项目的某些代码是不能生效的,这些是用于app的,如:获取设备uuid、微信客户端登录等。

3、本地浏览器运行项目出现灰屏,可能是打开了/app.vue文件beforeRouteEnter钩子的代码。这里主要是用于app需要保证加载完cordova插件才能进入项目。浏览器打开这段代码是无法进入项目的。

4、关于后台文章管理,操作的都是真实后台数据,为了大家都能查看一个很真的数据信息,请勿随意修改原有数据,可以新建去操作查看效果。

5、下载App安装包请使用手机浏览器下载。

## 项目演示

[项目演示请戳这里](http://native.liansixin.win)(请使用手机模式预览)

[安装包请戳这里](http://m.toutiaojk.com/guide.html)(目前只支持 Android)

## 功能

#### 业务功能
- [x] 启动广告页
- [x] 阅读
- [x] 搜索、热点文章
- [x] 动态增减栏目
- [x] 文章标签
- [x] 微信客户端登录 / 注销
- [x] 文章的评论、点赞、收藏、微信客户端分享
- [x] 阅读历史、评论历史
- [x] 文章后台管理(发表、修改、删除、撤回、预览等功能)
- [x] 意见反馈
- [x] ...

#### 其他功能
- [x] 下拉上滑查看更多内容
- [x] 左右滑动切换栏目列表
- [x] 点击头部回到顶部(指令)
- [x] 右滑返回上一页(指令)
- [x] 视频播放的加载、重播指示以及悬浮等
- [x] 热更新、版本更新
- [x] GPS定位
- [x] ...

## 部分截图

- 首页、详情页

- 频道页、用户页

- 后台文章管理页、广告页

## 目录结构

``` bash
├── build // 构建相关
├── config // 配置相关
├── src // 项目代码
│ ├── assets // 样式、图标等静态资源
│ ├── components // 全局公用组件
│ │ ├── banner.vue // banner组件
│ │ ├── commentItem.vue // 评论Item组件
│ │ ├── error.vue // 错误提示组件
│ │ ├── info.vue // listItem的列表信息组件
│ │ ├── listItem.vue // 文章List组件
│ │ ├── loading.vue // 加载提示组件
│ │ ├── myHeader.vue // 头部组件
│ │ ├── popuMenu.vue // 模态框组件
│ │ ├── publishItem.vue // 后台文章列表组件
│ │ ├── tool.vue // 评论工具栏组件
│ ├── config // 全局公用方法
│ │ ├── autoTextarea.js // textarea自动增加高度方法
│ │ ├── cache.js // 缓存方法
│ │ ├── cordova.js // cordova插件方法
│ │ ├── directive.js // 指令方法
│ │ ├── fetch.js // 请求方法
│ ├── page
│ │ ├── detail
│ │ | ├── children
│ │ | | ├── comment.vue // 评论页
│ │ | | ├── reply.vue // 回复页
│ │ | ├── components
│ │ | | ├── article.vue // 文章组件
│ │ | | ├── collect.vue // 收藏组件
│ │ | | ├── like.vue // 点赞组件
│ │ | | ├── recommend.vue // 推荐组件
│ │ | | ├── share.vue // 分享组件
│ │ | | ├── tags.vue // 标签组件
│ │ | ├── detail.vue // 详情页
│ │ ├── index
│ │ | ├── collect
│ │ | | ├── collect.vue // 收藏页
│ │ | ├── home
│ │ | | ├── children
│ │ | | | ├── channel.vue // 栏目页
│ │ | | ├── components
│ │ | | | ├── homeHeader.vue // 首页头部组件
│ │ | | | ├── pullContainer.vue // 下拉容器组件
│ │ | | | ├── swiperContainer.vue // 滑动容器组件
│ │ | | ├── home.vue // 主页
│ │ | ├── user
│ │ | | ├── children
│ │ | | | ├── health
│ │ | | | | ├── health.vue // 文章管理页
│ │ | | | | ├── preview.vue // 文章预览页
│ │ | | | | ├── publish.vue // 文章编辑页
│ │ | | | ├── feedBack.vue // 用户反馈页
│ │ | | | ├── myComment.vue // 我的评论页
│ │ | | | ├── myHistory.vue // 我的历史页
│ │ | | | ├── QRcode.vue // 应用分享页
│ │ | | ├── user.vue // 用户页
│ │ | ├── video
│ │ | | ├── video.vue // 视频页
│ │ | ├── index.vue // 首页
│ │ | ├── navBar.vue // 底部导航组件
│ │ ├── login
│ │ | ├── login.vue // 登录页
│ │ ├── search
│ │ | ├── search.vue // 搜索页
│ ├── router
│ │ ├── index.js // 路由配置
│ ├── store
│ │ ├── collect // 收藏页store
│ │ ├── detail // 详情页store
│ │ ├── health // 文章管理store
│ │ ├── index // 首页store
│ │ ├── login // 登录store
│ │ ├── search // 搜索页store
│ │ ├── user // 用户store
│ │ ├── video // 视频页store
│ │ ├── index.js // 全局store
│ ├── App.vue // 页面入口
│ └── main.js // 程序入口
├── static // 空文件夹,只作为github保留
├── .babelrc // babel-loader 配置
├── .eslintrc.js // eslint 配置项
├── .gitignore // git 忽略项
├── index.html // 入口html文件
└── package.json // package.json
```

## 安装运行

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8084
npm run dev

# build for production with minification
npm run build(File in the docs folder)
```

## 捐赠
如果你觉得这个项目帮助到了你,你可以请我喝一杯果汁表示支持🍹

## 交流

欢迎热爱学习、忠于分享的朋友一起来交流
- QQ:771674109
- Vue交流群:338241465 —— 广州-小鑫

## License

[MIT](https://github.com/uncleLian/vue2-native/blob/master/LICENSE)

Copyright (c) 2017-present,uncleLian