diff --git a/src/views/kpi/workbench/index.vue b/src/views/kpi/workbench/index.vue
index 9cf3c70..1defaaf 100644
--- a/src/views/kpi/workbench/index.vue
+++ b/src/views/kpi/workbench/index.vue
@@ -14,7 +14,6 @@
登 陆
token : {{token}}
-
@@ -28,7 +27,7 @@ const islzmanagement = window.location.host.indexOf('hostList') > -1 && window.l
export default {
data () {
return {
- isShow: true,
+ isShow: false,
islzmanagement,
input: localStorage.getItem('input'),
verify: '888888',
@@ -43,11 +42,6 @@ export default {
handleClick () {
this.isShow = !this.isShow
},
- // async handleVerify () {
- // const params = {'userName': this.input, 'password': 'admin', 'uuid': '', 'verify': this.verify, 'verifyCode': this.verify}
- // let res = await apiSendSMS(params)
- // console.log('res: ', res)
- // },
async handleLogin () {
localStorage.setItem('input', this.input)
const params = {'userName': this.input, 'password': 'admin', 'uuid': '', 'verify': this.verify, 'verifyCode': this.verify}
@@ -59,7 +53,6 @@ export default {
if (ress.code === 200) {
this.SET_USER_INFO(ress.user)
}
- console.log('ress: ', ress)
location.reload()
}
}