This commit is contained in:
yanran200730
2022-01-25 17:03:42 +08:00

View File

@@ -338,16 +338,12 @@ export default {
});
},
noticeMetting(meetingId) {
this.instance.post(`/app/appmeetinginfo/notice`, null,
{
noticeMetting(meetingUserId) {
this.instance.post(`/app/appmeetinginfo/notice`, null, {
params: {
meetingId: this.detail.id,
noticeALL: meetingId ? false : true,
meetingUserId: ''
meetingId: this.detail.id, noticeALL: !meetingUserId, meetingUserId
}
}
).then(res => {
}).then(res => {
if (res && res.code == 0) {
this.$message.success("提醒成功!")
}