权限控制

master
Caps 6 years ago
parent b1e069499b
commit 98c1b5fb04

@ -223,7 +223,6 @@
id:"0",
name:"全部"
});
that.changeRoleId = "0";
for (let i = 0; i < data.length; i++) {
let row = data[i];
that.roleList.push(row);
@ -231,8 +230,14 @@
if (that.$route.query != null) {
that.item = that.$route.query;
//
if(that.item.id === undefined){
that.changeRoleId = "0";
}else {
that.changeRoleId = that.item.id;
}
}else {
that.changeRoleId = "0";
}
that.listAccountInfoFunction();
}
})

Loading…
Cancel
Save