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.

9 lines
195 B

8 months ago
  1. function loginOut(){
  2. layer.confirm('确定要退出登录吗?', {
  3. btn : [ '确定', '取消' ]
  4. // 按钮
  5. }, function() {
  6. window.document.location.href="/logout";
  7. }, function() {
  8. });
  9. }