| | |
| | | import { DICT_TYPE } from '@vben/constants'; |
| | | import { IconifyIcon } from '@vben/icons'; |
| | | |
| | | import { Input, Modal } from 'ant-design-vue'; |
| | | import { Input, message, Modal } from 'ant-design-vue'; |
| | | |
| | | import { useVbenVxeGrid } from '#/adapter/vxe-table'; |
| | | import { |
| | |
| | | }, |
| | | gridOptions: { |
| | | columns: [ |
| | | { type: 'radio', width: 50, fixed: 'left' }, |
| | | { field: 'no', title: '订单单号', width: 200, fixed: 'left' }, |
| | | { field: 'supplierName', title: '供应商', minWidth: 120 }, |
| | | { |
| | |
| | | /** 确认选择采购订单 */ |
| | | function handleOk() { |
| | | if (!order.value?.id) { |
| | | message.warning('请选择采购订单'); |
| | | return; |
| | | } |
| | | emit('update:modelValue', order.value.id); |