console.log(this.num)
if (this.num >= 3600) {
// this.time = Math.floor(Math.floor(Math.round(time) / 60) / 60) + '小时' + Math.floor(Math.round(res.resultData.timeCount) / 60) % 60 + '分钟'
this.hour = Math.floor(Math.floor(Math.round(this.num) / 60) / 60)
this.min = Math.floor(Math.round(this.num) / 60) % 60
this.show = true
} else {
// this.time = Math.floor(Math.floor(Math.round(time) / 60) / 60)
this.min = Math.floor(Math.round(this.num) / 60) % 60
private formatDuring(mss) {
let days = Math.floor(mss / (1000 * 60 * 60 * 24));
let hours = Math.floor((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
let minutes = Ma...
// 根据
秒
数
转换
成对应的时分
秒
export function getHMS(time) {
const hour = parseInt(time / 3600) < 10 ? '0' + parseInt(time / 3600) : parseInt(time / 3600)
const min = parseInt(time % 3600 / 60) < 10 ? '0' + parseInt(time % 3600 / 60) : parseInt(time % 3600 /.
vue
element ui表格数据0 1
转换
为是否1.
vue
内添加 :formatter="formatFreeShippingInfo"2. methods:{}里写formatFreeShippingInfo()方法
1.
vue
内添加 :formatter=“formatFreeShippingInfo”
<el-table-column
:formatter="formatFreeShippingInfo"
prop="isFreeShipping"
label="是否包邮"
时间
转换
做一个项目肯定会关系到很多的数据类型,数据类型之间都是可以
转
化的,,
前端
有时候从后端拿到的时间不符合标准,此时就需要
转换
以后再去使用,
转换
有两种方式,看你个人比较喜欢哪一种。这里已时间
转换
为例子
过滤器filter
全局过滤器
在main.js写入
// 时间戳过滤器
Vue
.filter('dateFormat', (dataStr) => {
var time = new Date(dataStr)
function timeAdd0 (str) {