|
@ -8,8 +8,8 @@ |
|
|
<Descriptions labelWidth="72px" :list="list" :data="data" style="gap: 18px" column="7" /> |
|
|
<Descriptions labelWidth="72px" :list="list" :data="data" style="gap: 18px" column="7" /> |
|
|
</div> |
|
|
</div> |
|
|
<div class="foote"> |
|
|
<div class="foote"> |
|
|
<Button @click.native="handleEventRelieve" style="width: 100px;"> |
|
|
<Button @click.native="handleEventRelieve" style="width: 100px;" v-if="data.eventState == '0'"> |
|
|
事件解除 |
|
|
误报 |
|
|
</Button> |
|
|
</Button> |
|
|
<Button @click.native="goDispatch" style="width: 100px;"> |
|
|
<Button @click.native="goDispatch" style="width: 100px;"> |
|
|
设备管控 |
|
|
设备管控 |
|
@ -146,7 +146,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
handleEventRelieve() { |
|
|
handleEventRelieve() { |
|
|
|
|
|
|
|
|
this.$confirm("确定解除事件吗?", "提示", { |
|
|
this.$confirm("确定事件误报吗?", "提示", { |
|
|
confirmButtonText: "确定", |
|
|
confirmButtonText: "确定", |
|
|
cancelButtonText: "取消", |
|
|
cancelButtonText: "取消", |
|
|
type: "warning", |
|
|
type: "warning", |
|
@ -157,7 +157,7 @@ export default { |
|
|
postCompleteEvent(data).then((result) => { |
|
|
postCompleteEvent(data).then((result) => { |
|
|
console.log('--------', result) |
|
|
console.log('--------', result) |
|
|
if (result.code != 200) return []; |
|
|
if (result.code != 200) return []; |
|
|
this.$message.success("事件解除成功"); |
|
|
this.$message.success("成功"); |
|
|
this.$emit('traffic-relieve', this.data); |
|
|
this.$emit('traffic-relieve', this.data); |
|
|
}); |
|
|
}); |
|
|
}) |
|
|
}) |
|
@ -217,6 +217,7 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.foote { |
|
|
.foote { |
|
|
display: flex; |
|
|
display: flex; |
|
|
align-items: center; |
|
|
align-items: center; |
|
|