ke_junjie
2025-06-04 84620534eb627e95811b971a4b552b6a177829bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<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>