BUG 26974

This commit is contained in:
aixianling
2022-01-25 16:23:40 +08:00
parent 958c7107ce
commit 2a43a20531

View File

@@ -105,10 +105,10 @@
</el-option> </el-option>
</el-select> </el-select>
</template> </template>
<!-- <template #right>--> <!-- <template #right>-->
<!-- <el-input v-model="search.param" placeholder="姓名/手机号" @change="searchMeetinguser()"--> <!-- <el-input v-model="search.param" placeholder="姓名/手机号" @change="searchMeetinguser()"-->
<!-- size="small" suffix-icon="iconfont iconSearch" clearable/>--> <!-- size="small" suffix-icon="iconfont iconSearch" clearable/>-->
<!-- </template>--> <!-- </template>-->
</ai-search-bar> </ai-search-bar>
<ai-table <ai-table
:tableData="info.attendees" :tableData="info.attendees"
@@ -223,8 +223,8 @@ export default {
} }
}, },
methods: { methods: {
toDo(){ toDo() {
this.$confirm("是否确认待定会议?").then(_=>{ this.$confirm("是否确认待定会议?").then(_ => {
this.$http.post("/app/appmeetinginfo/tobeConfirm", null, { this.$http.post("/app/appmeetinginfo/tobeConfirm", null, {
params: { params: {
meetingId: this.detail.id, meetingId: this.detail.id,
@@ -338,16 +338,12 @@ export default {
}); });
}, },
noticeMetting(meetingId) { noticeMetting(meetingUserId) {
this.instance.post(`/app/appmeetinginfo/notice`, null, this.instance.post(`/app/appmeetinginfo/notice`, null, {
{ params: {
params: { meetingId: this.detail.id, noticeALL: !meetingUserId, meetingUserId
meetingId: this.detail.id, }
noticeALL: meetingId ? false : true, }).then(res => {
meetingUserId: ''
}
}
).then(res => {
if (res && res.code == 0) { if (res && res.code == 0) {
this.$message.success("提醒成功!") this.$message.success("提醒成功!")
} }