当前位置: 代码迷 >> 综合 >> vant 中 datetime-picker 插件封装只取年
  详细解决方案

vant 中 datetime-picker 插件封装只取年

热度:49   发布时间:2024-01-17 16:06:38.0
第一步

在node_modules=>vant=>es=>datetime-picker文件夹DatePicker.js中 找到 三处 year-month
在这里插入图片描述

//1.
if (this.type === 'year') result.splice(1, 4);
//2.
if (this.type === 'year') {
    month = 1date = 1;
}
//3.
if (this.type === 'year') {
    values = values.slice(0, 1);
}
第二步 全部代码
import _extends from "@babel/runtime/helpers/esm/extends";
import {
     createNamespace } from '../utils';
import {
     isDate } from '../utils/validate/date';
import {
     padZero } from '../utils/format/string';
import {
     getTrueValue, getMonthEndDay } from './utils';
import {
     sharedProps, TimePickerMixin } from './shared';
var currentYear = new Date().getFullYear();var _createNamespace = createNamespace('date-picker'),createComponent = _createNamespace[0];export default createComponent({
    mixins: [TimePickerMixin],props: _extends({
    }, sharedProps, {
    type: {
    type: String,default: 'datetime'},minDate: {
    type: Date,default: function _default() {
    return new Date(currentYear - 10, 0, 1);},validator: isDate},maxDate: {
    type: Date,default: function _default() {
    return new Date(currentYear + 10, 11, 31);},validator: isDate}}),watch: {
    filter: 'updateInnerValue',minDate: 'updateInnerValue',maxDate: 'updateInnerValue',value: function value(val) {
    val = this.formatValue(val);if (val.valueOf() !== this.innerValue.valueOf()) {
    this.innerValue = val;}}},computed: {
    ranges: function ranges() {
    var _this$getBoundary = this.getBoundary('max', this.innerValue),maxYear = _this$getBoundary.maxYear,maxDate = _this$getBoundary.maxDate,maxMonth = _this$getBoundary.maxMonth,maxHour = _this$getBoundary.maxHour,maxMinute = _this$getBoundary.maxMinute;var _this$getBoundary2 = this.getBoundary('min', this.innerValue),minYear = _this$getBoundary2.minYear,minDate = _this$getBoundary2.minDate,minMonth = _this$getBoundary2.minMonth,minHour = _this$getBoundary2.minHour,minMinute = _this$getBoundary2.minMinute;var result = [{
    type: 'year',range: [minYear, maxYear]}, {
    type: 'month',range: [minMonth, maxMonth]}, {
    type: 'day',range: [minDate, maxDate]}, {
    type: 'hour',range: [minHour, maxHour]}, {
    type: 'minute',range: [minMinute, maxMinute]}];if (this.type === 'date') result.splice(3, 2);if (this.type === 'year-month') result.splice(2, 3);if (this.type === 'year') result.splice(1, 4);return result;}},methods: {
    formatValue: function formatValue(value) {
    if (!isDate(value)) {
    value = this.minDate;}value = Math.max(value, this.minDate.getTime());value = Math.min(value, this.maxDate.getTime());return new Date(value);},getBoundary: function getBoundary(type, value) {
    var _ref;var boundary = this[type + "Date"];var year = boundary.getFullYear();var month = 1;var date = 1;var hour = 0;var minute = 0;if (type === 'max') {
    month = 12;date = getMonthEndDay(value.getFullYear(), value.getMonth() + 1);hour = 23;minute = 59;}if (value.getFullYear() === year) {
    month = boundary.getMonth() + 1;if (value.getMonth() + 1 === month) {
    date = boundary.getDate();if (value.getDate() === date) {
    hour = boundary.getHours();if (value.getHours() === hour) {
    minute = boundary.getMinutes();}}}}return _ref = {
    }, _ref[type + "Year"] = year, _ref[type + "Month"] = month, _ref[type + "Date"] = date, _ref[type + "Hour"] = hour, _ref[type + "Minute"] = minute, _ref;},updateInnerValue: function updateInnerValue() {
    var _this = this;var indexes = this.getPicker().getIndexes();var getValue = function getValue(index) {
    var values = _this.originColumns[index].values;return getTrueValue(values[indexes[index]]);};var year = getValue(0);var month = getValue(1);var maxDate = getMonthEndDay(year, month);var date;if (this.type === 'year-month') {
    date = 1;} else {
    date = getValue(2);}date = date > maxDate ? maxDate : date;var hour = 0;var minute = 0;if (this.type === 'datetime') {
    hour = getValue(3);minute = getValue(4);}if (this.type === 'year') {
    month = 1date = 1;}var value = new Date(year, month - 1, date, hour, minute);this.innerValue = this.formatValue(value);},onChange: function onChange(picker) {
    var _this2 = this;this.updateInnerValue();this.$nextTick(function () {
    _this2.$nextTick(function () {
    _this2.$emit('change', picker);});});},updateColumnValue: function updateColumnValue() {
    var _this3 = this;var value = this.innerValue;var formatter = this.formatter;var values = [formatter('year', "" + value.getFullYear()), formatter('month', padZero(value.getMonth() + 1)), formatter('day', padZero(value.getDate()))];if (this.type === 'datetime') {
    values.push(formatter('hour', padZero(value.getHours())), formatter('minute', padZero(value.getMinutes())));}if (this.type === 'year-month') {
    values = values.slice(0, 2);}if (this.type === 'year') {
    values = values.slice(0, 1);}this.$nextTick(function () {
    _this3.getPicker().setValues(values);});}}
});
第三步 使用
               <van-datetime-pickerv-model="currentDate":value="new Date()"  type="year"  title="选择年份"@confirm="confirmYear":max-date="new Date()"/> 

在这里插入图片描述

  相关解决方案