| | |
| | | |
| | | import { computed, watch } from 'vue'; |
| | | |
| | | import { useVbenModal } from '..\..\..\..\..\packages\effects\common-ui\src'; |
| | | import { useVbenModal } from '@vben/common-ui'; |
| | | |
| | | import { message } from 'ant-design-vue'; |
| | | |
| | |
| | | processId: number; |
| | | routeId: number; |
| | | workOrderId: number; |
| | | workOrderQuantity?: number; |
| | | }>(); |
| | | |
| | | const editable = computed(() => !props.disabled); // 是否可维护任务 |
| | |
| | | colorCode: props.colorCode, |
| | | itemId: props.itemId, |
| | | processId: props.processId, |
| | | quantity: props.workOrderQuantity, |
| | | routeId: props.routeId, |
| | | workOrderId: props.workOrderId, |
| | | }) |