Vuepic / vue-datepicker

Datepicker component for Vue 3
https://vue3datepicker.com
MIT License
1.48k stars 147 forks source link

移动端显示异常 #767

Closed izhaorui closed 7 months ago

izhaorui commented 7 months ago

Describe the bug Display abnormality on mobile terminal (mobile phone)

72d3d91ce9b034f1bf1ac5b31e14af1

<VueDatePicker position="left" enable-seconds locale="zh-CN" timeZone="locale" placeholder="请选择日期" :range="{ partialRange: false }" select-text="确定" cancel-text="取消"

izhaorui commented 7 months ago

image Normally it should look like this

izhaorui commented 7 months ago

找到问题了,加了下面这段代码就有问题

// 解决提交日期到后端少8小时 Date.prototype.toISOString = function () { return dayjs(this).format('YYYY-MM-DD HH:mm:ss') }