diff --git a/src/main/java/com/genersoft/iot/vmp/jt1078/bean/JTDeviceConfig.java b/src/main/java/com/genersoft/iot/vmp/jt1078/bean/JTDeviceConfig.java
index 8905bcab4..fef0d6708 100644
--- a/src/main/java/com/genersoft/iot/vmp/jt1078/bean/JTDeviceConfig.java
+++ b/src/main/java/com/genersoft/iot/vmp/jt1078/bean/JTDeviceConfig.java
@@ -258,7 +258,7 @@ public class JTDeviceConfig {
@ConfigAttribute(id = 0x92, type="Short", description = "GNSS 模块详细定位数据输出频率,定义如下: 0: 500ms, 1:1000ms(默认值), 2:2000ms, 3:3000ms, 4:4000ms")
private Short gnssOutputFrequency;
- @ConfigAttribute(id = 0x93, type="Long", description = "GNSS 模块详细定位数据采集频率 ,单位为秒(s) ,默认为1")
+ @ConfigAttribute(id = 0x93, type="Long", description = "GNSS 模块详细定位数据采集频率 ,单位为秒(s) ,默认为1")
private Long gnssCollectionFrequency;
@ConfigAttribute(id = 0x94, type="Short", description = "GNSS 模块详细定位数据上传方式:,定义如下: " +
diff --git a/web/src/views/jtDevice/deviceParam/canCollectionParam.vue b/web/src/views/jtDevice/deviceParam/canCollectionParam.vue
new file mode 100755
index 000000000..42b9102e8
--- /dev/null
+++ b/web/src/views/jtDevice/deviceParam/canCollectionParam.vue
@@ -0,0 +1,86 @@
+
+
+
@@ -46,7 +62,22 @@
export default {
name: 'communication',
- components: {
+ components: {},
+ computed: {
+ gnssDataUploadMethodUnitLable(){
+ switch (this.form.gnssDataUploadMethod) {
+ case 1:
+ case 11:
+ return '上传设置(秒)'
+ case 2:
+ case 12:
+ return '上传设置(米)'
+ case 13:
+ return '上传设置(条)'
+ default:
+ return '上传设置'
+ }
+ }
},
props: {
phoneNumber: {
diff --git a/web/src/views/jtDevice/deviceParam/index.vue b/web/src/views/jtDevice/deviceParam/index.vue
index f9c75c3bd..a3441956d 100755
--- a/web/src/views/jtDevice/deviceParam/index.vue
+++ b/web/src/views/jtDevice/deviceParam/index.vue
@@ -42,6 +42,9 @@