소스 검색

```
fix(LoginDialog): 清空密码登录表单的默认测试数据

移除了密码登录表单中硬编码的测试账号和密码,
确保用户需要输入自己的凭据进行登录验证
```

zhangningning 3 주 전
부모
커밋
d40367ccd3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/components/LoginDialog.vue

+ 2 - 2
src/components/LoginDialog.vue

@@ -281,8 +281,8 @@ const activeTab = ref('sms')
 
 // 密码登录表单
 const passwordForm = reactive({
-  account: '13925214105',//
-  password: 'zhangning13Z',//
+  account: '',//
+  password: '',//
   captcha: '',
   uuid: ''
 })