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