pc-master #275

Merged
xiaomeng merged 6 commits from pc-master into portal 2025-08-27 07:03:50 +00:00
Showing only changes of commit 3c841537db - Show all commits

View File

@ -30,6 +30,10 @@
},
mounted(){
var router = this.$route.query;
if(router.token){
localStorage.setItem("token", router.token);
}
let inputList = document.querySelectorAll('input');
for (let index = 0; index < inputList.length; index++) {
inputList[index].onfocus = this.selectValue();//input
@ -37,7 +41,7 @@
},
methods:{
//
//
selectValue(e) {
e.currentTarget.select();
}