自定义APP自定义App数据通讯
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
166 B

/**
@ 作者: 秦东
@ 时间: 2024-10-24 15:23:29
@ 功能: 获取时间戳
*/
function getTimeUnix(){
return Date.now().toString();
}
export{
getTimeUnix
}