This commit is contained in:
2025-07-07 16:17:59 +08:00
parent d7862aa6b9
commit f173a1e1f3

View File

@ -28,7 +28,7 @@
<div class="left"> <div class="left">
<div class="title ellipsis">参会人员{{ item.chry }}</div> <div class="title ellipsis">参会人员{{ item.chry }}</div>
<div class="desc"> <div class="desc">
<div class="info ellipsis" v-for="(el, i) in item.cqcs" :key="i">{{ i + 1 }}.{{ el }}</div> <div class="info ellipsis" v-for="(el, i) in item.xsplList" :key="i">{{ i + 1 }}{{ el.plnr }}</div>
</div> </div>
</div> </div>
<div class="right"> <div class="right">
@ -151,23 +151,21 @@ import * as MOSTY from "@/components/MyComponents/index";
}).catch(()=>{ pageData.loading = false; }) }).catch(()=>{ pageData.loading = false; })
}; };
// 提交评论
const handleSumbit = (item) => { const handleSumbit = (item) => {
if (!comments.value) { if (!comments.value) return proxy.$message({ type: "warning", message: "评论内容不能为空" });
return proxy.$message({ type: "warning", message: "评论内容不能为空" });
}
item.visible = false; // 关闭评论弹窗
// 这里可以添加评论提交的逻辑
proxy.$message({ type: "success", message: "评论已发送" }); proxy.$message({ type: "success", message: "评论已发送" });
qcckPost({id:item.id,plnr:comments.value},'/mosty-gsxt/wshs/addWshyPl').then((res)=>{
getList();
item.visible = false; // 关闭评论弹窗
comments.value = ''; // 清空评论内容 comments.value = ''; // 清空评论内容
})
}; };
// 加入会议
const joinMeeting = (item) => { const joinMeeting = (item) => {
qcckPost({id:item.id},'/mosty-gsxt/wshs/addWshyRy').then((res)=>{ qcckPost({id:item.id},'/mosty-gsxt/wshs/addWshyRy').then((res)=>{
console.log(res); getList();
}) })
// proxy.$message({
// type: "info",
// message: `加入会议:${item.hsbt}`,
// });
}; };
// 删除 // 删除