|  |  | 
 |  |  |         v-loading="isWorking.search" | 
 |  |  |         :data="tableData.list" | 
 |  |  |         stripe | 
 |  |  |         border | 
 |  |  |         @selection-change="handleSelectionChange" | 
 |  |  |       > | 
 |  |  |         <!-- <el-table-column type="selection" width="55"></el-table-column> --> | 
 |  |  |         <el-table-column prop="id" label="唯一标识" align="center" min-width="80px" show-overflow-tooltip> | 
 |  |  |           <template slot-scope="{row}"> | 
 |  |  |             <span class="long-title-style">{{ row.id }}</span> | 
 |  |  |           </template> | 
 |  |  |         </el-table-column> | 
 |  |  |         <el-table-column prop="name" label="会议室名称" align="center" min-width="120px" show-overflow-tooltip> | 
 |  |  |           <template slot-scope="{row}"> | 
 |  |  |             <span class="long-title-style">{{ row.name }}</span> | 
 |  |  | 
 |  |  |     userList({ | 
 |  |  |       page: 1, | 
 |  |  |       capacity: 9999, | 
 |  |  |       memberType: 2, | 
 |  |  |       model: { realname: this.filterText } | 
 |  |  |     }) | 
 |  |  |       .then(res => { | 
 |  |  | 
 |  |  |           this.tableData.pagination.total = data.total | 
 |  |  |         }) | 
 |  |  |         .catch(e => { | 
 |  |  |           this.$tip.apiFailed(e) | 
 |  |  |           // this.$tip.apiFailed(e) | 
 |  |  |         }) | 
 |  |  |         .finally(() => { | 
 |  |  |           this.isWorking.search = false |