qa-prevention-gwj-vue/src/views/emergen_cyrescue/emergency_map/components/sysChat.vue

184 lines
4.2 KiB
Vue
Raw Normal View History

<template>
<div class="sys_chat_container">
2024-08-08 18:09:38 +08:00
<div v-for="(item, ind) in chatData" :key="ind" class="chat_body">
<p class="chat_title">{{ item.info.MESS }}</p>
<p v-for="(answer, indx) in item.list" :key="indx" :class="{ 'ready': answer.READ_STATUS === '1'}" class="chat_item">
<span v-if="answer.IDENT_SIGN === '1'" class="chat_item_head">{{ answer.SEND_MEN_NAME + ' :' }} </span>
2024-08-08 18:09:38 +08:00
<span v-if="answer.IDENT_SIGN === '1'" class="chat_item_content">{{ answer.MESS }}</span>
<span v-if="answer.IDENT_SIGN === '2'" class="chat_item_head">{{ answer.RECEIVED_MEN_NAME + ' :' }}</span>
<span v-if="answer.READ_STATUS === '1' && answer.IDENT_SIGN !== '1'" class="chat_ready"></span>
<span v-if="answer.READ_STATUS === '0' && answer.IDENT_SIGN !== '1'" class="chat_ready"></span>
<span v-if="answer.READ_STATUS === '1' && answer.IDENT_SIGN === '1'" class="chat_ready"></span>
<span v-if="answer.READ_STATUS === '0' && answer.IDENT_SIGN === '1'" class="chat_ready" @click="confirmReceipt(answer)"></span>
2024-08-08 18:09:38 +08:00
</p>
</div>
<div class="order">
<button @click="sendOrderBtn"></button>
</div>
</div>
</template>
<script>
import { requestFN } from '@/utils/request'
export default {
props: {
chatData: {
type: Array,
required: true
}
},
data() {
return {}
},
mounted() {
console.log(this.chatData, 'this.chatData')
},
methods: {
sendOrderBtn() {
2024-08-12 15:10:06 +08:00
this.$emit('orderMessage', '')
},
confirmReceipt(answer) {
requestFN('/bi/emergency/readInstruct', { ID: answer.ID })
.then((data) => {
this.$message({
message: '确认已收到指令',
type: 'success'
})
this.$emit('reFlush', '')
}).catch((error) => {
console.log(error)
})
}
}
}
</script>
<style scoped lang="scss">
.sys_chat_container {
box-sizing: border-box;
display: flex;
flex-direction: column;
gap: 8px;
padding: 12px;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
2024-08-08 18:09:38 +08:00
&::-webkit-scrollbar {
display: none;
}
2024-08-08 18:09:38 +08:00
color: #ffffff;
font-size: 15px;
position: relative;
& > h5, p, span {
padding: 0;
margin: 0;
}
.chat_body {
border-radius: 6px;
background: #0021649c;
width: 100%;
padding: 6px 0 0 18px;
.chat_title {
font-size: 16px;
padding: 8px 0;
}
.chat_content {
position: relative;
color: rgb(255, 255, 255);
// 小圆点伪类样式
&::before {
content: "";
display: block;
width: 8px;
height: 8px;
background-color: rgb(255, 0, 0);
position: absolute;
left: -12px;
top: 5px;
border-radius: 50%;
}
}
.chat_content.ready::before {
background-color: rgb(19, 223, 0);
}
.chat_item {
padding: 10px 0;
position: relative;
border-bottom: 1px solid rgb(15 57 123);
// 小圆点伪类样式
&::before {
content: "";
display: block;
width: 8px;
height: 8px;
background-color: rgb(255, 0, 0);
position: absolute;
left: -12px;
top: 14px;
border-radius: 50%;
}
.chat_item_head {
color: #ffffff;
}
.chat_item_content {
font-size: 14px;
}
.chat_ready {
margin-left: 3px;
font-size: 12px;
background-color: #2b82cd;
color: #ffffff;
display: inline-block;
padding: 3px;
justify-content: center;
align-items: center;
border-radius: 4px;
}
}
.chat_item.ready::before {
background-color: rgb(19, 223, 0);
}
& > p:last-child {
border-bottom: none;
}
}
.order {
position: fixed;
bottom: 25px;
right: 25px;
2024-08-08 18:09:38 +08:00
& > button {
transition: all ease-in-out .3s;
cursor: pointer;
padding: 7px;
border-radius: 3px;
border: none;
background-color: #5f78ff47;
color: #fff;
2024-08-08 18:09:38 +08:00
font-weight: 600;
backdrop-filter: blur(16px);
&:hover {
background-color: #5f77ff75;
}
2024-08-08 18:09:38 +08:00
}
}
}
</style>