控制权限 修改 不需要判断web是否有权限

This commit is contained in:
mmc
2026-08-20 16:45:12 +08:00
parent f22c2bedfe
commit 30ce706280
4 changed files with 12 additions and 13 deletions

View File

@@ -61,3 +61,4 @@ export default function App() {
</I18nextProvider>
);
}

View File

@@ -166,22 +166,22 @@ export default class DeviceController {
wsManager.close();
try {
const res = await getControlRight({
userName: this.userInfo.username,
sourceType: 1,
token: this.userInfo.token,
});
//const res = await getControlRight({
// userName: this.userInfo.username,
// sourceType: 1,
// token: this.userInfo.token,
//});
this.hasControlRight = res?.code === 200 && res.data == true;
this.onHasControlRightChange?.(this.hasControlRight);
//this.hasControlRight = res?.code === 200 && res.data == true;
//this.onHasControlRightChange?.(this.hasControlRight);
wsManager.connect(sn, this.wsUrl);
this.connectedDeviceSn = sn;
if (!this.hasControlRight) {
this.messageApi.warning(i18n.t('devices.fixed2OthersControlFixed2'));
return;
}
//if (!this.hasControlRight) {
// this.messageApi.warning(i18n.t('devices.fixed2OthersControlFixed2'));
// return;
//}

View File

@@ -992,7 +992,6 @@ const en = {
controllerNotConnected: "controllerNotConnected",
otherWebConnected: "otherWebConnected",
clickToRequestControl: "clickToRequestControl",
control2: "connecting",
fixed2TaskSuspended2: 'Fixed2 Task Suspended2 态势',

View File

@@ -561,7 +561,6 @@ const zh = {
controllerNotConnected: "控制器未连接",
otherWebConnected: "其他网页已连接",
clickToRequestControl: "点击请求控制",
control2: "已连接",
controlling: "控制中",