夺命雷公狗—玩转SEO---29---DEDE快排之高效率批量高质伪原创文章

高速

批量

高质量

伪原创

站点:茂名旅游网

内容来源:

1:竞争对手

抄袭,没错,但是是有技巧的借鉴,比如我们是旅游的,那么我们就不能去找旅游的同行来进行抄袭,那么我们可以借鉴其他游学网站之类的地方来进行抄袭,然后替换我们的关键词即可,切记莫采集同行的,同行的很有可能都不知道被竞争对手抄袭了多少次了,所以做和没做差距都不会很大的,所以我们是需要   跨行业  的玩~~!

打个比方说可能游学类的文章在游学领域被无数人改了,但是跨行来到旅游,这其实是还有搞头的~~!

比如:

 

就像上面的游学好处之类的,我们可以动动脑子,转变一下思维,比如改成:为什么要去浪漫海岸旅行,下面有您想要的答案,我们开搞:

首先我们的标题已经有了:为什么要去浪漫海岸旅行,下面有您想要的答案

然后我们去到目标站点将他的内容都拉到我们的  网络编辑超级工具   上面去进行排版,然后都干到我们的网站后台发布信息区去,如下所示:

图片然后度娘一些下来进行替换即可。

然后我们进行批量词替换,由于我们是采用了游学的文章,那么我们只需要使用他的批量修改工具改成旅游即可:

 

 

然后替换,如下所示:

 

然后简单的读一下,有一点不通顺其实没事的,由于批量操作这是无法进行改变的,然后我们将别人的品牌词改换成我们自己的品牌词和简单的“偷梁换柱”一下改成自己的即可。

这样即可快速完成一遍高质量文章了~~!

 

2.其实还是可以通过搜索引擎进行编辑的,方法如上大体一致,不过是需要多篇文章内容编辑而成一章而已~~!

转载于:https://www.cnblogs.com/leigood/p/11204808.html

好的,生成校历可以有不同的方式,以下是一种基本的实现方式: 1. 在 `pages` 目录下新建 `calendar` 文件夹,用于存放校历相关页面和组件。 2. 在 `calendar` 文件夹中新建 `calendar.vue` 文件,作为校历页面的入口文件。在该页面中,可以使用 `uni-calendar` 组件来显示校历。 ```html <template> <div class="calendar-container"> <uni-calendar :template="calendarTemplate"></uni-calendar> </div> </template> <script> import UniCalendar from '@/components/uni-calendar/uni-calendar.vue'; export default { components: { UniCalendar }, data() { return { calendarTemplate: 'schoolCalendar' } } } </script> ``` 在上述代码中,通过 `uni-calendar` 组件引入自定义日历模板,并设置为 `schoolCalendar`。 3. 在 `calendar` 文件夹中新建 `schoolCalendar.vue` 文件,作为自定义日历模板。在该模板中,可以设置校历的样式和显示内容。 ```html <template name="schoolCalendar"> <div class="school-calendar-container"> <div class="school-calendar-header"> <span class="school-calendar-title">{{title}}</span> </div> <div class="school-calendar-body"> <div class="school-calendar-weekdays"> <span v-for="weekday in weekdays">{{weekday}}</span> </div> <div class="school-calendar-days"> <div v-for="(month, index) in months" :key="index"> <div class="school-calendar-month">{{month.title}}</div> <div class="school-calendar-grid"> <div v-for="(day, index) in month.days" :key="index" class="school-calendar-day" :class="{'school-calendar-holiday': day.isHoliday}"> <div class="school-calendar-day-number">{{day.day}}</div> <div class="school-calendar-day-info">{{day.info}}</div> </div> </div> </div> </div> </div> </div> </template> <script> export default { props: { title: String, weekdays: Array, months: Array } } </script> <style lang="scss"> .school-calendar-container { background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .school-calendar-header { height: 48px; line-height: 48px; text-align: center; font-size: 18px; font-weight: 500; color: #333; border-bottom: 1px solid #eee; } .school-calendar-body { padding: 12px; } .school-calendar-weekdays { display: flex; justify-content: space-between; margin-bottom: 12px; color: #999; font-size: 14px; } .school-calendar-days { display: flex; flex-wrap: wrap; } .school-calendar-month { width: 100%; text-align: center; font-size: 18px; font-weight: 500; color: #333; margin-bottom: 12px; } .school-calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; } .school-calendar-day { position: relative; height: 60px; background-color: #f5f5f5; border-radius: 4px; overflow: hidden; } .school-calendar-holiday { background-color: #f2dede; } .school-calendar-day-number { position: absolute; top: 0; left: 0; width: 24px; height: 24px; line-height: 24px; text-align: center; font-size: 14px; font-weight: 500; color: #333; background-color: #fff; border-radius: 50%; transform: translate(8px, 8px); } .school-calendar-day-info { position: absolute; bottom: 0; left: 0; right: 0; height: 20px; line-height: 20px; text-align: center; font-size: 12px; font-weight: 500; color: #999; } </style> ``` 在上述代码中,通过 `template` 标签定义自定义日历模板的名称为 `schoolCalendar`,并设置校历的样式和显示内容。其中,`props` 中的数据为校历的标题、星期几的名称和月份的数据,可以通过外部传递进来。 4. 在 `calendar` 文件夹中新建 `schoolCalendarData.js` 文件,用于存放校历的数据。 ```js export default { title: '2022年校历', weekdays: ['日', '一', '二', '三', '四', '五', '六'], months: [ { title: '1月', days: [ {day: 1, isHoliday: true, info: '元旦'}, {day: 2, isHoliday: true}, {day: 3, isHoliday: true}, {day: 4}, {day: 5}, {day: 6}, {day: 7}, {day: 8}, {day: 9}, {day: 10}, {day: 11}, {day: 12}, {day: 13}, {day: 14}, {day: 15}, {day: 16}, {day: 17, isHoliday: true}, {day: 18}, {day: 19}, {day: 20}, {day: 21}, {day: 22}, {day: 23}, {day: 24}, {day: 25}, {day: 26}, {day: 27}, {day: 28}, {day: 29}, {day: 30}, {day: 31} ] }, // ... 其他月份的数据 ] } ``` 在上述代码中,定义了校历的标题、星期几的名称和月份的数据。 5. 在 `calendar.vue` 页面中引入 `schoolCalendarData.js` 文件,并将数据传递给自定义日历模板。 ```html <template> <div class="calendar-container"> <uni-calendar :template="calendarTemplate" :data="calendarData"></uni-calendar> </div> </template> <script> import UniCalendar from '@/components/uni-calendar/uni-calendar.vue'; import schoolCalendarData from './schoolCalendarData.js'; export default { components: { UniCalendar }, data() { return { calendarTemplate: 'schoolCalendar', calendarData: schoolCalendarData } } } </script> ``` 在上述代码中,通过 `:data` 属性将 `schoolCalendarData.js` 中的数据传递给自定义日历模板。 6. 在 `App.vue` 文件中注册 `uni-calendar` 组件和 `uni-calendar` 样式。 ```html <template> <view class="content"> <router-view></router-view> </view> </template> <script> import UniCalendar from '@/components/uni-calendar/uni-calendar.vue'; import '@/components/uni-calendar/uni-calendar.scss'; export default { components: { UniCalendar } } </script> ``` 在上述代码中,通过 `import` 引入 `uni-calendar` 组件和 `uni-calendar` 样式,并在组件中注册。 7. 运行项目,在 `calendar` 页面中即可显示校历。 以上是一种基本的校历生成方式,具体实现还需要根据项目的实际情况进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值