| | |
| | | { label: '合伙人:', id: 'partnerName', type: 'input' }, |
| | | { label: '库区:', id: 'warehouseName', type: 'input' }, |
| | | { label: '库位:', id: 'warehouseLocationCode', type: 'input' }, |
| | | { |
| | | label: '备注:', |
| | | id: 'remarks', |
| | | type: 'input', |
| | | el: { type: 'textarea' }, |
| | | span: 24, |
| | | }, |
| | | ], |
| | | }, |
| | | ], |
| | |
| | | import { dateRangeOptions } from '@/utils/options' |
| | | import CustomDateRange from '@/components/custom-date-range.vue' |
| | | import PrintList from '@/components/order/print-list' |
| | | import GoodsTableItemList from '@/components/order/goods-table-item-list.vue' |
| | | export default { |
| | | components: { |
| | | PrintList, |
| | |
| | | { label: '订单状态', prop: 'statusBackendStr', minWidth: 120 }, |
| | | { label: '下单时间', prop: 'createTime', minWidth: 180 }, |
| | | { label: '合伙人', prop: 'partnerName', minWidth: 120 }, |
| | | { |
| | | label: '备注', |
| | | formatter: (row) => ( |
| | | <simple-text value={row.remarks} type="primary"></simple-text> |
| | | ), |
| | | minWidth: 200, |
| | | }, |
| | | ], |
| | | searchFormAttrs: { |
| | | labelWidth: 'auto', |