diff --git a/src/views/photographicDevice/components/parameterSetDialog.vue b/src/views/photographicDevice/components/parameterSetDialog.vue
index 1289b5a..bb736ee 100644
--- a/src/views/photographicDevice/components/parameterSetDialog.vue
+++ b/src/views/photographicDevice/components/parameterSetDialog.vue
@@ -95,6 +95,17 @@
label-position="right"
label-width="152px"
>
+
+
+
+
+
+
+
+
+
+
+
+
@@ -1193,6 +1215,22 @@ export default {
},
inetLoading: false,
inetSetLoading: false,
+
+ devtype: 1,
+ devOptions: [
+ {
+ id: 1,
+ label: "微拍",
+ },
+ {
+ id: 2,
+ label: "覆冰拉力",
+ },
+ {
+ id: 3,
+ label: "微气象",
+ },
+ ],
};
},
mounted() {},
@@ -1417,6 +1455,7 @@ export default {
samplingSearch() {
if (this.rowData.isonline || this.rowData.onlinestatus === 1) {
this.sampLoading = true;
+ console.log("查询采样参数", this.rowData);
let params = [
{
name: "act",
@@ -1451,6 +1490,17 @@ export default {
value: "",
},
];
+ if (this.devtype == 2) {
+ params.push({
+ name: "reqtype",
+ value: "34",
+ });
+ } else if (this.devtype == 3) {
+ params.push({
+ name: "reqtype",
+ value: "1",
+ });
+ }
this.setTermFn(params);
} else {
this.$message({
@@ -1501,6 +1551,18 @@ export default {
value: this.samplingForm.heartbeatTime,
},
];
+ if (this.devtype == 2) {
+ params.push({
+ name: "reqtype",
+ value: "34",
+ });
+ } else if (this.devtype == 3) {
+ params.push({
+ name: "reqtype",
+ value: "1",
+ });
+ }
+
this.setTermFn(params);
} else {
console.log("error submit!!");
diff --git a/src/views/photographicDevice/index.vue b/src/views/photographicDevice/index.vue
index fbbd669..033800a 100644
--- a/src/views/photographicDevice/index.vue
+++ b/src/views/photographicDevice/index.vue
@@ -169,6 +169,7 @@
覆冰拉力
微气象
覆冰和微气象
+ 微拍、覆冰、微气象