uniapp封装函数的方法:
获取当前时间,格式YYYY-MM-DD HH:MM:SS
const GetNowTime = time => {
var date = time,
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) : "";
var timer = year '-' month '-' day ' ' hour ':' minute ':' second;
return timer;
}
格式化电话号码
const GetPhone = phone => {
let tel = phone.slice(0, 3) '****' phone.slice(7, 11);
return tel;
}
module.exports = {
GetNowTime,
GetPhone
}
本文出至:学新通技术网
本站名称:
学新通技术网
版权声明:本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
联系方式:luke.wu@swvq.com
标签: