|
@@ -118,6 +118,7 @@ import { TipelineItem } from '../../lib/items/TipelineItem'
|
|
|
import { SImageLegendItem } from '../../lib/items/SImageLegendItem'
|
|
|
import equipDetail from '../../views/equipment/table/equipDetail'
|
|
|
import { debounce } from 'lodash'
|
|
|
+import { Message } from 'element-ui'
|
|
|
// import { uuid } from "@/components/mapClass/until";
|
|
|
|
|
|
export default {
|
|
@@ -156,7 +157,7 @@ export default {
|
|
|
showBtnWell: false,
|
|
|
count: 0, // 顶楼为多张图时计数器
|
|
|
equipKey: 1, //设备弹窗使用key值,解决打开弹窗数据为上次弹窗的数据
|
|
|
- statusDisabled: ['停用', '已拆除'], //显示红色的设备状态
|
|
|
+ statusDisabled: ['已拆除'], //禁止跳转的设备状态
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
@@ -235,19 +236,27 @@ export default {
|
|
|
},
|
|
|
// 查看浮层设备详情
|
|
|
handleClickEquipDetail: debounce(function (row, column, event) {
|
|
|
+ window.vmm = this
|
|
|
// 设备状态为停用或已拆除时,弹出消息
|
|
|
if (this.statusDisabled.includes(row?.sb_status)) {
|
|
|
- let message = `当前设备为“${row.sb_status}”状态,请前往编辑器重新编辑`
|
|
|
+ let message = `当前设备状态为“${row.sb_status}”,请复核现场情况,如有需要请前往编辑器删除。` // `当前设备为“${row.sb_status}”状态,请前往编辑器重新编辑`
|
|
|
// 防止出现多条message
|
|
|
// 已经有 message时,并且this.message的message字段与message一致时, 不进行提示
|
|
|
if (this.message && this.message.visible && this.message.message === message) {
|
|
|
return true
|
|
|
}
|
|
|
-
|
|
|
- this.message = this.$message({
|
|
|
+ this.message = Message({
|
|
|
+ showClose: true,
|
|
|
message,
|
|
|
type: 'warning',
|
|
|
+ duration: 0,
|
|
|
+ iconClass: 'el-icon-warning-outline',
|
|
|
+ customClass: 'floor-map-warning',
|
|
|
})
|
|
|
+ // this.message = this.$message({
|
|
|
+ // message,
|
|
|
+ // type: 'warning',
|
|
|
+ // })
|
|
|
return true
|
|
|
}
|
|
|
if (row.assetnum) {
|
|
@@ -757,6 +766,11 @@ export default {
|
|
|
}
|
|
|
this.showStatusText = false
|
|
|
this.statusText = ''
|
|
|
+ // 关闭message提示
|
|
|
+ if (this.message) {
|
|
|
+ this.message.close()
|
|
|
+ this.message = null
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
/**
|
|
@@ -923,4 +937,18 @@ a:hover {
|
|
|
text-decoration: line-through;
|
|
|
}
|
|
|
}
|
|
|
+// 警告message样式修改
|
|
|
+.floor-map-warning {
|
|
|
+ background-color: #ffa53d;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+ /deep/ .el-icon-warning-outline {
|
|
|
+ font-weight: 600 !important;
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+ /deep/.el-icon-close {
|
|
|
+ color: #fff;
|
|
|
+ opacity: 0.5;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|