云端录像详情页添加返回按钮

This commit is contained in:
648540858
2022-08-31 18:07:53 +08:00
parent 275b272160
commit 703c2e292a
5 changed files with 19 additions and 14 deletions

View File

@@ -66,10 +66,6 @@ export default {
//登录请求
toLogin(){
//一般要跟后端了解密码的加密规则
//这里例子用的哈希算法来自./js/sha1.min.js
//需要想后端发送的登录参数
let loginParam = {
username: this.username,
@@ -78,12 +74,17 @@ export default {
var that = this;
//设置在登录状态
this.isLoging = true;
let timeoutTask = setTimeout(()=>{
that.$message.error("登录超时");
that.isLoging = false;
}, 1000)
this.$axios({
method: 'get',
url:"/api/user/login",
params: loginParam
}).then(function (res) {
window.clearTimeout(timeoutTask)
console.log(JSON.stringify(res));
if (res.data.code === 0 ) {
that.$cookies.set("session", {"username": that.username,"roleId":res.data.data.role.id}) ;
@@ -99,6 +100,8 @@ export default {
});
}
}).catch(function (error) {
console.log(error)
window.clearTimeout(timeoutTask)
that.$message.error(error.response.data.msg);
that.isLoging = false;
});