实例介绍
最早 项目需求:建立一个平台能够提供给玩家交流的地方。 功能需求 一个聚合页面,提供当前最新的帖子 个人模块:显示头像,个人昵称,个人已经加入的主题 热门讨论:提供热门帖子 主题推荐 主题页面:显示当前主题下的帖子,可提供精华攻略等小标签的分类可以选择时间热门进行排序 帖子页面:显示当前帖子的标签如官方放置顶等。同时分权限等级可以进行放置顶删除等操作 评论:可以对当前帖子进行评论,也可以对某条帖子进行评论,也可以回复其他评论者 帖子发表:可以选择帖子类型标签等 技术栈 Vue + Js + Sass + Css3 + Vue-resouse等 原始码 项目地址 可以直接访问在线地址注册后登录即
【实例截图】
【核心代码】
16359647360474674482.zip
└── social-master
├── build
│ ├── build.js
│ ├── check-versions.js
│ ├── dev-client.js
│ ├── dev-server.js
│ ├── utils.js
│ ├── vue-loader.conf.js
│ ├── webpack.base.conf.js
│ ├── webpack.dev.conf.js
│ ├── webpack.prod.conf.js
│ └── webpack.test.conf.js
├── config
│ ├── dev.env.js
│ ├── index.js
│ ├── prod.env.js
│ └── test.env.js
├── index.html
├── package.json
├── README.md
├── src
│ ├── App.vue
│ ├── assets
│ │ └── logo.png
│ ├── components
│ │ ├── DetailLi.vue
│ │ ├── Editor.vue
│ │ ├── EnlargePicture.vue
│ │ ├── IndexList.vue
│ │ ├── LoginPop.vue
│ │ ├── pagination.vue
│ │ ├── PeoInfo.vue
│ │ ├── rulePop.vue
│ │ ├── SocialIndexAdmin.vue
│ │ ├── SocialIndexDetail.vue
│ │ ├── SocialIndexHeader.vue
│ │ ├── SocialIndexHot.vue
│ │ ├── SocialIndexList.vue
│ │ └── SocialIndexRecommend.vue
│ ├── images
│ │ ├── 1.jpg
│ │ ├── 5.png
│ │ ├── bg.png
│ │ ├── btn.png
│ │ ├── close.png
│ │ ├── dpic.png
│ │ ├── filter2.png
│ │ ├── filter.png
│ │ ├── hd.jpg
│ │ ├── home_hover.png
│ │ ├── home.png
│ │ ├── icon10.png
│ │ ├── icon11_hover.png
│ │ ├── icon11.png
│ │ ├── icon12_hover.png
│ │ ├── icon12.png
│ │ ├── icon13.png
│ │ ├── icon14.png
│ │ ├── icon15.png
│ │ ├── icon16.png
│ │ ├── icon17.png
│ │ ├── icon18_hover.png
│ │ ├── icon18.png
│ │ ├── icon19.png
│ │ ├── icon1.png
│ │ ├── icon2.png
│ │ ├── icon3.png
│ │ ├── icon4.png
│ │ ├── icon5.png
│ │ ├── icon6_hover.png
│ │ ├── icon6.png
│ │ ├── icon7.png
│ │ ├── icon8.png
│ │ ├── icon9.png
│ │ ├── icon-left.png
│ │ ├── icon-max.png
│ │ ├── icon-mini.png
│ │ ├── icon.png
│ │ ├── icon-right.png
│ │ ├── i.png
│ │ ├── lz.png
│ │ ├── next.png
│ │ ├── peobg.png
│ │ ├── postbtn1.png
│ │ ├── postbtn2.png
│ │ ├── prev.png
│ │ ├── rm.png
│ │ ├── rss.png
│ │ ├── rulepopbtn.png
│ │ ├── sc_hover.png
│ │ ├── sc.png
│ │ ├── sq_hover.png
│ │ ├── sq.png
│ │ ├── thread_list_z_eca48fe.png
│ │ ├── thumbnext.cur
│ │ ├── thumbprev.cur
│ │ ├── top_hover.png
│ │ ├── top.png
│ │ └── ts.png
│ ├── Index.vue
│ ├── main.js
│ ├── router
│ │ └── index.js
│ ├── sass
│ │ ├── config.rb
│ │ ├── sass
│ │ │ ├── ie.scss
│ │ │ ├── IndexList.scss
│ │ │ ├── LoginPop.scss
│ │ │ ├── print.scss
│ │ │ ├── ScoialIndexRecommend.scss
│ │ │ ├── screen.scss
│ │ │ ├── SocialDetail.scss
│ │ │ ├── SocialIndexAdmin.scss
│ │ │ ├── SocialIndexDetail.scss
│ │ │ ├── SocialIndexHeader.scss
│ │ │ ├── SocialIndexHot.scss
│ │ │ ├── SocialIndexList.scss
│ │ │ ├── SocialPeoInfo.scss
│ │ │ ├── SocialPop.scss
│ │ │ ├── SocialPost.scss
│ │ │ └── SocialPublic.scss
│ │ └── stylesheets
│ │ ├── ie.css
│ │ ├── IndexList.css
│ │ ├── LoginPop.css
│ │ ├── print.css
│ │ ├── ScoialIndexRecommend.css
│ │ ├── screen.css
│ │ ├── SocialDetail.css
│ │ ├── SocialIndexAdmin.css
│ │ ├── SocialIndexDetail.css
│ │ ├── SocialIndexHeader.css
│ │ ├── SocialIndexHeader.css.map
│ │ ├── SocialIndexHot.css
│ │ ├── SocialIndexList.css
│ │ ├── SocialPeoInfo.css
│ │ ├── SocialPop.css
│ │ ├── SocialPost.css
│ │ └── SocialPublic.css
│ ├── SocialDetail.vue
│ ├── SocialIndex.vue
│ └── SocialPost.vue
├── static
├── test
│ ├── e2e
│ │ ├── custom-assertions
│ │ │ └── elementCount.js
│ │ ├── nightwatch.conf.js
│ │ ├── runner.js
│ │ └── specs
│ │ └── test.js
│ └── unit
│ ├── index.js
│ ├── karma.conf.js
│ └── specs
│ └── Hello.spec.js
└── webpack.config.js
18 directories, 140 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论