|  |  |  | 
|---|
|  |  |  | <el-option v-for="item in status" :key="item.id" :value="item.id" :label="item.name" /> | 
|---|
|  |  |  | </el-select> | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <el-form-item label="会议时间" prop="startTime"> | 
|---|
|  |  |  | <el-form-item label="起止时间" prop="startTime"> | 
|---|
|  |  |  | <el-date-picker | 
|---|
|  |  |  | v-model="date" | 
|---|
|  |  |  | type="datetimerange" | 
|---|
|  |  |  | 
|---|
|  |  |  | if (e === '0') { | 
|---|
|  |  |  | this.searchForm.startTime = timeForMat(0)[0] | 
|---|
|  |  |  | this.searchForm.endTime = timeForMat(0)[1] | 
|---|
|  |  |  | this.time = timeForMat(0) | 
|---|
|  |  |  | this.date = timeForMat(0) | 
|---|
|  |  |  | } else if (e === '1') { | 
|---|
|  |  |  | this.searchForm.startTime = timeForMat(6)[0] | 
|---|
|  |  |  | this.searchForm.endTime = timeForMat(6)[1] | 
|---|
|  |  |  | this.time = timeForMat(6) | 
|---|
|  |  |  | this.date = timeForMat(6) | 
|---|
|  |  |  | } else if (e === '2') { | 
|---|
|  |  |  | this.searchForm.startTime = timeForMat(29)[0] | 
|---|
|  |  |  | this.searchForm.endTime = timeForMat(29)[1] | 
|---|
|  |  |  | this.time = timeForMat(29) | 
|---|
|  |  |  | this.date = timeForMat(29) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | this.search() | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | 
|---|
|  |  |  | this.searchForm.radio = '0' | 
|---|
|  |  |  | this.searchForm.startTime = '' | 
|---|
|  |  |  | this.searchForm.endTime = '' | 
|---|
|  |  |  | this.search() | 
|---|
|  |  |  | this.changeRadio('0') | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | copy (row) { | 
|---|
|  |  |  | const text = `${row.realName} 邀请您加入会议\n会议主题:${row.name}\n会议室:${row.roomName}\n会议时间:${row.meetingTime}\n点击链接直接加入会议:\n${this.link}?id=${row.id}` | 
|---|