消息弹窗样式优化

yangwl
LAPTOP-R6EHHS26\86155 5 months ago
parent ff381433bf
commit edd172d74f

@ -31,26 +31,37 @@
></el-option> ></el-option>
</el-select> </el-select>
<el-tooltip content="异常处理"> <el-tooltip content="异常处理">
<span <span
class="exceptionHandling" class="exceptionHandling"
:class="{ warnTxt: (typeList && typeList.length) || 0 }" :class="{ warnTxt: (typeList && typeList.length) || 0 }"
@click="getAlarmData(true)" @click="getAlarmData(true)"
><i class="el-icon-message"></i>{{ ><i class="el-icon-message"></i
(typeList && typeList.length > 0 && typeList.length) || "" >{{ (typeList && typeList.length > 0 && typeList.length) || "" }}
}} </span>
</span>
</el-tooltip> </el-tooltip>
<el-tooltip :content="unReadComments" effect="dark" v-if="showPrise"> <el-tooltip :content="unReadComments" effect="dark" v-if="showPrise">
<el-badge :value="commentNum" class="item" style="margin-right: 10px;"> <el-badge :value="commentNum" class="item" style="margin-right: 10px">
<i class="el-icon-bell right-menu-item hover-effect" <i
style="line-height: 50px;color:#FF4D4F;font-size: 25px;padding-right: 0px;margin-top: -9px;" class="el-icon-bell right-menu-item hover-effect"
@click="gotoComment"></i> style="
line-height: 50px;
color: #ff4d4f;
font-size: 25px;
padding-right: 0px;
margin-top: -9px;
"
@click="gotoComment"
></i>
</el-badge> </el-badge>
</el-tooltip> </el-tooltip>
<el-tooltip :content="unReadComments" effect="dark" v-else> <el-tooltip :content="unReadComments" effect="dark" v-else>
<i class="el-icon-bell right-menu-item hover-effect" style="line-height: 50px;color:grey;font-size: 25px;" @click="gotoComment"></i> <i
</el-tooltip> class="el-icon-bell right-menu-item hover-effect"
style="line-height: 50px; color: grey; font-size: 25px"
@click="gotoComment"
></i>
</el-tooltip>
<screenfull id="screenfull" class="right-menu-item hover-effect" /> <screenfull id="screenfull" class="right-menu-item hover-effect" />
@ -137,6 +148,43 @@
<el-button @click="open1 = false"> </el-button> <el-button @click="open1 = false"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
<!-- 消息弹窗 -->
<el-dialog
title="消息提示"
:visible.sync="dialogVisible"
width="40%"
:before-close="handleClose"
class="messagedialog"
>
<div class="message">
<div class="messagelist">
<div class="itemlist" v-for="(item,index) in commentNum" :key="index" >
<!-- <div class="timetip">2024-04-24 08:00:00</div> -->
<div class="item">
<div class="titilebox">
<div class="title">工单未开始超时提醒</div>
<div class="subtitle">上位机未及时执行工单的开始动作</div>
</div>
<div class="elcollapse">
<el-collapse accordion>
<el-collapse-item>
<template slot="title">
间读详情
</template>
<div>
与现实生活一致与现实生活的流程逻辑保持一致遵循用户习惯的语言和概念
</div>
<div>
在界面中一致所有的元素和结构需保持一致比如设计样式图标和文本元素的位置等
</div>
</el-collapse-item>
</el-collapse>
</div>
</div>
</div>
</div>
</div>
</el-dialog>
</div> </div>
</template> </template>
@ -150,7 +198,7 @@ import SizeSelect from "@/components/SizeSelect";
import Search from "@/components/HeaderSearch"; import Search from "@/components/HeaderSearch";
import RuoYiGit from "@/components/RuoYi/Git"; import RuoYiGit from "@/components/RuoYi/Git";
import RuoYiDoc from "@/components/RuoYi/Doc"; import RuoYiDoc from "@/components/RuoYi/Doc";
import { getUnReadComment} from '@/api/plan/workorder'; import { getUnReadComment } from "@/api/plan/workorder";
import { import {
listNotice, listNotice,
getNotice, getNotice,
@ -160,6 +208,7 @@ import {
} from "@/api/system/notice"; } from "@/api/system/notice";
//import { listData, editAlarmStatus } from "@/api/energy/exception/data.js"; //import { listData, editAlarmStatus } from "@/api/energy/exception/data.js";
import { changePoolName } from "@/api/system/user"; import { changePoolName } from "@/api/system/user";
import Index from "./TagsView/index.vue";
export default { export default {
dicts: ["alarmType", "alarmStatus"], dicts: ["alarmType", "alarmStatus"],
data() { data() {
@ -178,9 +227,11 @@ export default {
// //
multiple1: true, multiple1: true,
showPrise: false, showPrise: false,
unReadComments: '您有0新的未读消息请点击查看', unReadComments: "您有0新的未读消息请点击查看",
commentNum:0, commentNum: 0,
queryParams:{} queryParams: {},
dialogVisible: false,
messagedata:[],
}; };
}, },
created() { created() {
@ -196,7 +247,7 @@ export default {
// //
this.timer = setInterval(() => { this.timer = setInterval(() => {
setTimeout(this.getUnReadList(), 30000); setTimeout(this.getUnReadList(), 30000);
}, 30000); }, 30000);
}, },
components: { components: {
Breadcrumb, Breadcrumb,
@ -245,6 +296,9 @@ export default {
[this.$createElement("el-button", {}, ["点击查看"])] [this.$createElement("el-button", {}, ["点击查看"])]
), ),
}); });
},
handleClose(){
}, },
// //
editAlarmStatus() { editAlarmStatus() {
@ -307,21 +361,23 @@ export default {
/** 获取未读消息数 */ /** 获取未读消息数 */
getUnReadList() { getUnReadList() {
console.log("++未读消息查询++"); console.log("++未读消息查询++");
getUnReadComment(this.queryParams).then(response => { getUnReadComment(this.queryParams).then((response) => {
if(response>0){ if (response > 0) {
this.unReadComments='您有'+response+'新的未读消息,请点击查看'; this.unReadComments = "您有" + response + "新的未读消息,请点击查看";
this.commentNum = response; this.commentNum = response;
console.log(response,'ssssss',)
this.showPrise = true; this.showPrise = true;
}else{ } else {
this.showPrise = false; this.showPrise = false;
} }
}); });
}, },
/** 跳转到【消息】 */ /** 跳转到【消息】 */
gotoComment() { gotoComment() {
alert("301") // alert("301");
this.showPrise = false; this.showPrise = false;
} this.dialogVisible = true;
},
}, },
}; };
</script> </script>
@ -350,7 +406,7 @@ export default {
background: #fff; background: #fff;
box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
.exceptionHandling { .exceptionHandling {
/* line-height: 50px; /* line-height: 50px;
display: inline-block; display: inline-block;
color: black;*/ color: black;*/
vertical-align: text-bottom; vertical-align: text-bottom;
@ -436,4 +492,50 @@ export default {
} }
} }
} }
.messagedialog {
.message {
height: 400px;
background-color: #f9f9f9;
.messagelist {
padding-top: 10px;
.itemlist {
width: 85%;
margin: auto;
.timetip {
text-align: center;
margin-bottom: 10px;
}
.item {
border: 1px solid #eeeeee;
width: 100%;
padding: 10px;
background-color: #ffffff;
border-radius: 2px;
box-shadow: 0px 0px 0px 2px #f1f1f1;
.titilebox {
margin-bottom: 30px;
.title {
font-size: 18px;
margin-bottom: 5px;
}
.subtitle {
font-size: 16px;
margin-bottom: 5px;
}
}
}
}
}
}
}
::v-deep .messagedialog .el-dialog__body {
padding: 0;
}
::v-deep .messagedialog .el-dialog__header {
border-bottom: 1px solid #eeeeee;
}
::v-deep .messagedialog .el-collapse-item__header {
border-bottom: none;
line-height: 32px;
}
</style> </style>

Loading…
Cancel
Save