您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue3 elementUI怎么修改el-date-picker默認時間”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Vue3 elementUI怎么修改el-date-picker默認時間”文章能幫助大家解決問題。
HTML:
<el-date-picker v-model="dateValue" type="daterange" size="small" unlink-panels range-separator="至" start-placeholder="開始日期" end-placeholder="結(jié)束日期" :shortcuts="shortcuts"> </el-date-picker>
JS:
//放在頁面的state中 shortcuts: [ { text: "本周", value: () => { const end = new Date(); const start = new Date(); //周日算第一天,如果周日查詢本周的話,天數(shù)是0,所有如果是0,默認設(shè)置為7,處理當(dāng)前周 const nows = start.getDay() || 7; start.setTime(start.getTime() - 3600 * 1000 * 24 * (nows - 1)); end.setTime(end.getTime() - 3600 * 1000 * 24 * (nows - 7)); console.log(start, end, "end"); return [start, end]; }, }, { text: "本月", value: () => methods.getTime(), }, { text: "上月", value: () => { const oDate = new Date(); let year = oDate.getFullYear(); let month = oDate.getMonth(); let start, end; if (month == 0) { year--; start = new Date(year, 11, 1); end = new Date(year, 11, 31); } else { start = new Date(year, month - 1, 1); end = new Date(year, month, 0); } return [start, end]; }, }, ],
處理本月的函數(shù):
// 獲取本月時間段datePicker使用 getTime() { const oDate = new Date(); let year = oDate.getFullYear(); let month = 0//oDate.getMonth(); let start, end; if (month == 0) { year--; start = new Date(year, 0, 1); end = new Date(year, 12, 31); } else { start = new Date(year, month, 1); end = new Date(year, month + 1, 0); } state.dateValue = [start, end]; return [start, end]; },
需要一進頁面時,把日期選擇器,默認展示為2012-01-01至當(dāng)前日期-1天
即圖:
2.1
<el-form-item label="時間周期:" prop="timeCycle" > <el-date-picker v-model="createForm.timeCycle" type="datetimerange" :picker-options="pickerOptions" //快捷時間選擇的函數(shù) range-separator="至" start-placeholder="開始日期" end-placeholder="結(jié)束日期" value-format="yyyy-MM-dd" //默認值為這種格式 > </el-date-picker> </el-form-item>
2.2
由于開始時間是固定的,所以需要在定義數(shù)據(jù)時定義好,結(jié)束時間不能不填,也不能是" ",也不能是不符合時間格式的,否則整個時間選擇器都不會展示了
data(){ return { createForm: { timeCycle:["2012-01-01","2012-01-01"] } } }
2.3
在頁面一加載時,在created函數(shù)里把結(jié)束時間算好,然后賦值到定義的timeCycle數(shù)組的第二項
created(){ const end = new Date();//獲取當(dāng)前的日期 end.setTime(end.getTime() - 3600 * 1000 * 24 ) //計算,將當(dāng)期日期-1天 //此時得到的是中國標準時間,格式不是yyyy-MM-dd,需要用dateFormat這個函數(shù)轉(zhuǎn)換下 this.createForm.timeCycle[1]=this.dateFormat(end) //將轉(zhuǎn)換完的正確格式的結(jié)束時間賦值到timeCycle數(shù)組的第二項 }
2.4
時間格式的轉(zhuǎn)換函數(shù)
中國標準時間,即,例如:Wed Oct 24 2018 20:00:00 GMT+0800
轉(zhuǎn)換為:yyyy-MM-dd格式,即:2018-10-24
methods:{ dateFormat(dateData) { var date = new Date(dateData) var y = date.getFullYear() var m = date.getMonth() + 1 m = m < 10 ? ('0' + m) : m var d = date.getDate() d = d < 10 ? ('0' + d) : d const time = y + '-' + m + '-' + d return time } }
關(guān)于“Vue3 elementUI怎么修改el-date-picker默認時間”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。