参考链接 https://ext.dcloud.net.cn/plugin?id=827
{{ utils.friendlyDate(timestamp) }}
// 直接使用办法
import utils from '@/components/shoyu-date/utils.filter.js';
// 直接使用办法 End
export default {
data() {
return {
// 直接使用需要进行声明
utils: utils,
// 直接使用需要进行声明 End
date: '2019-10-01 08:00:00'
};
},
onLoad() {
let that = this;
// 时间转换为时间戳
// 如果是时间戳直接传递,无需转换
that.timestamp = new Date(this.date).getTime();
console.log(that.timestamp);
},
methods: {}
};
// 组件引用办法
import uniDate from '@/components/shoyu-date/uni-date.vue';
// 组件引用办法 End
export default {
components: { uniDate },
data() {
return {
// 如果不传小时的话,计算以每天8点开始计算
date: '2019-10-01 08:00:00',
};
},
onLoad() {
let that = this;
},
methods: {}
};
{{ utils.timeTodate('Y-m-d H:i:s index', timestamp) }}
// 直接使用办法
import utils from '@/components/shoyu-date/utils.filter.js';
// 直接使用办法 End
export default {
data() {
return {
// 直接使用需要进行声明
utils: utils,
// 直接使用需要进行声明 End
date: '2019/10/01 08:00:00'
};
},
onLoad() {
let that = this;
// 时间转换为时间戳
// 如果是时间戳直接传递,无需转换
that.timestamp = new Date(this.date).getTime();
console.log(that.timestamp);
},
methods: {}
};
// 组件引用办法
import uniDate from '@/components/shoyu-date/uni-date.vue';
// 组件引用办法 End
export default {
components: { uniDate },
data() {
return {
// 如果不传小时的话,计算以每天8点开始计算
date: '2019-10-01 08:00:00',
};
},
onLoad() {
let that = this;
},
methods: {}
};