|
@@ -52,16 +52,22 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="算法名称" align="center" prop="algorithmName" />
|
|
<el-table-column label="算法名称" align="center" prop="algorithmName" />
|
|
- <el-table-column label="是否报警" align="center" prop="isAlarm">
|
|
|
|
- <template scope="scope">
|
|
|
|
- <p v-if="scope.row.isAlarm=='0'">否</p>
|
|
|
|
- <p v-if="scope.row.isAlarm=='1'">是</p>
|
|
|
|
- </template>
|
|
|
|
|
|
+ <el-table-column label="原始图" width="150">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <img :src="scope.row.originalImg" width="120" style="cursor:pointer;" height="80" class="img" @click="imgBigBox(scope.row)"/>
|
|
|
|
+ </template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="首次报警时间" align="center" prop="createTime" />
|
|
|
|
- <el-table-column label="首次报警" width="150">
|
|
|
|
|
|
+ <el-table-column label="请求时间" align="center" prop="createTime" />
|
|
|
|
+ <el-table-column label="识别结果" width="150">
|
|
|
|
+ <template scope="scope">
|
|
|
|
+ <img :src="scope.row.algorithmResult" width="120" style="cursor:pointer;" height="80" class="img" @click="imgBigBox(scope.row)"/>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="响应时间" align="center" prop="updateTime" />
|
|
|
|
+ <el-table-column label="是否报警" align="center" prop="isAlarm">
|
|
<template scope="scope">
|
|
<template scope="scope">
|
|
- <img :src="scope.row.algorithmResult" width="120" style="cursor:pointer;" height="80" class="img" @click="imgBigBox(scope.row)"/>
|
|
|
|
|
|
+ <p v-if="scope.row.isAlarm=='0'">否</p>
|
|
|
|
+ <p v-if="scope.row.isAlarm=='1'">是</p>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|