合并代码
This commit is contained in:
@@ -1,34 +1,22 @@
|
||||
<template>
|
||||
<div class="account_newFollow">
|
||||
<div class="account_newFollow_title modal_title_text">
|
||||
新增粉丝
|
||||
<div class="account_generalMessage_title modal_title_text">
|
||||
<span>新增粉丝</span>
|
||||
<div class="account_generalMessage_title_setting" @click="allRead">全部已读</div>
|
||||
</div>
|
||||
<div class="account_newFollow_center modal_title_text">
|
||||
<div class="account_newFollow_item">
|
||||
<div class="account_newFollow_item_right">
|
||||
<div class="account_newFollow_item_right_img">
|
||||
<div class="account_generalMessage_center modal_title_text">
|
||||
<div class="account_generalMessage_item" v-for="item in dataList" :key="item.id" @click="setRead(item)">
|
||||
<a-badge :dot="item.isRead == 0"></a-badge>
|
||||
<div class="account_generalMessage_item_right">
|
||||
<div class="account_generalMessage_item_right_img">
|
||||
<img src="https://gw.alipayobjects.com/zos/antfincdn/XAosXuNZyF/BiazfanxmamNRoxxVxka.png" alt="">
|
||||
</div>
|
||||
<div class="account_newFollow_item_right_title">
|
||||
<div class="">名字</div>
|
||||
<div class="modal_title_text_intro">2024-01-01 12:00:00 关注了你</div>
|
||||
<div class="account_generalMessage_item_right_title">
|
||||
<div class="">{{ item.senderUserName }}</div>
|
||||
<div class="modal_title_text_intro">{{ item.createTime }} 关注了你</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account_newFollow_item_left">
|
||||
<div>回关</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account_newFollow_item">
|
||||
<div class="account_newFollow_item_right">
|
||||
<div class="account_newFollow_item_right_img">
|
||||
<img src="https://gw.alipayobjects.com/zos/antfincdn/XAosXuNZyF/BiazfanxmamNRoxxVxka.png" alt="">
|
||||
</div>
|
||||
<div class="account_newFollow_item_right_title">
|
||||
<div class="">名字</div>
|
||||
<div class="modal_title_text_intro">2024-01-01 12:00:00 关注了你</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="account_newFollow_item_left">
|
||||
<div class="account_generalMessage_item_left">
|
||||
<div>回关</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -46,47 +34,33 @@ import { useI18n } from 'vue-i18n'
|
||||
export default defineComponent({
|
||||
components:{
|
||||
},
|
||||
setup() {
|
||||
emits:['setReadStatus','setAllmessage'],
|
||||
setup(prop,{emit}) {
|
||||
const router = useRouter()
|
||||
const store = useStore();
|
||||
let accountMessage = reactive({
|
||||
activeKey: ref('1'),
|
||||
followList:ref([
|
||||
{
|
||||
name:'张三',
|
||||
avatar:'https://gw.alipayobjects.com/zos/antfincdn/XAosXuNZyF/BiazfanxmamNRoxxVxka.png',
|
||||
time:'2024-01-01 12:00:00',
|
||||
content:'关注了你',
|
||||
isRead:false
|
||||
},
|
||||
{
|
||||
name:'李四',
|
||||
avatar:'https://gw.alipayobjects.com/zos/antfincdn/XAosXuNZyF/BiazfanxmamNRoxxVxka.png',
|
||||
}
|
||||
dataList:ref([
|
||||
|
||||
])
|
||||
})
|
||||
// let ws = new WebSocket('ws://127.0.0.1:3000')
|
||||
// console.log(ws);
|
||||
|
||||
// ws.onopen = ()=>{
|
||||
// console.log(222);
|
||||
// let data = {
|
||||
// cmd:4,
|
||||
// data:{
|
||||
// msg:'222'
|
||||
// }
|
||||
// }
|
||||
// ws.send(JSON.stringify(data))
|
||||
// // ws.onmessage = (data)=>{
|
||||
// // console.log(data);
|
||||
// // }
|
||||
// }
|
||||
// provide('exhibitionList',exhibitionList)
|
||||
|
||||
let setmessageList = (data:any)=>{
|
||||
accountMessage.dataList = data.content
|
||||
}
|
||||
let setRead = (item:any)=>{
|
||||
emit('setReadStatus',item)
|
||||
item.isRead = 1
|
||||
}
|
||||
let allRead = ()=>{
|
||||
emit('setAllmessage')
|
||||
}
|
||||
onMounted (()=>{
|
||||
})
|
||||
return{
|
||||
...toRefs(accountMessage),
|
||||
setmessageList,
|
||||
setRead,
|
||||
allRead
|
||||
}
|
||||
},
|
||||
data(){
|
||||
@@ -99,35 +73,12 @@ export default defineComponent({
|
||||
<style lang="less" scoped>
|
||||
.account_newFollow{
|
||||
width: 100%;
|
||||
.account_newFollow_title{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 2rem 5rem;
|
||||
border-bottom: 1px solid #e9eaec;
|
||||
box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.12);
|
||||
border: 1px solid #e9eaec;
|
||||
border-radius: 5px;
|
||||
.account_newFollow_title_setting{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.account_newFollow_center{
|
||||
box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.12);
|
||||
border: 1px solid #e9eaec;
|
||||
border-radius: 5px;
|
||||
padding: 2rem 5rem;
|
||||
.account_newFollow_item{
|
||||
display: flex;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 2rem 0;
|
||||
border-bottom: 1px solid #e9eaec;
|
||||
.account_newFollow_item_right{
|
||||
.account_generalMessage_center{
|
||||
.account_generalMessage_item{
|
||||
.account_generalMessage_item_right{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.account_newFollow_item_right_img{
|
||||
.account_generalMessage_item_right_img{
|
||||
width: 8rem;
|
||||
height: 8rem;
|
||||
margin-right: 2rem;
|
||||
@@ -139,7 +90,7 @@ export default defineComponent({
|
||||
}
|
||||
}
|
||||
}
|
||||
.account_newFollow_item_left{
|
||||
.account_generalMessage_item_left{
|
||||
div{
|
||||
padding: .5rem 2rem;
|
||||
border-radius: 4rem;
|
||||
@@ -148,7 +99,7 @@ export default defineComponent({
|
||||
}
|
||||
}
|
||||
}
|
||||
.account_newFollow_item:last-child{
|
||||
.account_generalMessage_item:last-child{
|
||||
margin-bottom: 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user