修复内网测试出的问题

2024年3月12日AIBOX&ALARM
songwenxuan 2024-03-30 08:43:21 +08:00
parent 8510e9490b
commit 3962f2ac4c
5 changed files with 4 additions and 5 deletions

View File

@ -110,7 +110,7 @@
:value="item.value" :value="item.value"
/> />
</el-select> </el-select>
<el-button v-if="addForm.info.ALGO_LIMIT > addForm.info.ALGORITHM.length" type="primary" style="width: 60% ; height: 30px ;" @click="addCollateral"></el-button> <el-button v-if="addForm.info.ALGO_LIMIT > addForm.info.ALGORITHM.length" type="primary" style="width: 80% ; height: 35px ;" @click="addCollateral"></el-button>
</el-form-item> </el-form-item>
<el-col v-for="(item, index) in addForm.info.ALGORITHM" :key="item.id"> <el-col v-for="(item, index) in addForm.info.ALGORITHM" :key="item.id">

View File

@ -135,7 +135,6 @@
<div v-for="(video,index) in videoList" :key="index" style="margin-bottom: 10px;width: 45%"> <div v-for="(video,index) in videoList" :key="index" style="margin-bottom: 10px;width: 45%">
<div v-if="video.HLSVIDEOURL" :id="'aLiVideoPlayer'+index" class="prism-player"/> <div v-if="video.HLSVIDEOURL" :id="'aLiVideoPlayer'+index" class="prism-player"/>
</div> </div>
{{ video2List }}
<div v-for="(video2,index2) in video2List" :key="index2" style="margin-bottom: 10px;width: 45%"> <div v-for="(video2,index2) in video2List" :key="index2" style="margin-bottom: 10px;width: 45%">
<iframe :src="video2.VIDEOURL" width="100%" height="380" allowfullscreen allow="autoplay; fullscreen;microphone" style="position: relative;border:none"/> <iframe :src="video2.VIDEOURL" width="100%" height="380" allowfullscreen allow="autoplay; fullscreen;microphone" style="position: relative;border:none"/>
</div> </div>

View File

@ -49,7 +49,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="TYPE" label="类型" align="center"> <el-table-column prop="TYPE" label="类型" align="center">
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ row.ISONLINE === '0' ? '指标分析' : '报警源接入' }} {{ row.TYPE === '0' ? '指标分析' : '报警源接入' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="ALARM_COUNT" label="报警数" align="center"/> <el-table-column prop="ALARM_COUNT" label="报警数" align="center"/>

View File

@ -49,7 +49,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="TYPE" label="类型" align="center"> <el-table-column prop="TYPE" label="类型" align="center">
<template slot-scope="{row}"> <template slot-scope="{row}">
{{ row.ISONLINE === '0' ? '指标分析' : '报警源接入' }} {{ row.TYPE === '0' ? '指标分析' : '报警源接入' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="ALARM_COUNT" label="报警数" align="center"/> <el-table-column prop="ALARM_COUNT" label="报警数" align="center"/>

View File

@ -71,7 +71,7 @@
<td> 待填报 </td> <td> 待填报 </td>
</tr> </tr>
<tr v-show="item.IS_ALARM === '2' && item.REASON"> <tr v-show="item.IS_ALARM === '2' && item.REASON">
<td class="bbg-transparent">REASON</td> <td class="bbg-transparent">原因</td>
<td>{{ item.REASON }}</td> <td>{{ item.REASON }}</td>
</tr> </tr>
</table> </table>