From 72b025d6b43271ae88541ea23c92070b3b2acc96 Mon Sep 17 00:00:00 2001 From: sd <shidong@jhsoft.cc> Date: 星期二, 05 八月 2025 16:15:44 +0800 Subject: [PATCH] 模型训练-批量批注、批量删除以及批量导入功能实现 --- src/pages/cameraAccess/components/CameraInfo.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/cameraAccess/components/CameraInfo.vue b/src/pages/cameraAccess/components/CameraInfo.vue index 1fbbf8e..05df119 100644 --- a/src/pages/cameraAccess/components/CameraInfo.vue +++ b/src/pages/cameraAccess/components/CameraInfo.vue @@ -315,7 +315,7 @@ return obj }) this.resolutionList = list - this.sensors = res.data.sensors + // this.sensors = res.data.sensors } this.$nextTick(() => { @@ -382,7 +382,7 @@ }, // 淇濆瓨 onSubmit(formName) { - let list = this.$refs.cameraEditor.getResult() + // let list = this.$refs.cameraEditor.getResult() this.$refs[formName].validate(async (valid) => { if (valid) { const isRequire = this.verifyRequrie() @@ -390,7 +390,7 @@ this.form.latitude = Number.isNaN(parseFloat(this.form.latitude)) ? 0 : parseFloat(this.form.latitude) this.form.longitude = Number.isNaN(parseFloat(this.form.longitude)) ? 0 : parseFloat(this.form.longitude) - this.form.sensors = list + // this.form.sensors = list this.form.resolution_width = Number(this.form.resolution.split("*")[0]) this.form.resolution_height = Number(this.form.resolution.split("*")[1]) let _this = this -- Gitblit v1.8.0