2024-08-03 12:33:25 +08:00
|
|
|
<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">
|
2024-08-09 14:48:10 +08:00
|
|
|
<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>
|
2024-08-09 14:48:10 +08:00
|
|
|
<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>
|
2024-08-03 12:33:25 +08:00
|
|
|
</div>
|
|
|
|
<div class="order">
|
|
|
|
<button @click="sendOrderBtn">发送指令</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2024-08-09 14:48:10 +08:00
|
|
|
import { requestFN } from '@/utils/request'
|
2024-08-03 12:33:25 +08:00
|
|
|
export default {
|
|
|
|
|
|
|
|
props: {
|
|
|
|
chatData: {
|
|
|
|
type: Array,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
console.log(this.chatData, 'this.chatData')
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
sendOrderBtn() {
|
|
|
|
this.$emit('orderMessage')
|
2024-08-09 14:48:10 +08:00
|
|
|
},
|
|
|
|
confirmReceipt(answer) {
|
|
|
|
requestFN('/bi/emergency/readInstruct', { ID: answer.ID })
|
|
|
|
.then((data) => {
|
|
|
|
this.$message({
|
|
|
|
message: '确认已收到指令',
|
|
|
|
type: 'success'
|
|
|
|
})
|
|
|
|
this.$emit('reFlush', '')
|
|
|
|
}).catch((error) => {
|
|
|
|
console.log(error)
|
|
|
|
})
|
2024-08-03 12:33:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</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
|
|
|
|
2024-08-03 12:33:25 +08:00
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-08-08 18:09:38 +08:00
|
|
|
|
2024-08-03 12:33:25 +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 {
|
2024-08-09 14:48:10 +08:00
|
|
|
color: #ffffff;
|
2024-08-03 12:33:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
2024-08-03 12:33:25 +08:00
|
|
|
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);
|
2024-08-03 12:33:25 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #5f77ff75;
|
|
|
|
}
|
2024-08-08 18:09:38 +08:00
|
|
|
}
|
2024-08-03 12:33:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|