Files
dvcp_v2_wxcp_app/library/project/pidu/AppConversation/triggerAlarm.vue

110 lines
2.6 KiB
Vue
Raw Normal View History

2023-08-22 10:23:36 +08:00
<template>
<div class="triggerAlarm">
<div class="trigger-list">
<div class="item">
<div class="top">
<div class="title-flex">
<p>敏感词告警</p>
<span>2023-02-22 12:23:23</span>
</div>
<p class="item-content">群主为李白的群会话网格群14xxxx居民触发敏感词<span>法轮功</span>请及时处置</p>
</div>
<div class="bottom">
<p>查看详情</p>
<u-icon name="arrow-right" color="#999" size="28"></u-icon>
</div>
</div>
<div class="item">
<div class="top">
<div class="title-flex">
<p>敏感词告警</p>
<span>2023-02-22 12:23:23</span>
</div>
<p class="item-content">群主为李白的群会话网格群14xxxx居民触发敏感词<span>法轮功</span>请及时处置</p>
</div>
<div class="bottom">
<p>查看详情</p>
<u-icon name="arrow-right" color="#999" size="28"></u-icon>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "triggerAlarm",
data() {
return {
};
},
onShow() {
document.title = '触发告警'
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.triggerAlarm {
height: 100vh;
background-color: #F5F5F5;
.trigger-list {
padding: 32px 0 0 32px;
.item {
width: calc(100% - 32px);
background: #FFF;
border-radius: 16px;
margin-bottom: 32px;
.top {
padding: 32px;
.title-flex {
display: flex;
justify-content: space-between;
margin-bottom: 16px;
p {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 28px;
color: #000;
line-height: 28px;
}
span {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 26px;
color: #999;
line-height: 24px;
}
}
.item-content {
color: #666;
font-size: 26px;
font-family: PingFangSC;
font-weight: 400;
line-height: 40px;
span {
color: #E6736E;
}
}
}
.bottom {
display: flex;
justify-content: space-between;
padding: 24px 32px;
border-top: 1px solid #eee;
p {
font-family: PingFangSC-Regular;
font-size: 24px;
color: #666;
line-height: 24px;
}
}
}
}
}
</style>