| | |
| | | icon="el-icon-delete" |
| | | size="mini" |
| | | @click="clearMonitor" |
| | | v-hasRole="['admin']" |
| | | >清理一机一档</el-button> |
| | | </el-col> |
| | | <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar> |
| | |
| | | <div class="item-warp"> |
| | | <div>故障类型:</div> |
| | | <div> |
| | | <el-tag style="margin-right: 5px;height:24px;overflow:auto" effect="dark" v-for="(error, index) in workOrderInfo.errorTypeList" :key="index" size="small" type="warning">{{ error }}</el-tag> |
| | | <el-tag |
| | | style="margin-right: 5px;height:24px;overflow:auto" effect="dark" |
| | | v-for="(error, index) in workOrderInfo.errorTypeList" |
| | | :key="index" size="small" |
| | | :type="error === '图像异常' |
| | | || error === '点位信息错误' |
| | | || error === '时钟偏差' |
| | | || error === 'OSD异常' |
| | | ? 'danger' : 'warning'">{{ error }} |
| | | </el-tag> |
| | | </div> |
| | | </div> |
| | | <div class="item-warp"> |
| | |
| | | placement="top" |
| | | > |
| | | <el-row> |
| | | <el-tag style="margin-right: 5px;height:24px;overflow:auto" effect="dark" v-for="(error, errorIndex) in displayedErrors(item.errorTypeList)" :key="errorIndex" size="small" type="warning"> |
| | | <el-tag |
| | | style="margin-right: 5px;height:24px;overflow:auto" effect="dark" |
| | | v-for="(error, errorIndex) in displayedErrors(item.errorTypeList)" :key="errorIndex" size="small" |
| | | :type="error === '图像异常' |
| | | || error === '点位信息错误' |
| | | || error === '时钟偏差' |
| | | || error === 'OSD异常' |
| | | ? 'danger' : 'warning'"> |
| | | {{ error }} |
| | | </el-tag> |
| | | </el-row> |