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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<template>
    <div class="statistics-of-out-plan-page subpages-containter-box">
        <search-bar>
            <el-form :inline="true" class="search-form" label-width="80px">
                <el-form-item label="计划号">
                    <el-input placeholder="请输入..." class="default-form-width"></el-input>
                </el-form-item>
                <el-form-item label="计划类型">
                    <el-select placeholder="请选择..." multiple clearable class="default-form-width">
                    </el-select>
                </el-form-item>
                <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="expand">
                <template #default="props">
                    <div class="children-table-box">
                        <el-table :data="props.row.goods" size="small" border stripe>
                            <el-table-column type="index" width="50" align="center" label="序号" />
                            <el-table-column prop="s1" label="系列" />
                            <el-table-column prop="s1" label="品类" />
                            <el-table-column prop="s1" label="件号" />
                            <el-table-column prop="s1" label="出库数量" />
                        </el-table>
                    </div>
                </template>
            </el-table-column>
            <el-table-column type="index" width="50" align="center" label="序号" />
            <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="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:'statisticsOfOutPlanPage',
    components:{SearchBar},
    data(){
        return {
            list:[{id:'1',goods:[{id:'goods1'}]}],
            total:100,
            queried:{...this.$config.pagination}
        }
    }
}
</script>
 
<style scoped lang="scss">
.statistics-of-out-plan-page{
    .children-table-box{
        padding: 0 16px;
    }
}
</style>