在js中添加方法

function timestampToTime(timestamp) {
        var date = new Date(timestamp * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
        Y = date.getFullYear() + '-';
        M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
        D = date.getDate() + ' ';
        h = date.getHours() + ':';
        m = date.getMinutes() + ':';
        s = date.getSeconds();
        return Y+M+D+h+m+s;
    }

html中使用

<div class="form-group">
                        <div class="col-sm-3 control-label">注册日期</div>
                    <div class="col-sm-10">
                        <input type="text" class="form-control" v-model="timestampToTime(userBaseInfo.regtime)" placeholder="注册日期"/>
                        <span>{{timestampToTime(userBaseInfo.regtime)}}</span>
                    </div>
                </div>

 

Logo

前往低代码交流专区

更多推荐