会议号

This commit is contained in:
hanchaobo
2024-01-23 14:00:48 +08:00
parent 57a69aa3cc
commit fffdff1f94
3 changed files with 14 additions and 4 deletions
@@ -105,9 +105,9 @@ export default {
userName:item.mediatorName
})
})
await this.createRoomIdFn({
caseId:this.mediatorData.id
})
// await this.createRoomIdFn({
// caseId:this.mediatorData.id
// })
await this.updateBookingFn({
id:this.mediatorData.id,
caseFlowId:this.mediatorData.caseFlowId,
@@ -31,6 +31,7 @@
<script>
import { Message } from 'element-ui'
import { listMediator, selectReservation,confirmDate } from '@/api/caseManagement/caseManagement.js'
import { createRoomId } from '@/api/metting/metting.js'
import moment from "moment";
export default {
props: ["timeConfirmVisable", "timeConfirmData", "queryParams"],
@@ -89,8 +90,17 @@ export default {
this.$emit('getList', this.queryParams);
})
},
// 生成会议房间号
createRoomIdFn(data){
createRoomId(data).then(res=>{
console.log(res,"房间号");
})
},
/**提交选择结果*/
async submitMediator() {
this.createRoomIdFn({
caseId:this.timeConfirmData.id
})
if (this.confirmFlag == 1) {
let userArr = [];
this.tableData.forEach(item => {