最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于Vue組件化的日期聯(lián)動(dòng)選擇器功能的實(shí)現(xiàn)代碼

 更新時(shí)間:2018年11月30日 16:21:30   作者:_嗚啦啦啦火車(chē)笛  
這篇文章主要介紹了基于Vue組件化的日期聯(lián)動(dòng)選擇器的實(shí)現(xiàn)代碼,非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

我們的社區(qū)前端工程用的是element組件庫(kù),后臺(tái)管理系統(tǒng)用的是iview,組件庫(kù)都很棒,但是日期、時(shí)間選擇器沒(méi)有那種“ 年份 - 月份 -天數(shù) ” 聯(lián)動(dòng)選擇的組件。雖然兩個(gè)組件庫(kù)給出的相關(guān)組件也很棒,但是有時(shí)候確實(shí)不是太好用,不太明白為什么很多組件庫(kù)都拋棄了日期聯(lián)動(dòng)選擇。因此考慮自己動(dòng)手做一個(gè)。

將時(shí)間戳轉(zhuǎn)換成日期格式

// timestamp 為時(shí)間戳
new Date(timestamp)
//獲取到時(shí)間標(biāo)磚對(duì)象,如:Sun Sep 02 2018 00:00:00 GMT+0800 (中國(guó)標(biāo)準(zhǔn)時(shí)間)
/*
 獲取年: new Date(timestamp).getFullYear()
 獲取月: new Date(timestamp).getMonth() + 1
 獲取日: new Date(timestamp).getDate() 
 獲取星期幾: new Date(timestamp).getDay() 
*/

將日期格式(yyyy-mm-dd)轉(zhuǎn)換成時(shí)間戳

//三種形式
 new Date('2018-9-2').getTime()
 new Date('2018-9-2').valueOf()
 Date.parse(new Date('2018-9-2'))

IE下的兼容問(wèn)題

注意: 上述代碼在IE10下(至少包括IE10)是沒(méi)法或得到標(biāo)準(zhǔn)時(shí)間value的,因?yàn)?2018-9-2 并不是標(biāo)準(zhǔn)的日期格式(標(biāo)準(zhǔn)的是 2018-09-02),而至少 chrome 內(nèi)核為我們做了容錯(cuò)處理(估計(jì)火狐也兼容)。因此,必須得做嚴(yán)格的日期字符串整合操作,萬(wàn)不可偷懶

基于Vue組件化的日期聯(lián)機(jī)選擇器

該日期選擇組件要達(dá)到的目的如下:

(1) 當(dāng)前填入的日期不論完整或缺省,都要向父組件傳值(缺省傳''),因?yàn)楦附M件要根據(jù)獲取的日期值做相關(guān)處理(如限制提交等操作等);
(2) 具體天數(shù)要做自適應(yīng),即大月31天、小月30天、2月平年28天、閏年29天;
(3) 如先選擇天數(shù)為31號(hào)(或30號(hào)),再選擇月數(shù),如當(dāng)前選擇月數(shù)不含已選天數(shù),則清空天數(shù);
(4) 如父組件有時(shí)間戳傳入,則要將時(shí)間顯示出來(lái)供組件修改。

實(shí)現(xiàn)代碼(使用的是基于Vue + element組件庫(kù))

 

<template>
 <div class="date-pickers">
  <el-select 
  class="year select"
  v-model="currentDate.year"
  @change='judgeDay'
  placeholder="年">
   <el-option
   v-for="item in years"
   :key="item"
   :label="item"
   :value="item">
   </el-option>
  </el-select>
  <el-select 
  class="month select"
  v-model="currentDate.month" 
  @change='judgeDay'
  placeholder="月">
   <el-option
   v-for="item in months"
   :key="item"
   :label="String(item).length==1?String('0'+item):String(item)"
   :value="item">
   </el-option>
  </el-select>
  <el-select 
  class="day select"
  :class="{'error':hasError}"
  v-model="currentDate.day" 
  placeholder="日">
   <el-option
   v-for="item in days"
   :key="item"
   :label="String(item).length==1?String('0'+item):String(item)"
   :value="item">
   </el-option>
  </el-select>
 </div>
</template>
<script>
export default {
 props: {
 sourceDate: {
  type: [String, Number]
 }
 },
 name: "date-pickers",
 data() {
 return {
  currentDate: {
  year: "",
  month: "",
  day: ""
  },
  maxYear: new Date().getFullYear(),
  minYear: 1910,
  years: [],
  months: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
  normalMaxDays: 31,
  days: [],
  hasError: false
 };
 },
 watch: {
 sourceDate() {
  if (this.sourceDate) {
  this.currentDate = this.timestampToTime(this.sourceDate);
  }
 },
 normalMaxDays() {
  this.getFullDays();
  if (this.currentDate.year && this.currentDate.day > this.normalMaxDays) {
  this.currentDate.day = "";
  }
 },
 currentDate: {
  handler(newValue, oldValue) {
  this.judgeDay();
  if (newValue.year && newValue.month && newValue.day) {
   this.hasError = false;
  } else {
   this.hasError = true;
  }
  this.emitDate();
  },
  deep: true
 }
 },
 created() {
 this.getFullYears();
 this.getFullDays();
 },
 methods: {
 emitDate() {
  let timestamp; //暫默認(rèn)傳給父組件時(shí)間戳形式
  if ( this.currentDate.year && this.currentDate.month && this.currentDate.day) {
   let month = this.currentDate.month < 10 ? ('0'+ this.currentDate.month):this.currentDate.month;
   let day = this.currentDate.day < 10 ? ('0'+ this.currentDate.day):this.currentDate.day;
   let dateStr = this.currentDate.year + "-" + month + "-" + day;
   timestamp = new Date(dateStr).getTime();
  } 
  else {
   timestamp = "";
  }
  this.$emit("dateSelected", timestamp);
 },
 timestampToTime(timestamp) {
  let dateObject = {};
  if (typeof timestamp == "number") {
  dateObject.year = new Date(timestamp).getFullYear();
  dateObject.month = new Date(timestamp).getMonth() + 1;
  dateObject.day = new Date(timestamp).getDate();
  return dateObject;
  }
 },
 getFullYears() {
  for (let i = this.minYear; i <= this.maxYear; i++) {
  this.years.push(i);
  }
 },
 getFullDays() {
  this.days = [];
  for (let i = 1; i <= this.normalMaxDays; i++) {
  this.days.push(i);
  }
 },
 judgeDay() {
  if ([4, 6, 9, 11].indexOf(this.currentDate.month) !== -1) {
  this.normalMaxDays = 30; //小月30天
  if (this.currentDate.day && this.currentDate.day == 31) {
   this.currentDate.day = "";
  }
  } else if (this.currentDate.month == 2) {
  if (this.currentDate.year) {
   if (
   (this.currentDate.year % 4 == 0 &&
    this.currentDate.year % 100 != 0) ||
   this.currentDate.year % 400 == 0
   ) {
   this.normalMaxDays = 29; //閏年2月29天
   } else {
   this.normalMaxDays = 28; //閏年平年28天
   }
  } 
  else {
   this.normalMaxDays = 28;//閏年平年28天
  }
  } 
  else {
  this.normalMaxDays = 31;//大月31天
  }
 }
 }
};
</script>
<style lang="less">
.date-pickers {
 .select {
 margin-right: 10px;
 width: 80px;
 text-align: center;
 }
 .year {
 width: 100px;
 }
 .error {
 .el-input__inner {
  border: 1px solid #f1403c;
  border-radius: 4px;
 }
 }
}
</style>

代碼解析

默認(rèn)天數(shù)(normalMaxDays)為31天,最小年份1910,最大年份為當(dāng)前年(因?yàn)槲业臉I(yè)務(wù)場(chǎng)景是填寫(xiě)生日,大家這些都可以自己調(diào))并在created 鉤子中先初始化年份和天數(shù)。

監(jiān)聽(tīng)當(dāng)前日期(currentDate)

核心是監(jiān)聽(tīng)每一次日期的改變,并修正normalMaxDays,這里對(duì)currentDate進(jìn)行深監(jiān)聽(tīng),同時(shí)發(fā)送到父組件,監(jiān)聽(tīng)過(guò)程:

watch: {
 currentDate: {
  handler(newValue, oldValue) {
  this.judgeDay(); //更新當(dāng)前天數(shù)
  this.emitDate(); //發(fā)送結(jié)果至父組件或其他地方
  },
  deep: true
 }
}

judgeDay方法:

judgeDay() {
 if ([4, 6, 9, 11].indexOf(this.currentDate.month) !== -1) {
 this.normalMaxDays = 30; //小月30天
 if (this.currentDate.day && this.currentDate.day == 31) {
  this.currentDate.day = ""; 
 }
 } else if (this.currentDate.month == 2) {
 if (this.currentDate.year) {
  if (
  (this.currentDate.year % 4 == 0 &&
   this.currentDate.year % 100 != 0) ||
  this.currentDate.year % 400 == 0
  ) {
  this.normalMaxDays = 29; //閏年2月29天
  } else {
  this.normalMaxDays = 28; //平年2月28天
  }
 } else {
  this.normalMaxDays = 28; //平年2月28天
 }
 } else {
 this.normalMaxDays = 31; //大月31天
 }
}

最開(kāi)始的時(shí)候我用的 includes判斷當(dāng)前月是否是小月:

if([4, 6, 9, 11].includes(this.currentDate.month))

也是缺乏經(jīng)驗(yàn),最后測(cè)出來(lái)includes 在IE10不支持,因此改用普通的indexOf()。

emitDate:
emitDate() {
 let timestamp; //暫默認(rèn)傳給父組件時(shí)間戳形式
 if ( this.currentDate.year && this.currentDate.month && this.currentDate.day) {
  let month = this.currentDate.month < 10 ? ('0'+ this.currentDate.month):this.currentDate.month;
  let day = this.currentDate.day < 10 ? ('0'+ this.currentDate.day):this.currentDate.day;
  let dateStr = this.currentDate.year + "-" + month + "-" + day;
  timestamp = new Date(dateStr).getTime();
 } 
 else {
  timestamp = "";
 }
 this.$emit("dateSelected", timestamp);//發(fā)送給父組件相關(guān)結(jié)果
},

這里需要注意的,最開(kāi)始并沒(méi)有做上述標(biāo)準(zhǔn)日期格式處理,因?yàn)閏hrome做了適當(dāng)容錯(cuò),但是在IE10就不行了,所以最好要做這種處理。

normalMaxDays改變后必須重新獲取天數(shù),并依情況清空當(dāng)前選擇天數(shù):

watch: {
 normalMaxDays() {
  this.getFullDays();
  if (this.currentDate.year && this.currentDate.day > this.normalMaxDays) {
  this.currentDate.day = "";
  }
 }
}

最終效果

總結(jié)

以上所述是小編給大家介紹的基于Vue組件化的日期聯(lián)動(dòng)選擇器功能的實(shí)現(xiàn)代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

  • vue封裝echarts組件,數(shù)據(jù)動(dòng)態(tài)渲染方式

    vue封裝echarts組件,數(shù)據(jù)動(dòng)態(tài)渲染方式

    這篇文章主要介紹了vue封裝echarts組件,數(shù)據(jù)動(dòng)態(tài)渲染方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-12-12
  • vue實(shí)現(xiàn)分頁(yè)的三種效果

    vue實(shí)現(xiàn)分頁(yè)的三種效果

    這篇文章主要為大家詳細(xì)介紹了vue實(shí)現(xiàn)分頁(yè)的三種效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-06-06
  • Vue項(xiàng)目分環(huán)境打包的實(shí)現(xiàn)步驟

    Vue項(xiàng)目分環(huán)境打包的實(shí)現(xiàn)步驟

    這篇文章主要介紹了Vue項(xiàng)目如何分環(huán)境打包,實(shí)現(xiàn)方法大概分為六步驟,需要的朋友可以參考下
    2018-04-04
  • vue實(shí)現(xiàn)動(dòng)態(tài)列表尾部添加數(shù)據(jù)執(zhí)行動(dòng)畫(huà)

    vue實(shí)現(xiàn)動(dòng)態(tài)列表尾部添加數(shù)據(jù)執(zhí)行動(dòng)畫(huà)

    這篇文章主要介紹了vue實(shí)現(xiàn)動(dòng)態(tài)列表尾部添加數(shù)據(jù)執(zhí)行動(dòng)畫(huà)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • 在Vue中實(shí)現(xiàn)二維碼生成與掃描功能的方法

    在Vue中實(shí)現(xiàn)二維碼生成與掃描功能的方法

    二維碼是一種廣泛應(yīng)用于各種場(chǎng)合的編碼方式,它可以將信息編碼成一張二維圖案,方便快捷地傳遞信息,在Vue.js中,我們可以使用一些庫(kù)和組件來(lái)實(shí)現(xiàn)二維碼的生成和掃描,本文將介紹如何在Vue中實(shí)現(xiàn)二維碼的生成和掃描的方法
    2023-06-06
  • VUE項(xiàng)目中SASS的使用及說(shuō)明

    VUE項(xiàng)目中SASS的使用及說(shuō)明

    這篇文章主要介紹了VUE項(xiàng)目中SASS的使用及說(shuō)明,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-06-06
  • vue實(shí)現(xiàn)簡(jiǎn)單跑馬燈效果

    vue實(shí)現(xiàn)簡(jiǎn)單跑馬燈效果

    這篇文章主要為大家詳細(xì)介紹了vue實(shí)現(xiàn)簡(jiǎn)單跑馬燈效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-05-05
  • Vue實(shí)現(xiàn)獲取剪切板內(nèi)容的兩種方法

    Vue實(shí)現(xiàn)獲取剪切板內(nèi)容的兩種方法

    這篇文章主要為大家詳細(xì)介紹了Vue實(shí)現(xiàn)獲取剪切板內(nèi)容的兩種方法,文中的示例代碼講解詳細(xì),具有一定的借鑒價(jià)值,有需要的小伙伴可以了解下
    2025-02-02
  • Element MessageBox彈框的具體使用

    Element MessageBox彈框的具體使用

    這篇文章主要介紹了Element MessageBox彈框的具體使用,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-07-07
  • 在Vue3項(xiàng)目中使用Vuex進(jìn)行狀態(tài)管理的詳細(xì)教程

    在Vue3項(xiàng)目中使用Vuex進(jìn)行狀態(tài)管理的詳細(xì)教程

    在?Vue?3?中使用?Vuex?進(jìn)行狀態(tài)管理是一個(gè)很好的實(shí)踐,特別是在涉及到多個(gè)組件間共享狀態(tài)的情況,下面是如何在?Vue?3?項(xiàng)目中設(shè)置和使用?Vuex?的教程,包括?state,?mutations,?actions,?getters?的概念及其用途,需要的朋友可以參考下
    2024-09-09

最新評(píng)論

三江| 南丹县| 泸西县| 磐安县| 噶尔县| 左云县| 绥宁县| 峨眉山市| 甘泉县| 阿拉尔市| 罗源县| 桦南县| 班玛县| 阆中市| 犍为县| 阳城县| 志丹县| 阳东县| 将乐县| 科技| 岑巩县| 罗江县| 栾川县| 安西县| 平湖市| 桃源县| 清原| 金塔县| 锡林浩特市| 定安县| 古田县| 尚志市| 台东县| 湟中县| 二连浩特市| 荥经县| 孝义市| 永吉县| 永兴县| 乐都县| 延川县|