This commit is contained in:
2025-08-28 17:26:16 +08:00
parent 9816bf152a
commit 58829f2a80
7 changed files with 703 additions and 22 deletions

View File

@@ -78,8 +78,8 @@ export default {
// state: 'Unknown State', // 车辆状态
// stateId: 7, // 车辆状态ID
// theta: 0.9073792099952698, // 车辆航向角
// x: 0.004027, // 车辆x坐标
// y: -0.001812, // 车辆y坐标
// x: 10.004027, // 车辆x坐标
// y: -10.001812, // 车辆y坐标
// task_seq: '点位1,点位2,work point 3,顶地方的方法顶顶顶点位3',
// task_point: '点位2',
// anomalyLevel: 1,

View File

@@ -58,11 +58,11 @@ export default {
if (this.dataForm.password === config.password) {
this.setUserRole(1)
this.$message({
message: '登录成功',
message: this.$t('Loginsuccessful'),
type: 'success'
})
} else {
this.$message.error('登录失败')
this.$message.error(this.$t('Loginfailed'))
}
this.dataForm = {password: ''}
},