|  |  |  | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <GlobalAlertWindow :title="title" :visible.sync="visible" :confirm-working="isWorking" @confirm="confirm" | 
|---|
|  |  |  | width="840px"> | 
|---|
|  |  |  | width="880px"> | 
|---|
|  |  |  | <el-form :model="form" ref="form" :rules="rules" label-width="120px" label-suffix=":"> | 
|---|
|  |  |  | <el-form-item label="关联会议室" prop="roomId"> | 
|---|
|  |  |  | <el-select v-model="form.roomId" filterable clearable :disabled="isEdit" placeholder="请选择关联会议室" | 
|---|
|  |  |  | @change="selectRoom"> | 
|---|
|  |  |  | >  @change="selectRoom" | 
|---|
|  |  |  | <el-option v-for="item in rooms()" :key="item.id" :value="item.id" :label="item.name" /> | 
|---|
|  |  |  | </el-select> | 
|---|
|  |  |  | </el-form-item> | 
|---|