接口请求参数需要传递时间
下面有三种方式获取当前时间
第一种
格式是最常见,采用三元判断添加0
created() {
this.getCurrentTime()
},
methods: {
getCurrentTime() {
// 获取当前时间并打印
var _this = this
const yy = new Date().getFullYear()
const mm = new Date().getMonth() + 1 < 10 ? '0' + new Date().getMonth() : new Date().getMonth()
const dd = new Date().getDate() < 10 ? '0' + new Date().getDate() : new Date().getDate()
const hh = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours()
const mf = new Date().getMinutes() < 10 ? '0' + new Date