|  |  |  | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column | 
|---|
|  |  |  | prop="workingNum" | 
|---|
|  |  |  | label="同时作业车辆数" | 
|---|
|  |  |  | label="同时叫号数量" | 
|---|
|  |  |  | min-width="100" | 
|---|
|  |  |  | show-overflow-tooltip | 
|---|
|  |  |  | /> | 
|---|
|  |  |  | <el-table-column | 
|---|
|  |  |  | prop="callReadyNum" | 
|---|
|  |  |  | label="同时准备数量" | 
|---|
|  |  |  | min-width="100" | 
|---|
|  |  |  | show-overflow-tooltip | 
|---|
|  |  |  | /> | 
|---|
|  |  |  | 
|---|
|  |  |  | format="HH:mm" | 
|---|
|  |  |  | /> | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <el-form-item label="同时作业车辆数"> | 
|---|
|  |  |  | <el-form-item label="同时叫号数量"> | 
|---|
|  |  |  | <el-input v-model="param.workingNum" class="w300"></el-input> | 
|---|
|  |  |  | <span class="ml10">个</span> | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <el-form-item label="同时准备数量"> | 
|---|
|  |  |  | <el-input v-model="param.callReadyNum" class="w300"></el-input> | 
|---|
|  |  |  | <span class="ml10">个</span> | 
|---|
|  |  |  | </el-form-item> | 
|---|
|  |  |  | <el-form-item label="停留超时报警时间"> | 
|---|
|  |  |  | 
|---|
|  |  |  | import Pagination from '@/components/common/Pagination' | 
|---|
|  |  |  | import QueryForm from '@/components/common/QueryForm' | 
|---|
|  |  |  | import GlobalWindow from '@/components/common/GlobalWindow' | 
|---|
|  |  |  | import { getPlatform, PlatformEdit, PlatformDel } from '@/api' | 
|---|
|  |  |  | // import { getPlatform, PlatformEdit, PlatformDel } from '@/api' | 
|---|
|  |  |  | import { PlatformEdit, PlatformDel } from '@/api' | 
|---|
|  |  |  | export default { | 
|---|
|  |  |  | components: { | 
|---|
|  |  |  | Pagination, | 
|---|
|  |  |  | 
|---|
|  |  |  | getList (page) { | 
|---|
|  |  |  | const { filters, pagination } = this | 
|---|
|  |  |  | pagination.page = page || pagination.page | 
|---|
|  |  |  | getPlatform({ | 
|---|
|  |  |  | model: { ...filters }, | 
|---|
|  |  |  | ...pagination | 
|---|
|  |  |  | }).then(res => { | 
|---|
|  |  |  | this.dataList = res.records | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | // getPlatform({ | 
|---|
|  |  |  | //   model: { ...filters }, | 
|---|
|  |  |  | //   ...pagination | 
|---|
|  |  |  | // }).then(res => { | 
|---|
|  |  |  | //   this.dataList = res.records | 
|---|
|  |  |  | // }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | handleDel (item) { | 
|---|
|  |  |  | this.$confirm('确定删除该月台吗, 是否继续?', '提示', { | 
|---|
|  |  |  | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | handleSizeChange (capacity) { | 
|---|
|  |  |  | this.pagination.capacity = capacity | 
|---|
|  |  |  | this.getList(1) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|