| | |
| | | import { ref } from 'vue'; |
| | | import { useRoute, 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 { Alert, Button, message } from 'ant-design-vue'; |
| | | |
| | |
| | | import { BarcodeDetail } from '../../barcode/components'; |
| | | import { useGridColumns, useGridFormSchema } from './data'; |
| | | import Form from './modules/form.vue'; |
| | | |
| | | defineOptions({ name: 'WlsLocation' }); |
| | | |
| | | const route = useRoute(); |
| | | const router = useRouter(); |
| | |
| | | /** 跳转库位列表 */ |
| | | function handleOpenArea(row: MesWmWarehouseLocationApi.WarehouseLocation) { |
| | | router.push({ |
| | | name: 'WlsArea', |
| | | path: '/wls/area', |
| | | query: { locationId: String(row.id) }, |
| | | }); |
| | | } |