<template>
|
<div class="statistics-of-agv-page subpages-containter-box">
|
<search-bar>
|
<el-form :inline="true" class="search-form" label-width="80px">
|
<el-form-item label="任务类型">
|
<el-select placeholder="请选择..." multiple clearable class="default-form-width">
|
</el-select>
|
</el-form-item>
|
<el-form-item label="执行日期">
|
<el-input placeholder="请输入..." class="default-form-width"></el-input>
|
</el-form-item>
|
</el-form>
|
</search-bar>
|
|
<div class="table-header-row">
|
<el-button type="primary">导出</el-button>
|
</div>
|
|
<el-table :data="list" border stripe>
|
<el-table-column type="index" width="50" align="center" label="序号" fixed />
|
<el-table-column prop="s1" label="计划号" />
|
<el-table-column prop="s1" label="执行日期" width="180" />
|
<el-table-column prop="s2" label="任务类型" />
|
<el-table-column prop="s3" label="开始时间" />
|
<el-table-column prop="s3" label="完成时间" />
|
<el-table-column prop="s11" label="起始位置" />
|
<el-table-column prop="s11" label="目标位置" />
|
<el-table-column prop="s4" label="数量" />
|
<el-table-column prop="s10" label="状态" />
|
</el-table>
|
|
<div class="pagination-row"><el-pagination :pager-count="5" layout="prev, pager, next, jumper" :total="total" /></div>
|
</div>
|
</template>
|
|
<script>
|
import SearchBar from '@/components/SearchBar.vue'
|
export default {
|
name:'statisticsOfAgvPage',
|
components:{SearchBar},
|
data(){
|
return {
|
list:[{id:'1',goods:[{id:'goods1'}]}],
|
total:100,
|
queried:{...this.$config.pagination}
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
</style>
|