| | |
| | | import { ref } from 'vue'; |
| | | import { useRouter } from 'vue-router'; |
| | | |
| | | import { Page, useVbenModal } from '../../../packages/effects/common-ui/src'; |
| | | import { BarcodeBizTypeEnum } from '../../../packages/constants/src'; |
| | | import { Page, useVbenModal } from '@vben/common-ui'; |
| | | import { BarcodeBizTypeEnum } from '@vben/constants'; |
| | | |
| | | import { Button, message } from 'ant-design-vue'; |
| | | |
| | |
| | | import { BarcodeDetail } from '../barcode/components'; |
| | | import { useGridColumns, useGridFormSchema } from './data'; |
| | | import Form from './modules/form.vue'; |
| | | |
| | | defineOptions({ name: 'WlsWarehouse' }); |
| | | |
| | | const router = useRouter(); |
| | | |
| | |
| | | /** 跳转库区列表 */ |
| | | function handleOpenLocation(row: MesWmWarehouseApi.Warehouse) { |
| | | router.push({ |
| | | name: 'WlsLocation', |
| | | path: '/wls/location', |
| | | query: { warehouseId: String(row.id) }, |
| | | }); |
| | | } |