| | |
| | | <template> |
| | | <div class="main_app"> |
| | | <QueryForm v-model="filters" :query-form-config="queryFormConfig" @handleQuery="getList(1)" @clear="clear" /> |
| | | <el-table v-loading="loading" :data="list" stripe> |
| | | <el-table :height="tableHeightNew" v-loading="loading" :data="list" stripe> |
| | | <el-table-column prop="platformName" label="月台名称" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="platformGroupName" label="月台组" min-width="100" show-overflow-tooltip /> |
| | | <el-table-column prop="carCodeFront" label="车前牌照号" min-width="100" show-overflow-tooltip /> |
| | |
| | | <script> |
| | | import Pagination from '@/components/common/Pagination' |
| | | import QueryForm from '@/components/common/QueryForm' |
| | | import BasePage from '@/components/base/BasePage' |
| | | import dayjs from 'dayjs' |
| | | import duration from 'dayjs/plugin/duration' |
| | | dayjs.extend(duration) |
| | | import { platformLogPage, getPlatformGroupList } from '@/api' |
| | | dayjs.extend(duration) |
| | | export default { |
| | | extends: BasePage, |
| | | components: { |
| | | Pagination, |
| | | QueryForm |