tongshanglei 2 년 전
부모
커밋
d34d2ee149
2개의 변경된 파일13개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      src/views/yunying/station/deviceList.vue
  2. 12 5
      src/views/yunying/station/index.vue

+ 1 - 1
src/views/yunying/station/deviceList.vue

@@ -131,7 +131,7 @@ export default {
         if (this.displayVisible) {
           this.queryParam = { 
             station_code: this.station_code,
-            timeRange: [new Date(new Date(new Date().toLocaleDateString()).getTime() - (7*24 * 60 * 60 * 1000)), new Date(new Date(new Date().toLocaleDateString()).getTime() + (24 * 60 * 60 * 1000)-1000)],
+            timeRange: [new Date(new Date(new Date().toLocaleDateString()).getTime() - (3*24 * 60 * 60 * 1000)), new Date(new Date(new Date().toLocaleDateString()).getTime() + (24 * 60 * 60 * 1000)-1000)],
           };
           this.getList(this.queryParam,180000);
         } else {

+ 12 - 5
src/views/yunying/station/index.vue

@@ -177,25 +177,32 @@
         :show-overflow-tooltip="true"
 
       />
-      
+      <el-table-column
+        prop="LOGIN_NAME"
+        label="登录名称"
+        align="center"
+        v-if="columnVisibles[8]"
+        :show-overflow-tooltip="true"
+
+      />
        <el-table-column
         prop="longitude"
         label="经度"
         align="center"
-        v-if="columnVisibles[8]"
+        v-if="columnVisibles[9]"
         :show-overflow-tooltip="true"
       />
        <el-table-column
         prop="latitude"
         label="纬度"
         align="center"
-        v-if="columnVisibles[9]"
+        v-if="columnVisibles[10]"
         :show-overflow-tooltip="true"
       />
       <el-table-column
         label="操作"
        width="120"
-        v-if="columnVisibles[10]"
+        v-if="columnVisibles[11]"
         align="center"
         fixed="right"
       >
@@ -389,7 +396,7 @@ export default {
       searchDisplay: true,
       station_code:'',
       deviceDialogVisible:false,
-      columnVisibles: new Array(11).fill(true), //初始为全true,并在每个列标签中使用v-if引用对应列下标的值。列下标从0开始。
+      columnVisibles: new Array(12).fill(true), //初始为全true,并在每个列标签中使用v-if引用对应列下标的值。列下标从0开始。
       columnInfos: [], // 所有列的信息
       hidenColumnIndexs: [], //初始隐藏的列的下标。列下标从 0 开始
       visibleIndexs: [], // 可见列的下标集合