时间格式的转化 年月日时分秒 直接拿来用

it2022-12-27  97

export function formatData (val) { if (!val) return ‘’ try { const date = new Date(val) const year = date.getFullYear() const month = date.getMonth() + 1 < 10 ? ‘0’ + (date.getMonth() + 1) : date.getMonth() + 1 const day = date.getDate() < 10 ? ‘0’ + (date.getDate()) : date.getDate() const hours = date.getHours() < 10 ? ‘0’ + date.getHours() : date.getHours() const minutes = date.getMinutes() < 10 ? ‘0’ + date.getMinutes() : date.getMinutes() return ${year}-${month}-${day} ${hours}:${minutes} } catch (e) { return val } }

引入需要的页面

<el-col :span="8"> <el-form-item label="申请时间:">{{formatData(bankformList.processDate)}}</el-form-item> </el-col>

js中引入 import { formatData } from ‘@/util/filterCommon’ 方法 methods 中使用 methods: { formatData, }

最新回复(0)