|
@@ -21,11 +21,7 @@
|
|
|
width="150"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
- prop="lvName"
|
|
|
- label="报警等级"
|
|
|
- show-overflow-tooltip
|
|
|
- />
|
|
|
+ <el-table-column prop="lvName" label="报警等级" show-overflow-tooltip />
|
|
|
<el-table-column
|
|
|
prop="alarmName"
|
|
|
label="报警类型"
|
|
@@ -64,11 +60,7 @@
|
|
|
width="150"
|
|
|
show-overflow-tooltip
|
|
|
/>
|
|
|
- <el-table-column
|
|
|
- prop="code"
|
|
|
- label="报警设备"
|
|
|
- show-overflow-tooltip
|
|
|
- />
|
|
|
+ <el-table-column prop="code" label="报警设备" show-overflow-tooltip />
|
|
|
<el-table-column
|
|
|
prop="alarmName"
|
|
|
label="报警类型"
|
|
@@ -103,7 +95,7 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</el-card>
|
|
|
- <el-button class="confirmAllBtn" type="info" plain @click="confirmAll"
|
|
|
+ <el-button class="confirmAllBtn" type="info" plain @click="confirmAll" :disabled="!dialogTableData.length"
|
|
|
>确认所有报警</el-button
|
|
|
>
|
|
|
</el-dialog>
|
|
@@ -111,6 +103,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { confirmAlart } from "@api/api.js";
|
|
|
export default {
|
|
|
props: {
|
|
|
title: {
|
|
@@ -301,6 +294,6 @@ export default {
|
|
|
</style>
|
|
|
<style lang="scss" >
|
|
|
.alarmDialog {
|
|
|
- z-index: 5100 !important;
|
|
|
+ z-index: 1100 !important;
|
|
|
}
|
|
|
</style>
|