diff --git a/src/components/SprayParam.vue b/src/components/SprayParam.vue new file mode 100644 index 0000000..5d880d1 --- /dev/null +++ b/src/components/SprayParam.vue @@ -0,0 +1,94 @@ + + + diff --git a/src/views/SprayView.vue b/src/views/SprayView.vue index 201fc67..1b25475 100644 --- a/src/views/SprayView.vue +++ b/src/views/SprayView.vue @@ -111,64 +111,7 @@ -
- Z轴高度 - - 毫米 - - 氮气流速 - - 毫米/每秒 - - 氮气气压 - - MPa≥0.35 - - 基质流速 - - ul/min - - 是否加电 -
-
-
- -
- V - - 移动速度 - - 毫米/每秒 - - 行间距 - - 毫米 - -
- -
-
+ @@ -189,6 +132,7 @@ import type { MatrixItem } from "./matrixManage/type"; import { useSettingStore } from "@/stores/setting"; import type { CraftItem } from "@/services/matrix/type"; import { getListByMatrixId } from "@/services/matrix/craft"; +import SprayParam from "@/components/SprayParam.vue"; const defaultCraft: CraftItem = { id: 0, @@ -276,6 +220,11 @@ function onStopSpray() { } }); } + +function updateSprayParam(p: WorkType) { + console.log(p) + selectCraft.value = p as CraftItem; +}