fix:修复图表 最大值取错值的问题 依旧修改SNMP MIB 下拉样式错乱的问提

This commit is contained in:
zhangyu
2021-03-24 14:39:37 +08:00
parent 5fb0d4d844
commit 5c4b22e582
6 changed files with 22 additions and 24 deletions

View File

@@ -77,7 +77,7 @@
<template slot-scope="scope" :column="item">
<div v-if="item.prop == 'option'" class="content-right-options">
<span :id="'alert-edit-'+scope.row.id" :title="$t('overall.edit')" @click.stop="edit(scope.row)"
class="content-right-option" v-has="'expr_temp_update'">
class="content-right-option" v-has="'expr_temp_update'" v-if="scope.row.buildIn !== 1">
<i class="nz-icon nz-icon-edit"></i>
</span>
<span
@@ -85,7 +85,8 @@
:title="$t('overall.delete')"
@click="del(scope.row)"
class="content-right-option"
v-has="'expr_temp_delete'">
v-has="'expr_temp_delete'"
v-if="scope.row.buildIn !== 1">
<i class="nz-icon nz-icon-delete"></i>
</span>
<span