feat: frontend add boundary scan

This commit is contained in:
2025-05-19 13:30:06 +08:00
parent 2a3ef1ea7d
commit 5042bf8ce5
12 changed files with 611 additions and 538 deletions

View File

@@ -113,7 +113,7 @@
<script lang="ts" setup>
import { isNull, isUndefined } from "lodash";
import { ref } from "vue";
import { RemoteUpdaterClient } from "@/APIClient";
import { RemoteUpdateClient } from "@/APIClient";
import { useDialogStore } from "@/stores/dialog";
import { Common } from "@/Common";
@@ -134,7 +134,7 @@ const appBitstream3File = ref<File>();
// 远程升级相关参数
const devAddr = ref("192.168.1.100");
const devPort = 1234;
const remoteUpdater = new RemoteUpdaterClient();
const remoteUpdater = new RemoteUpdateClient();
// 处理文件上传
function handleFileChange(event: Event, bistreamNum: number) {