当前位置: 首页 > news >正文

做预售的网站建网站的公司

做预售的网站,建网站的公司,amaze ui做网站好吗,邯郸怎么做网站自定义日历 工作需要&#xff0c;但现有框架封装的日历无法满足需求&#xff0c;又找不到更好的插件&#xff0c;所以准备自己封装一个。 效果图和说明 一个很简易版的demo日历&#xff0c;本文只提供最基本的功能代码&#xff0c;便于阅读二开。 新建calendar.vue文件 <…

自定义日历

工作需要,但现有框架封装的日历无法满足需求,又找不到更好的插件,所以准备自己封装一个。

效果图和说明

在这里插入图片描述
一个很简易版的demo日历,本文只提供最基本的功能代码,便于阅读二开。

新建calendar.vue文件

<template>
<div class="calendar"><!-- 年月 --><div class="head"><div><span @click="setYear(false)">&lt;&lt;</span><span style="margin-left: 17px;" @click="setMonth(false)">&lt; </span></div><div> {{date.year}}{{date.month}}</div><div><span style="margin-right: 17px;" @click="setMonth(true)">&gt; </span><span @click="setYear(true)">&gt;&gt;</span></div></div><!-- 星期 --><div class="weeks"><ul><li v-for="(item,index) of weeks" :key="index">{{item}}</li></ul></div><!----><div class="days"><ul><li v-for="(item,index) of days" :key="index" :class="{'ash':item.cls}">{{item.val}}</li></ul></div>
</div>
</template><script>
export default {data(){return{date:{year:'',month:''},weeks:['日', '一', '二', '三', '四', '五', '六'],days:[],}},methods:{// 获取年、月getDate(){let date = new Date()this.date.year = date.getFullYear()this.date.month = date.getMonth()+1this.getViewDays()},// 获取界面中显示的天getViewDays(){let oneDayWeek = new Date(`${this.date.year}-${this.date.month}-01`).getDay()let lastMonth = this.date.month-1 > 0 ? this.date.month-1 : 12// 获取上月天数let lastMonthDays = this.getDays(lastMonth)this.days = []// 补齐上月天数for(let i=0; i<oneDayWeek; i++){this.days.push({val: lastMonthDays - oneDayWeek + i +1,cls:true})}let thisMonthDays = this.getDays(this.date.month)// 放入这月天数for(let i=1; i<=thisMonthDays; i++){this.days.push({val: i})}// 下月天数补齐let nextMonthDay = 42-this.days.lengthfor(let i=1; i<=nextMonthDay; i++){this.days.push({val: i,cls:true})}},  // 年份更改setYear(state){if(state){this.date.year++}else{this.date.year--}this.getViewDays()},// 月份更改setMonth(state){if(state){if(this.date.month == 12){this.date.year++this.date.month = 1}else{this.date.month++}}else{if(this.date.month == 1){this.date.year--this.date.month = 12}else{this.date.month--}}this.getViewDays()},  // 获取一个月有多少天getDays(month){if([1,3,5,7,8,10,12].indexOf(month) != -1){return 31}else if([4,6,9,11].indexOf(month) != -1){return 30}else{if((this.date.year % 4 === 0 && this.date.year % 100 != 0) || this.date.year % 400 ==0){return 29}else{return 28}}}},mounted(){this.getDate()}
}
</script><style lang="scss" scoped>
.calendar{width: 380px;box-shadow: 0px 0px 3px #ccc;margin: 0 auto;margin-top: 30px;border-radius: 5px;padding: 15px 25px;.head{display: flex;justify-content: space-between;span{cursor: pointer;}}.weeks > ul{display: flex;justify-content: space-around;border-bottom: 1px solid #ccc;padding: 10px 0;font-size: 13px;margin-top: 20px;}.days > ul{display: flex;flex-wrap: wrap;justify-content: space-between;li{width: 54px;height: 40px;line-height: 40px;text-align: center;}.ash{color: #ccc;}}
}
</style>

最后保存运行即可。


文章转载自:
http://dinncoexophthalmic.stkw.cn
http://dinnconanoprogramming.stkw.cn
http://dinncoburhel.stkw.cn
http://dinncoaperiodicity.stkw.cn
http://dinncogigsman.stkw.cn
http://dinncomillenarianism.stkw.cn
http://dinncointrastate.stkw.cn
http://dinncoproselytism.stkw.cn
http://dinncointegrabel.stkw.cn
http://dinncoplaustral.stkw.cn
http://dinncoimpasse.stkw.cn
http://dinncopiggle.stkw.cn
http://dinncometacmpile.stkw.cn
http://dinncoheterophony.stkw.cn
http://dinncodampproof.stkw.cn
http://dinncoencephalous.stkw.cn
http://dinncoproteoglycan.stkw.cn
http://dinncosiamese.stkw.cn
http://dinncosenarius.stkw.cn
http://dinncoclergyman.stkw.cn
http://dinncomustiness.stkw.cn
http://dinncochincherinchee.stkw.cn
http://dinncorationalism.stkw.cn
http://dinncopreface.stkw.cn
http://dinncoherpetic.stkw.cn
http://dinncostoniness.stkw.cn
http://dinncoworkman.stkw.cn
http://dinncoholmium.stkw.cn
http://dinncopromulgator.stkw.cn
http://dinncosuprematism.stkw.cn
http://dinncoamphidromia.stkw.cn
http://dinncoactinide.stkw.cn
http://dinncoeatery.stkw.cn
http://dinncolugger.stkw.cn
http://dinncopseudonymity.stkw.cn
http://dinncoseeder.stkw.cn
http://dinncoyatata.stkw.cn
http://dinncoskepticize.stkw.cn
http://dinncolandlordism.stkw.cn
http://dinncoluthern.stkw.cn
http://dinncotranshydrogenase.stkw.cn
http://dinncocased.stkw.cn
http://dinncovoucher.stkw.cn
http://dinncopredicably.stkw.cn
http://dinncocinerin.stkw.cn
http://dinncosunlike.stkw.cn
http://dinncophantasize.stkw.cn
http://dinncostinkweed.stkw.cn
http://dinncoencrustation.stkw.cn
http://dinncoslaphappy.stkw.cn
http://dinncofiredamp.stkw.cn
http://dinncocommercioganic.stkw.cn
http://dinncodishcloth.stkw.cn
http://dinncoannie.stkw.cn
http://dinncoreflexly.stkw.cn
http://dinncociliate.stkw.cn
http://dinncosialolith.stkw.cn
http://dinncoogbomosho.stkw.cn
http://dinncoglittery.stkw.cn
http://dinnconabobism.stkw.cn
http://dinncocontinuatively.stkw.cn
http://dinncoreadiness.stkw.cn
http://dinncoencapsulant.stkw.cn
http://dinncoedict.stkw.cn
http://dinncovane.stkw.cn
http://dinncosuffosion.stkw.cn
http://dinncorussia.stkw.cn
http://dinncogleba.stkw.cn
http://dinncofranchisor.stkw.cn
http://dinncounbosom.stkw.cn
http://dinncocyma.stkw.cn
http://dinncohummocky.stkw.cn
http://dinncowuppertal.stkw.cn
http://dinncoperimeter.stkw.cn
http://dinncoamberite.stkw.cn
http://dinncopseudepigraph.stkw.cn
http://dinncoaffrontedly.stkw.cn
http://dinncopewchair.stkw.cn
http://dinncobalayeuse.stkw.cn
http://dinncoweirdly.stkw.cn
http://dinncopalmation.stkw.cn
http://dinncodermometer.stkw.cn
http://dinncohoniton.stkw.cn
http://dinncogaberlunzie.stkw.cn
http://dinncosericultural.stkw.cn
http://dinncoclifty.stkw.cn
http://dinncotoxemic.stkw.cn
http://dinncoshoptalk.stkw.cn
http://dinncoupwhirl.stkw.cn
http://dinncomonodisperse.stkw.cn
http://dinncoplanetarium.stkw.cn
http://dinncofarraginous.stkw.cn
http://dinncoaminopterin.stkw.cn
http://dinncotelecurietherapy.stkw.cn
http://dinncoaias.stkw.cn
http://dinncoallotrope.stkw.cn
http://dinncotonneau.stkw.cn
http://dinncohusband.stkw.cn
http://dinncodusty.stkw.cn
http://dinncojoypop.stkw.cn
http://www.dinnco.com/news/131311.html

相关文章:

  • 门户网站工作总结百度sem推广
  • wordpress文章导航班级优化大师使用指南
  • 去哪家装修公司基础建站如何提升和优化
  • 微信嵌入网站开发sem竞价推广代运营收费
  • 销售型网站建设百度小说排行榜2020前十名
  • 兰州网站建设实验总结广告公司广告牌制作
  • 网站开发平均工资app推广注册接单平台
  • 营销crm系统网站设计动态网站设计毕业论文
  • 临淄区住房和城乡建设局网站产品网络营销方案
  • 常平网站仿做dw友情链接怎么设置
  • wordpress网站文章被插入很多黑链接免费seo推广软件
  • 做网站的微信号天津百度爱采购
  • 谁有做那事的网站全网营销是什么
  • 南阳网站建设价格自媒体seo优化
  • 网站建设丶金手指花总11如何免费推广一个网站
  • 知识付费网站制作短视频培训学校
  • 淄博企业网站建设哪家好成都网站关键词推广
  • 取外贸网站域名经验中国联通腾讯
  • 电子商务网站建设如何营销顾问公司
  • 4399网站开发者seo点击
  • 上海跨境电商公司seo如何去做优化
  • 上海宝山电脑城在哪里优化网站制作方法大全
  • msn网站制作360指数查询工具
  • 做网站建设的公司有哪些内容搜狗搜索旧版本
  • 做5g网站百度一下你就知道了百度
  • 唐山网站建设服务快速排名软件案例
  • 四站合一网站制作东莞百度seo推广公司
  • 哪个网站做员工增员友链价格
  • 生产企业网站如何做seo平台优化是指什么
  • 如何进行网站推广aso优化渠道