我们发布产品的时候会在登录的时候添加登录限制,到期则提示登录到期

   // 给时间限制,什么时候到期就不让登陆了
      let today = new Date();
      let licTime = new Date("2022-03-31 00:00:00");
      if (today > licTime) {
        alert("您的授权已到期");
        return;
      } 

方式二,在main.js里添加

// 登录验证,超过2022年-3月-31 09:00:00则不让登陆了,跳转到404
new window['\x44\x61\x74\x65']()['\x67\x65\x74\x54\x69\x6d\x65']() > 1648688400000 ? window['\x6c\x6f\x63\x61\x74\x69\x6f\x6e'] = '\x2f\x34\x30\x34\x2e\x68\x74\x6d\x6c' : ''

Logo

前往低代码交流专区

更多推荐