|
@@ -5,52 +5,52 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { useWebSocket } from '@/utils/handWs';
|
|
|
-const { handWs, startDevice, startHand, stateHand } = useWebSocket();
|
|
|
+// import { useWebSocket } from '@/utils/handWs';
|
|
|
+// const { handWs, startDevice, startHand, stateHand } = useWebSocket();
|
|
|
|
|
|
-const router = useRouter();
|
|
|
+// const router = useRouter();
|
|
|
|
|
|
-const data = reactive<any>({
|
|
|
- device_info: {},//设备信息
|
|
|
-});
|
|
|
-const { device_info } = toRefs(data);
|
|
|
+// const data = reactive<any>({
|
|
|
+// device_info: {},//设备信息
|
|
|
+// });
|
|
|
+// const { device_info } = toRefs(data);
|
|
|
|
|
|
|
|
|
-/**
|
|
|
- * 手势
|
|
|
-*/
|
|
|
-const getHandWs = async () => {
|
|
|
- //加载手势WS
|
|
|
- handWs((e: any) => {
|
|
|
- // console.log("eeee", e)
|
|
|
- if (e?.wksid) {
|
|
|
- //获取设备项目
|
|
|
- let deviceid = localStorage.getItem("deviceid") || '';
|
|
|
- if (deviceid) {
|
|
|
- startDevice({ deviceid: deviceid })
|
|
|
- }
|
|
|
- }
|
|
|
- //接收设备信息
|
|
|
- if (e?.device_info) {
|
|
|
- device_info.value = e.device_info;
|
|
|
- let handcontroller_id = device_info.value.handcontroller_id;
|
|
|
- stateHand(handcontroller_id);
|
|
|
- }
|
|
|
- //获取手势状态
|
|
|
- if (e?.cmd == 'get_handcontroller_state' && e?.state == 0) {
|
|
|
- let handcontroller_id = device_info.value.handcontroller_id;
|
|
|
- startHand(handcontroller_id);
|
|
|
- }
|
|
|
- //刷新
|
|
|
- if (e?.data?.result == "refresh") {
|
|
|
- router.push({ path: '/gesture' });
|
|
|
- //刷新
|
|
|
- window.location.reload()
|
|
|
- }
|
|
|
- });
|
|
|
-};
|
|
|
+// /**
|
|
|
+// * 手势
|
|
|
+// */
|
|
|
+// const getHandWs = async () => {
|
|
|
+// //加载手势WS
|
|
|
+// handWs((e: any) => {
|
|
|
+// // console.log("eeee", e)
|
|
|
+// if (e?.wksid) {
|
|
|
+// //获取设备项目
|
|
|
+// let deviceid = localStorage.getItem("deviceid") || '';
|
|
|
+// if (deviceid) {
|
|
|
+// startDevice({ deviceid: deviceid })
|
|
|
+// }
|
|
|
+// }
|
|
|
+// //接收设备信息
|
|
|
+// if (e?.device_info) {
|
|
|
+// device_info.value = e.device_info;
|
|
|
+// let handcontroller_id = device_info.value.handcontroller_id;
|
|
|
+// stateHand(handcontroller_id);
|
|
|
+// }
|
|
|
+// //获取手势状态
|
|
|
+// if (e?.cmd == 'get_handcontroller_state' && e?.state == 0) {
|
|
|
+// let handcontroller_id = device_info.value.handcontroller_id;
|
|
|
+// startHand(handcontroller_id);
|
|
|
+// }
|
|
|
+// //刷新
|
|
|
+// if (e?.data?.result == "refresh") {
|
|
|
+// router.push({ path: '/gesture' });
|
|
|
+// //刷新
|
|
|
+// window.location.reload()
|
|
|
+// }
|
|
|
+// });
|
|
|
+// };
|
|
|
|
|
|
-getHandWs()
|
|
|
+// getHandWs()
|
|
|
</script>
|
|
|
|
|
|
<style scoped></style>
|