skyouc
2025-07-04 49b8b52ae6dfb28e3e9a741bb277c231bd13418d
zy-asrs-admin/src/views/out/flat/index.vue
@@ -2,23 +2,17 @@
    <div class="table-header">
        <div style="display: flex;padding: 10px;">
            <div style="margin-right: 10px;">
                <a-input v-model:value="searchParam.pickNo"
                         placeholder="请输拣货单编号"
                <a-input v-model:value="searchParam.pickNo" placeholder="请输拣货单编号"
                         style="width: 200px;margin-right: 10px;"/>
                <a-input v-model:value="searchParam.waveNo" placeholder="请输入波次号"
                                style="width: 200px;" />
                <a-input v-model:value="searchParam.waveNo" placeholder="请输入波次号" style="width: 200px;" />
                <a-button @click="queryPickSheets" type="primary" style="margin-left: 35px">查询</a-button>
            </div>
        </div>
    </div>
    <a-table :columns="columns"
             :data-source="datasource" bordered
             :defaultExpandAllRows="false"
    <a-table :columns="columns" :data-source="datasource" bordered :defaultExpandAllRows="false"
             :row-selection="{ selectedRowKeys: state.selectedRowKeys, onChange: onSelectChange }"
             :scroll="{y: columns.length * 140}"
             style="margin: 5px"
    >
        :scroll="{ y: columns.length * 140 }" style="margin: 5px">
        <template #bodyCell="{column, record, index}">
            <template v-if="column.key === 'number'">
                {{ index + 1 }}
@@ -53,11 +47,7 @@
                    <a-qrcode :value="selectDetl.pickNo" :size="100" :bordered="false"/>
                </div>
            </div>
            <a-table :columns="childNodes"
                     :data-source="childList"
                     bordered
                     :pagination="{hideOnSinglePage: true}"
            >
            <a-table :columns="childNodes" :data-source="childList" bordered :pagination="{ hideOnSinglePage: true }">
                <template #bodyCell="{column, record, index}">
                    <template v-if="column.key === 'number'">
                        {{ index + 1 }}
@@ -96,7 +86,8 @@
                columns: [
                    {key: 'number', title: '序号', dataIndex: 'number', align: 'center', width: '65px'},
                    {key: 'pickNo', title: '单号', dataIndex: 'pickNo', align: 'center', width: '205px'},
                    {key: 'waveNo', title: '波次号', dataIndex: 'waveNo', align: 'center', width: '155px'},
                { key: 'waveNo', title: '波次号', dataIndex: 'waveNo', align: 'center', width: '205px' },
                { key: 'type$', title: '类型', dataIndex: 'type$', align: 'center', width: '155px' },
                    {key: 'anfme', title: '数量', dataIndex: 'anfme', align: 'center', width: '85px'},
                    {key: 'status', title: '单据状态', dataIndex: 'status', align: 'center', width: '105px'},
                    {key: 'createdTime', title: '创建时间', dataIndex: 'createdTime', align: 'center', width: '185px'},