1 Star 0 Fork 1

HUB2EE/前端开发经验迭代ing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
时间格式转换为年月日时分秒.vue 881 Bytes
一键复制 编辑 原始数据 按行查看 历史
子龙 提交于 2021-11-17 10:27 . olosada
<template>
<view>{{timeVal}}</view>
</template>
<script>
export default {
name: '',
data() {
return {
timeVal: ''
};
},
onLoad(e) {
console.log('前页面传过来的数据------', e);
},
methods: {
// 时间格式转换
formatTime() {
let date = new Date(),
year = date.getFullYear(),
month = date.getMonth() + 1,
day = date.getDate(),
hour = date.getHours() < 10 ? '0' + date.getHours() : date.getHours(),
minute = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes(),
second = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds();
month >= 1 && month <= 9 ? (month = '0' + month) : '';
day >= 0 && day <= 9 ? (day = '0' + day) : '';
this.timeVal = year + '/' + month + '/' + day + ' ' + hour + ':' + minute + ':' + second;
return
}
}
};
</script>
<style lang="scss" scoped></style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/since2020/some_tips_of_css_js.git
git@gitee.com:since2020/some_tips_of_css_js.git
since2020
some_tips_of_css_js
前端开发经验迭代ing
master

搜索帮助