当前位置: 首页 > 工具软件 > UI-date > 使用案例 >

element-ui的el-date-picker日期控件日期少一天

公良骁
2023-12-01

element-ui的el-date-picker日期控件日期少一天

问题: 查看到发送请求携带的日期比选中的日期少一天。

  <el-date-picker  size="small"  v-model="date"  type="daterange"  range-separator="至" unlink-panels :picker-options="pickerOptions" start-placeholder="开始日期"  end-placeholder="结束日期"></el-date-picker>

解决:value-format="yyyy-MM-dd"
原因:

	在网上找结果了,发现是因为
	element-ui中时间控件的默认时间为国际标准时间,所以与北京时间差8个小时
	在标签中加上value-format="yyyy-MM-dd"

解决了,如有错误还请大家指出,谢谢!

转自 https://blog.csdn.net/qq_37807767/article/details/107458888

 类似资料: