fuliqi
2024-07-09 11295ac61002bb0725970bfb683dade1f143bd93
更新代码
6个文件已修改
78 ■■■■ 已修改文件
src/layout/components/Navbar.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/check/result/detail/detail.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/check/rule/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/monitor/video/index.vue 42 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/point/index.vue 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/layout/components/Navbar.vue
@@ -116,15 +116,12 @@
        path: '/screen'
      })
    },
    toSystemA() {
      this.$router.push({
        path: '/screen'
      })
      window.open('https://www.baidu.com/')
    },
    toSystemB() {
      this.$router.push({
        path: '/screen'
      })
      window.open('https://www.baidu.com/')
    }
  }
}
src/router/index.js
@@ -74,7 +74,6 @@
      }
    ]
  },
  // {
  //   path: '',
  //   component: Layout,
@@ -122,7 +121,7 @@
        path: 'index/:type/:typeId',
        component: () => import('@/views/system/data-manage/data-detail'),
        name: 'DataDetail',
        meta: {
        meta: {
          title: '数据详情',
          activeMenu: '/data-manage'
         }
src/views/system/check/result/detail/detail.vue
@@ -1,7 +1,5 @@
<template>
  <div class="app-container">
    <el-page-header @back="goBack()" content="详情页面">
    </el-page-header>
    <el-container>
      <el-main>
src/views/system/check/rule/index.vue
@@ -236,7 +236,7 @@
        ruleDetail: null,
        videoPointNum: null,
        vehicleCheckpointNum: null,
        faceChceckpointNum: null,
        faceCheckpointNum: null,
        createTime: null,
        updateTime: null,
        deleted: null
src/views/system/monitor/video/index.vue
@@ -124,8 +124,16 @@
      <el-table-column type="selection" align="center" />
      <el-table-column label="设备名称" align="center" prop="name" width="280" fixed/>
      <el-table-column label="设备编码" align="center" prop="serialNumber" width="180"/>
      <el-table-column label="标签" align="center" prop="publicSecurity" width="180" v-if="columns[0].visible"/>
      <el-table-column label="区域" align="center" prop="address" width="180" v-if="columns[1].visible"/>
      <el-table-column label="标签" align="center" prop="publicSecurity" width="180" v-if="columns[0].visible">
        <template slot-scope="scope">
          <div>{{"省厅"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="区域" align="center" prop="address" width="180" v-if="columns[1].visible">
        <template slot-scope="scope">
          <div>{{"自流井区"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="设备状态" align="center" prop="onState" v-if="columns[2].visible">
      <template slot-scope="scope">
        <dict-tag :options="dict.type.camera_state" :value="scope.row.onState"/>
@@ -136,11 +144,31 @@
        <dict-tag :options="dict.type.platform_yes_no" :value="scope.row.defaultOrder"/>
      </template>
      </el-table-column>
      <el-table-column label="数据时间" align="center" prop="installedTime" width="180" v-if="columns[4].visible"/>
      <el-table-column label="管理单位" align="center" prop="managementUnit" width="180" v-if="columns[5].visible"/>
      <el-table-column label="信令时延(ms)" align="center" prop="sipDelay" width="180" v-if="columns[6].visible"/>
      <el-table-column label="视频时延(ms)" align="center" prop="videoDelay" width="180" v-if="columns[7].visible"/>
      <el-table-column label="关键帧时延(ms)" align="center" prop="iframeDelay" width="180" v-if="columns[8].visible"/>
      <el-table-column label="数据时间" align="center" prop="installedTime" width="180" v-if="columns[4].visible">
        <template slot-scope="scope">
          <div>{{"2023年08月03日"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="管理单位" align="center" prop="managementUnit" width="180" v-if="columns[5].visible">
        <template slot-scope="scope">
          <div>{{"运维公司甲"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="信令时延(ms)" align="center" prop="sipDelay" width="180" v-if="columns[6].visible">
        <template slot-scope="scope">
          <div>{{"100"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="视频时延(ms)" align="center" prop="videoDelay" width="180" v-if="columns[7].visible">
        <template slot-scope="scope">
          <div>{{"200"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="关键帧时延(ms)" align="center" prop="iframeDelay" width="180" v-if="columns[8].visible">
        <template slot-scope="scope">
          <div>{{"300"}}</div>
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width"  fixed="right">
          <template slot-scope="scope">
            <el-button
src/views/system/point/index.vue
@@ -47,6 +47,16 @@
          <dict-tag :options="dict.type.point_tag" :value="scope.row.pointTags" />
        </template>
      </el-table-column>
      <el-table-column label="点位开始时间" align="center" prop="startTime" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="点位结束时间" align="center" prop="endTime" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.endTime, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="运维单位" align="center" prop="unitName" />
      <el-table-column label="监管部门" align="center" prop="deptName" />
      <el-table-column label="运维类别" align="center" prop="category">
@@ -102,6 +112,11 @@
            </el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="点位时区" prop="timezone">
          <el-date-picker @change="dateChange" v-model="form.timezone" type="daterange" align="right" unlink-panels
                          range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
          </el-date-picker>
        </el-form-item>
        <el-form-item label="点位备注" prop="remark">
          <el-input type="textarea" v-model="form.remark"/>
        </el-form-item>
@@ -125,6 +140,11 @@
            </el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="运维时间段" prop="timezone">
          <el-date-picker @change="dateChange" v-model="batchEditForm.timezone" type="daterange" align="right"
                          unlink-panels range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
          </el-date-picker>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitBatchEdit">确 定</el-button>