zxl
8 天以前 e0fa52615c6e284abee8cfec93908a6095eaf006
录像扣分页面调整新增内容
2个文件已修改
19 ■■■■ 已修改文件
src/views/system/check/demeritRecord/index.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/work-order/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/check/demeritRecord/index.vue
@@ -51,18 +51,18 @@
          {{ formatDemerit(scope.row.demerit) }}
        </template>
      </el-table-column>
      <el-table-column prop="videoOnlineRate" label="在线率" align="center" min-width="200">
        <template slot-scope="scope">
          {{ formatDemeritRate(scope.row.videoOnlineRate) }}
        </template>
      </el-table-column>
      <el-table-column prop="recordTime" label="日期" align="center" min-width="200">
        <template slot-scope="scope">
          <!-- recordTime格式为 "yyyy-MM-dd HH:mm:ss",通过split截取日期部分 -->
          {{ scope.row.recordTime ? scope.row.recordTime.split(' ')[0] : '-' }}
        </template>
      </el-table-column>
      <el-table-column prop="videoOnlineRate" label="在线率" align="center" min-width="200">
        <template slot-scope="scope">
          {{ formatDemeritRate(scope.row.videoOnlineRate) }}
        </template>
      </el-table-column>
      <el-table-column prop="action" label="操作" align="=center">
        <template slot-scope="scope">
          <el-button type="primary" size="mini" @click="exportInfo(scope.row)">导出详情</el-button>
@@ -180,8 +180,8 @@
        this.queryParams.monthDate = null;
        if (this.queryParams.dayDate && this.queryParams.dayDate.length === 2) {
          this.queryParams.dayStart = this.queryParams.dayDate[0];
          this.queryParams.dayEnd = this.queryParams.dayDate[1];
          this.queryParams.dayStart = this.queryParams.dayDate[0] +" 00:00:00";
          this.queryParams.dayEnd = this.queryParams.dayDate[1]+" 23:59:59";
        }
        from = {
          searchType: this.queryParams.searchType,
src/views/system/work-order/index.vue
@@ -99,7 +99,8 @@
          v-hasPermi="['work:order:delete']"
        >删除
        </el-button>
        <el-button size="mini" plain type="primary" @click="selectedDistribute" class="op">批量上报</el-button>
        <el-button size="mini" plain type="primary" @click="selectedDistribute" class="op"
                   v-hasPermi="['work:order:condition:add']">批量上报</el-button>
      </el-col>
    </el-row>