vue+elementui完美实现博客、网站、个人网站,高仿“张凯博客”实现排版

news/2024/5/20 13:20:56/文章来源:https://yxsdgz.blog.csdn.net/article/details/120222157

1.本项目Demo实现灵感来源 张凯博客,采用vue+elementui实现编码,最终效果图:

完整源码下载

2.首先创建vue项目,采用开发工具Hbuilder。vue创建项目教程可参考:https://www.cnblogs.com/pyjblog/articles/14349370.html

3.创建项目后安装elementui,按照官方教程即可

   创建好的项目目录结构大概这样子:

 4.项目头部和底部在整个项目中是共用的状态,使用vue的router-view配合router路由设置相同的布局component达到相同的框架层重复利用;

        首页,即是搭建底部、头部和中间内容显示框架盒子,代码:

<template><div style="width: 100%;height: 100%;overflow: auto;"><top></top><router-view></router-view><foot></foot></div>
</template>

     router路由设置相同的布局component(即定义Layout,就是上面的首页盒子):

import Vue from 'vue'
import Router from 'vue-router'
import Layout from '@/page/index/index'Vue.use(Router)export default new Router({routes: [{path: '/home',component: Layout,redirect: '/home/index',children: [{path: 'index',name: '主页',component: () =>import( /* webpackChunkName: "views" */ '@/views/home/index')}]},{path: '/',name: '主页',redirect: '/home'},{path: '/test',component: Layout,redirect: '/test/index',children: [{path: 'index',name: '内容测试页',component: () =>import( /* webpackChunkName: "views" */ '@/views/test/index')}]},]
})

这样就可以搭建好框架了,经典的官网或后台管理系统框架模型思想都是这种共用思想。

5.中间显示内容就是单独的每一个功能模块页面了,设计完成页面,定义路由指向页面,访问就会把页面展示<router-view></router-view>对应的位置。

6.首页内容源码奉上

<template><div style="width: 100%;background-color: #eee;font-size: 14px;padding: 20px 0;"><div style="display: flex;width: 70%;margin: 0 auto;background-color: #FFFFFF;border-radius: 5px;"><div style="flex: 1;border-right: 1px solid #cccccc;"><div style="height: 170px;display: flex;margin: 10px 20px;border-bottom: 1px solid #cccccc;" class="item"><div style="margin: 20px 0;width: 200px;"><el-image src="https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg" style="height: 130px;width: 200px;object-fit: cover;cursor: pointer;"></el-image></div><div style="margin: 30px 20px;"><div style="font-size: 18px;color: #000000;cursor: pointer;">感谢访问张凯博客!一切从简! </div><div style="display: flex;color: #cccccc;line-height: 40px;"><span class="icon-active"><i class="el-icon-alarm-clock el-icon--right"></i>2年前 (2019-05-20)</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-view el-icon--right"></i>17690人围观</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-chat-round el-icon--right"></i>47次吐槽</span></div><div style="overflow: hidden;text-overflow: ellipsis;line-height: 20px;color: gray;">感谢您能访问本个人博客,前世的五百次回眸,换来今生你我的不期而遇。 梦想清澈高远,究竟哪里才是诗和远方的田野?...</div></div></div><div style="height: 170px;display: flex;margin: 10px 20px;border-bottom: 1px solid #cccccc;" class="item"><div style="margin: 20px 0;width: 200px;"><el-image src="https://fuss10.elemecdn.com/1/34/19aa98b1fcb2781c4fba33d850549jpeg.jpeg" style="height: 130px;width: 200px;object-fit: cover;cursor: pointer;"></el-image></div><div style="margin: 30px 20px;"><div style="font-size: 18px;color: #000000;cursor: pointer;">2021年6月份自我小结  </div><div style="display: flex;color: #cccccc;line-height: 40px;"><span class="icon-active"><i class="el-icon-alarm-clock el-icon--right"></i>2年前 (2019-05-20)</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-view el-icon--right"></i>17690人围观</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-chat-round el-icon--right"></i>47次吐槽</span></div><div style="overflow: hidden;text-overflow: ellipsis;line-height: 20px;color: gray;">一个小时前我还觉得写月底小结是很困难的事情,现在写六月月底小结却觉得很轻松了。原本以为整个人在整个月都沉迷在工作中,细细回想起来,我是经历了很多的事情。六月...</div></div></div><div style="height: 170px;display: flex;margin: 10px 20px;border-bottom: 1px solid #cccccc;" class="item"><div style="margin: 20px 0;width: 200px;"><el-image src="https://fuss10.elemecdn.com/d/e6/c4d93a3805b3ce3f323f7974e6f78jpeg.jpeg" style="height: 130px;width: 200px;object-fit: cover;cursor: pointer;"></el-image></div><div style="margin: 30px 20px;"><div style="font-size: 18px;color: #000000;cursor: pointer;">2021年5月份自我小结  </div><div style="display: flex;color: #cccccc;line-height: 40px;"><span class="icon-active"><i class="el-icon-alarm-clock el-icon--right"></i>2年前 (2019-05-20)</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-view el-icon--right"></i>17690人围观</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-chat-round el-icon--right"></i>47次吐槽</span></div><div style="overflow: hidden;text-overflow: ellipsis;line-height: 20px;color: gray;">一个小时前我还觉得写月底小结是很困难的事情,现在写六月月底小结却觉得很轻松了。原本以为整个人在整个月都沉迷在工作中,细细回想起来,我是经历了很多的事情。六月...</div></div></div><div style="height: 170px;display: flex;margin: 10px 20px;border-bottom: 1px solid #cccccc;" class="item"><div style="margin: 20px 0;width: 200px;"><el-image src="https://fuss10.elemecdn.com/d/e6/c4d93a3805b3ce3f323f7974e6f78jpeg.jpeg" style="height: 130px;width: 200px;object-fit: cover;cursor: pointer;"></el-image></div><div style="margin: 30px 20px;"><div style="font-size: 18px;color: #000000;cursor: pointer;">2021年4月份自我小结  </div><div style="display: flex;color: #cccccc;line-height: 40px;"><span class="icon-active"><i class="el-icon-alarm-clock el-icon--right"></i>2年前 (2019-05-20)</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-view el-icon--right"></i>17690人围观</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-chat-round el-icon--right"></i>47次吐槽</span></div><div style="overflow: hidden;text-overflow: ellipsis;line-height: 20px;color: gray;">一个小时前我还觉得写月底小结是很困难的事情,现在写六月月底小结却觉得很轻松了。原本以为整个人在整个月都沉迷在工作中,细细回想起来,我是经历了很多的事情。六月...</div></div></div><div v-for="i in 4" style="height: 170px;display: flex;margin: 10px 20px;border-bottom: 1px solid #cccccc;" class="item"><div style="margin: 20px 0;width: 200px;"><el-image src="https://fuss10.elemecdn.com/3/28/bbf893f792f03a54408b3b7a7ebf0jpeg.jpeg" style="height: 130px;width: 200px;object-fit: cover;cursor: pointer;"></el-image></div><div style="margin: 30px 20px;"><div style="font-size: 18px;color: #000000;cursor: pointer;">2021年3月份自我小结  </div><div style="display: flex;color: #cccccc;line-height: 40px;"><span class="icon-active"><i class="el-icon-alarm-clock el-icon--right"></i>2年前 (2019-05-20)</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-view el-icon--right"></i>17690人围观</span><span class="icon-active" icon="el-icon-link" style="margin-left: 10px;"><i class="el-icon-chat-round el-icon--right"></i>47次吐槽</span></div><div style="overflow: hidden;text-overflow: ellipsis;line-height: 20px;color: gray;">一个小时前我还觉得写月底小结是很困难的事情,现在写六月月底小结却觉得很轻松了。原本以为整个人在整个月都沉迷在工作中,细细回想起来,我是经历了很多的事情。六月...</div></div></div><div style="margin: 30px 0;text-align: center;"><el-paginationbackground@size-change="handleSizeChange"@current-change="handleCurrentChange":current-page="currentPage":page-sizes="[10, 100, 200, 300, 400]":page-size="100"layout="total, sizes, prev, pager, next, jumper":total="400"></el-pagination></div></div><div style="width: 365px;"><div style="height: 420px;margin: 30px 20px;border: 1px solid #cccccc;border-radius: 5PX;"><div><el-image src="http://www.aswait.com/zb_users/theme/Lucky/style/image/profile-bg.jpg" style="height: 140px;object-fit: cover;cursor: pointer;"></el-image></div><div style="text-align: center;margin-top: -30px;" class="face-pic"><el-image src="http://www.aswait.com/zb_users/theme/Lucky/style/image/avatar.png" style="width: 100px;height: 100px;object-fit: cover;border-radius: 50%;"></el-image></div><div style="text-align: center;color: #626262;"><div style="font-size: 18px;line-height: 40px;">张凯</div><div>世上事本无难易,为之则易!</div><el-button type="primary" icon="el-icon-thumb" style="width: 220px;margin: 10px 0;">联系我</el-button></div><div style="display: flex;text-align: center;margin-top: 20px;"><div style="width: 33.3%;"><div style="line-height: 30px;font-size: 18px;">2702</div><div style="font-size: 12px;">文章</div></div><div style="width: 33.3%;"><div style="line-height: 30px;font-size: 18px;">2702</div><div style="font-size: 12px;">文章</div></div><div style="flex: 1;"><div style="line-height: 30px;font-size: 18px;">2702</div><div style="font-size: 12px;">文章</div></div></div></div><div style="height: 340px;margin: 30px 20px;border: 1px solid #cccccc;border-radius: 5PX;"><el-calendar v-model="value"></el-calendar></div><div style="margin: 30px 20px;"><div style="background-color: #EEEEEE;height: 40px;display: flex;"><div style="border-right: 1px solid #cfcfcf;text-align: center;height: 40px;width: 50px;line-height: 40px;"><i class="el-icon-menu el-icon--right"></i></div><div style="font-size: 16px;line-height: 40px;font-weight: 600;margin-left: 10px;">Tab</div></div><div style="margin: 5px 20px;"><el-tabs v-model="activeName" @tab-click="handleClick" ><el-tab-pane label="最近更新" name="first"><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">1</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">2021年6月份自我小结</div></div><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">2</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">2021年5月份自我小结</div></div></el-tab-pane><el-tab-pane label="热门文章" name="second"><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">1</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">个人亲身感受:舌尖上的中国</div></div><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">2</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">个人亲身感受:舌尖上的中国</div></div></el-tab-pane><el-tab-pane label="站长推荐" name="third"><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">1</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">还能读多少书?</div></div><div style="padding: 5px 0;display: flex;border-bottom: 1px dashed #cccccc;overflow: hidden;text-overflow: ellipsis;"><div style="background-color: #707070;color: #FFFFFF;width: 20px;height: 20px;border-radius: 50%;text-align: center;line-height: 20px;">2</div><div style="color: #707070;line-height: 20px;font-size: 12px;margin-left: 10px;cursor: pointer;">还能读多少书?</div></div></el-tab-pane></el-tabs></div></div><div style="height: 340px;margin: 30px 20px;"><div style="background-color: #EEEEEE;height: 40px;display: flex;"><div style="border-right: 1px solid #cfcfcf;text-align: center;height: 40px;width: 50px;line-height: 40px;"><i class="el-icon-chat-dot-round el-icon--right"></i></div><div style="font-size: 16px;line-height: 40px;font-weight: 600;margin-left: 10px;">最新留言</div></div><div style="margin: 5px 20px;"><div style="padding: 10px 0;border-bottom: 1px dashed #cccccc;"><div style="display: flex;line-height: 30px;"><div style="width: 30px;height: 30px;"><el-image src="http://www.aswait.com/zb_users/avatar/0.png" style="height: 30px;width: 30px;object-fit: cover;border-radius: 50%;"></el-image></div><div style="margin-left: 10px;color: #5e5e5e;">亚马逊品牌授权</div><div style="flex: 1;text-align: right;color: gray;">08月19日</div></div><div style="background-color: #eee;margin: 5px 0 5px 0;padding: 5px 5px;color: #5e5e5e;">非常喜欢这个文章!</div></div><div style="padding: 10px 0;border-bottom: 1px dashed #cccccc;"><div style="display: flex;line-height: 30px;"><div style="width: 30px;height: 30px;"><el-image src="https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg" style="height: 30px;width: 30px;object-fit: cover;border-radius: 50%;"></el-image></div><div style="margin-left: 10px;color: #5e5e5e;">头条新闻</div><div style="flex: 1;text-align: right;color: gray;">08月19日</div></div><div style="background-color: #eee;margin: 5px 0 5px 0;padding: 5px 5px;color: #5e5e5e;">文章不错关注一下</div></div><div style="padding: 10px 0;border-bottom: 1px dashed #cccccc;"><div style="display: flex;line-height: 30px;"><div style="width: 30px;height: 30px;"><el-image src="https://fuss10.elemecdn.com/a/3f/3302e58f9a181d2509f3dc0fa68b0jpeg.jpeg" style="height: 30px;width: 30px;object-fit: cover;border-radius: 50%;"></el-image></div><div style="margin-left: 10px;color: #5e5e5e;">亚马逊品牌授权</div><div style="flex: 1;text-align: right;color: gray;">08月19日</div></div><div style="background-color: #eee;margin: 5px 0 5px 0;padding: 5px 5px;color: #5e5e5e;">支持老大~~~~~~~~</div></div></div></div></div></div></div></template><script>export default {data() {return {value: new Date(),currentPage: 4,activeName: 'second',};},mounted() {},methods: {handleSizeChange(val) {console.log(`每页 ${val} 条`);},handleCurrentChange(val) {console.log(`当前页: ${val}`);},handleClick(tab, event) {console.log(tab, event);},}};
</script><style>.icon-active:hover{color: #585858;}.item img {width: 100%;height: auto;transform: scale(1);transition: transform 1s ease 0s;}.item:hover img{transform: scale(1.1);}.face-pic:hover img{transform:rotate(360deg);-ms-transform:rotate(360deg); /* Internet Explorer */-moz-transform:rotate(360deg); /* Firefox */-webkit-transform:rotate(360deg); /* Safari 和 Chrome */-o-transform:rotate(360deg); /* Opera */transition: transform 0.6s ease 0s;}.el-calendar-day{height: 30px!important;text-align: center!important;}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.luyixian.cn/news_show_754213.aspx

如若内容造成侵权/违法违规/事实不符,请联系dt猫网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue+element简单实现商城网站首页,模仿小米电商商城(一)

1.本案例灵感来源于小米官网 https://www.mi.com/ 项目演示地址&#xff1a;可私聊作者获取&#xff08;演示地址不定时变化&#xff09; 源码 官方截图 产品效果图&#xff1a; 二级菜单、产品详情 购物车 2.首先创建vue项目&#xff0c;采用开发工具Hbuilder。vue创建项目教程…

vue+elementui实现非常好看的博客、网站首页,网站模板

1.效果图&#xff0c;设计上美观大方 源码 2.首先创建vue项目&#xff0c;采用开发工具Hbuilder。vue创建项目教程可参考&#xff1a;&#xff08;一&#xff09;Vue——如何创建一个Vue项目(完整步骤) - 㭌&#xff08;mou&#xff09;七 - 博客园 3.创建项目后安装elementui…

vue+element简单实现商城网站首页,模仿电商商城

1.安装启动vue项目可参考 vueelement简单实现商城网站首页&#xff0c;模仿小米电商商城https://blog.csdn.net/lucky_fang/article/details/121544242 本项目源码下载https://download.csdn.net/download/lucky_fang/85161752 2.产品效果图 3.项目结构图 4.src/page/top/ind…

衣服、商品、商城网站模板首页,仿U袋网,vue+elementui简洁实现

1.本案例灵感来源于网络 项目演示地址&#xff1a;可私聊作者获取&#xff08;演示地址不定时变化&#xff09; 仿照来源&#xff1a;网络案例 以下源码是第一版源码&#xff0c;最新源码请私聊作者获取&#xff0c;或通过博客后面微信名片添加作者 源码https://download.c…

生鲜水果商品商城静态网站,vue+elementui简单实现

1.安装启动vue项目 &#xff08;一&#xff09;Vue——如何创建一个Vue项目(完整步骤) - 㭌&#xff08;mou&#xff09;七 - 博客园 2.elementui官网 Element - The worlds most popular Vue UI framework 3.如果你下载的是本项目源码&#xff0c;则步骤一中可以不用执行&a…

html+css响应式旅游主题网站模板,旅游网站,企业文化新闻类网站,简单web假期课程作业

1.灵感来源预览 社区、企业、公益共享交流平台_优享人app-优享时代官网 2.demo效果图&#xff0c;同时兼容手机端访问&#xff0c;所有菜单都已完善功能&#xff0c;即拿即用&#xff0c;很简单 源码下载https://download.csdn.net/download/lucky_fang/85320989 手机端访问…

web静态网站,css+html旅游景点网站,web假期作业

1.项目共分为8个网页&#xff1a; 首页、历史文化、景区概况、推荐游玩、美食一览、文化活动、地理位置、联系我们 纯csshtml实现的静态网页&#xff0c;很适合新手学习和使用&#xff0c; 源码下载 如下图&#xff0c;首页&#xff1a; 含背景音乐循环播放&#xff0c;自…

vue+elementui+springboot前后端分离实现学校帖子网站,模拟“淘柳职”学校大作业

一.技术实现 项目演示地址&#xff1a;可私聊作者获取&#xff08;演示地址不定时变化&#xff09; 前端 vueelementui&#xff1b; 后端&#xff1a; SpringBootOAuth2Spring SecurityRedismybatis-plusmysqlswagger 二.前言 淘柳职网站&#xff1a;淘柳职 本项目完全是…

程序猿最应去的网站有哪些?

2019独角兽企业重金招聘Python工程师标准>>> 要想成为优秀的程序猿&#xff0c;不仅要有一定天分&#xff0c;常与大神交流&#xff0c;自己多加练习才是正确的方法。下面是一些Quora用户推荐的国外网站&#xff0c;与广大程序猿或者希望学习编程的朋友们分享&#…

通过建立自己的AuthorizeAttribute实现网站的权限管理

2019独角兽企业重金招聘Python工程师标准>>> 当我们用.net MVC构建网站平台的时候&#xff0c;势必会对网站平台的安全性和用户的使用权限进行一个统一的构建&#xff0c;首先在.net MVC 架构中&#xff0c;系统已经将权限管理分为三个层面来进行管理&#xff0c;第…

delphi RAD Studio新版本及路线图 及官方网站 官方 版本发布时间

delphi RAD Studio Berlin 10.1 主要是FireMonkey 移动开发的改动&#xff0c;VCL确实没有多大变化。 http://docwiki.embarcadero.com/RADStudio/Berlin/en/Main_Page http://docwiki.embarcadero.com/RADStudio/Berlin/en/Whats_New EMB 官网地址资源 Bug fix list for RAD …

网站调查方法步骤.

1.查看对方网站pr值2.查看对方在搜索引擎快照的新鲜度3.到http://whois.domaintolls.com查看对方域名注册信息4.到http://www.archive.org查看对方的收录历史5.查看对方在搜索引擎的收录数6.查看对方的外部链接数7.查看对方是否被雅虎目录&#xff0c;开放目录dmoz.org,好123收…

大型网站架构演变

初级篇&#xff1a;&#xff08;单机模式&#xff09;假设配置&#xff1a;&#xff08;Dual core 2.0GHz,4GB ram,SSD&#xff09;基础框架&#xff1a;apache(PHP) Mysql / IIS MSSQL&#xff08;最基础框架&#xff0c;处理一般访问请求&#xff09;进阶1&#xff1a;替换…

在线流程图与图表制作网站

现在很多功能网站&#xff0c;最常见的就是图片处理类&#xff0c;不如切图&#xff0c;图片转换&#xff0c;添加效果等。本文收集了国外最常用的流程图与图表制作网站&#xff0c;这些网站功能强大&#xff0c;如果你正好需要制作图表或流程图&#xff0c;而对于软件又不熟悉…

linux条件编译预编译,C语言条件编译_Linux编程_Linux公社-Linux系统门户网站

C语言中的预编译包含三种&#xff1a;1.宏定义2.文件包含3.条件编译&#xff0c;条件编译指的是满足一定条件下才进行编译&#xff0c;它有几种形式&#xff1a;(1)#ifdef标识符//程序#else//程序#endif它的意义为如果定义了标识符&#xff0c;则执行程序段1&#xff0c;否则执…

inputstream怎么写给前端_写给大家看的网站制作教程01了解网站制作流程

作者 | 杨小二来源 | web前端开发(ID&#xff1a;webqdkf)前言这些年里&#xff0c;被读者和周围朋友以及一些认识的人&#xff0c;问的最多的问题&#xff0c;就是&#xff0c;怎么做一个自己的网站&#xff1f;这个难不难学呀&#xff1f;其实&#xff0c;我知道&#xff0c;…

Web层框架对网站中所有异常的统一处理

一个网站的异常信息作为专业的人士&#xff0c;是不会轻易暴露给用户的&#xff0c;因为那样狠不安全&#xff0c;显得你漏是一回事&#xff0c;只要还是考虑到网站的数据安全问题&#xff0c;下面给大家分享一下一些常见的web层框架是如何处理统一的异常。 之前都是在Struts2…

修改网站自动关闭时间timeout_centos7修改网卡名称为ethX

测试平台VMWARE WORKSTATION 15 虚拟机系统Centos7centos7网卡的随机名给自动化运维带来混乱&#xff0c;那么我们把网卡名重新配置为ethX一、在安装系统的时候配置&#xff1a;修改内核选项&#xff1a;net.ifnames0 biosdevname0二、已安装系统修改方法像我的虚拟机&#xff…

旧版ios软件网站_ios旧版软件抓包

大家好&#xff0c;这里是小虾虾科技屋——————————————————————有时候&#xff0c;某个软件随着更新&#xff0c;会带走许多历史的痕迹&#xff0c;于是有的人就想尝试复原那些软件&#xff0c;所以产生了今天为大家分享的工具。iTunes旧版软件抓包神器&a…

seo按天扣费系统源码_企业SEO外包,这样选靠谱!

原标题&#xff1a;企业SEO外包&#xff0c;这样选靠谱&#xff01;一般在选择企业SEO外包的时候&#xff0c;需要注意什么点?一、清晰企业网站SEO优化定位清晰企业网站SEO优化定位对于企业的的目标定位&#xff0c;大家说法不一&#xff0c;但是总体上作为企业的负责任你需要…