| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <!-- 入库 -->
- <template>
- <div class="inWarehouse">
- <ele-pro-table ref="table1" height="calc(100vh - 300px)" :columns="columns" :datasource="datasource"
- :pageSize="20" row-key="id" :initLoad="false">
- </ele-pro-table>
- </div>
- </template>
- <script>
- import storageApi from '@/api/warehouseManagement/index.js';
- export default {
- props: {
- categoryCode: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- columns: [
- {
- columnKey: 'index',
- type: 'index',
- width: 50,
- align: 'center',
- label: '序号',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center'
- },
- {
- prop: 'categoryCode',
- label: '物品编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- slot: 'categoryName',
- prop: 'categoryName',
- label: '物品名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'inventoryCycle',
- label: '存货周期(天)',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'brandNum',
- label: '牌号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'categoryModel',
- label: '型号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'level',
- label: '级别',
- showOverflowTooltip: true
- },
- {
- prop: 'measureQuantity',
- label: '计量数量',
- sortable: 'custom',
- showOverflowTooltip: true,
- width: 130,
- align: 'center'
- },
- {
- prop: 'measureUnit',
- label: '计量单位',
- align: 'center'
- },
- {
- prop: 'weight',
- label: '重量',
- showOverflowTooltip: true
- },
- {
- prop: 'weightUnit',
- label: '重量单位',
- showOverflowTooltip: true
- },
- {
- prop: 'packageNo',
- label: '包装编码',
- showOverflowTooltip: true
- },
- {
- prop: 'packingQuantity',
- label: '包装数量 ',
- showOverflowTooltip: true
- },
- {
- prop: 'packingUnit',
- label: '包装单位 ',
- showOverflowTooltip: true
- },
- {
- prop: 'warehouseName',
- label: '仓库 ',
- showOverflowTooltip: true
- },
- {
- prop: 'areaName',
- label: '货区 ',
- showOverflowTooltip: true
- },
- {
- prop: 'goodsAllocationName',
- label: '货架',
- showOverflowTooltip: true
- },
- {
- prop: 'goodsShelfName',
- label: '货位',
- showOverflowTooltip: true
- },
- {
- prop: 'productionDate',
- label: '生产日期',
- showOverflowTooltip: true
- },
- {
- prop: 'purchaseDate',
- label: '采购日期',
- showOverflowTooltip: true
- },
- {
- prop: 'barcodes',
- label: '发货条码 ',
- showOverflowTooltip: true
- },
- {
- prop: 'clientCode',
- label: '客户代号',
- showOverflowTooltip: true
- },
- {
- prop: 'engrave',
- label: '刻码 ',
- showOverflowTooltip: true
- },
- {
- prop: 'materielDesignation',
- label: '物料代号',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'supplierCode',
- label: '供应商代号',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'provenance',
- label: '产地',
- showOverflowTooltip: true
- },
- ]
- }
- },
- created() {
- this.reload({ keyWord: this.categoryCode });
- },
- methods: {
- datasource({ page, limit, where }) {
- const data = storageApi.getPackingList({ ...where, page, size:limit });
- return data;
- },
- reload(where) {
- this.$nextTick(() => {
- if (this.$refs.table1 && this.$refs.table1.reload)
- this.$refs.table1.reload({ page: 1, where: where });
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .inWarehouse {
- height: 100%;
- width: 100%;
- padding-top: 20px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- :deep(.table) {
- flex: 1;
- display: flex;
- flex-direction: column;
- .el-table__body-wrapper {
- flex: 1;
- }
- }
- .pagination {
- flex: 0 0 50px;
- display: flex;
- align-items: center;
- }
- }
- </style>
|