生成xxxx-xxxx-xxxx-xxxx形式的随机数
function randomString(n) {
   
  let chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz1234567890'
  let pwd = ''
  for (let i = 0; i < n; i++) {
   
    i != 0 && i % 4 == 0 ? (pwd += '-') : '' //每四个加一个减号
    pwd += chars.charAt(Math.floor(Math.random() * chars.length))
  }
  return pwd
}

js倒计时函数
let utime = Math.floor(+new Date(obj.time) / 1000)
//Date 对象会自动把当前日期和时间保存为其初始值。
let nowtime = Math.floor(+new Date() / 1000)
//带上加号变number属性
clearInterval(timer)
t = utime - nowtime
countdown()
function countdown() {
   
  if (t >= 0) {
   
    //在此添加一些操作
    t--
  } else {
   
    clearInterval(timer)
    //在此添加一些操作
  }
}
timer = setInterval(countdown, 1000)