| | |
| | | v-model:visible="isShowItemModal" |
| | | :record="record" |
| | | @completed="getList" /> |
| | | <FileListDialog ref="fileListDialogRef" |
| | | v-model="fileDialogVisible" |
| | | :show-upload-button="true" |
| | | :show-delete-button="true" |
| | | :delete-method="handleAttachmentDelete" |
| | | :process-route-id="currentProcessRouteId" |
| | | :name-column-label="'附件名称'" |
| | | @upload="handleAttachmentUpload" /> |
| | | <FileList v-if="fileDialogVisible" |
| | | v-model:visible="fileDialogVisible" |
| | | :record-type="'technology_routing'" |
| | | :record-id="currentProcessRouteId" /> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import EditProcess from "@/views/productionManagement/processRoute/Edit.vue"; |
| | | import RouteItemForm from "@/views/productionManagement/processRoute/ItemsForm.vue"; |
| | | import { listPage, del } from "@/api/productionManagement/processRoute.js"; |
| | | import { |
| | | listProcessRouteFiles, |
| | | addProcessRouteFile, |
| | | delProcessRouteFile, |
| | | } from "@/api/productionManagement/processRouteFile.js"; |
| | | import FileListDialog from "@/components/Dialog/FileListDialog.vue"; |
| | | import FileList from "@/components/Dialog/FileList.vue"; |
| | | import { useRouter } from "vue-router"; |
| | | import { ElMessage, ElMessageBox } from "element-plus"; |
| | | |