锐单电子商城 , 一站式电子元器件采购平台!
  • 电话:400-990-0325

2022-5月工作经验技巧总结

时间:2023-01-26 19:30:00 5挤压单连接器

1.退出功能-通用

logout () {    this.$confirm你确定要离开吗?', '提示', {     confirmButtonText: '确定',     cancelButtonText: '取消',     type: 'warning',     customClass: 'confirm-p'         //注意:这是自己设置的类名,然后样式可以通过类名任意修改。     }).then(async () => {     // 清空本地信息     await this.$store.dispatch('user/userLogout')     // 回去登录页     const curPath = encodeURIComponent(this.$route.fullPath)     this.$router.push('/login?return_url='   curPath)     }).catch(() => {      })    }

2.