| | |
| | | class="section-header"> |
| | | <div class="section-title">工艺路线项目列表</div> |
| | | <div class="section-actions"> |
| | | <div class="sort-tip">拖拽表格排序</div> |
| | | <el-button icon="Grid" |
| | | @click="toggleView" |
| | | style="margin-right: 10px;"> |
| | |
| | | <el-table-column label="是否质检" |
| | | prop="isQuality"> |
| | | <template #default="scope"> |
| | | <el-tag :type="scope.row.isQuality ? 'success' : 'danger'"> |
| | | {{scope.row.isQuality ? '是' : '否' }} |
| | | <el-tag :type="scope.row.isQuality == 1 ? 'success' : 'danger'"> |
| | | {{scope.row.isQuality == 1 ? '是' : '否' }} |
| | | </el-tag> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | <div class="section-header"> |
| | | <div class="section-title">工艺路线项目列表</div> |
| | | <div class="section-actions"> |
| | | <div class="sort-tip">长按拖拽卡片排序</div> |
| | | <el-button icon="Menu" |
| | | @click="toggleView" |
| | | style="margin-right: 10px;"> |
| | |
| | | <div class="card-process-name">{{ getProcessName(item.processId) || '-' }}</div> |
| | | </div> |
| | | <!-- 产品信息 --> |
| | | <div class="card-content"> |
| | | </div> |
| | | <!-- <div class="card-content"> |
| | | </div> --> |
| | | <!-- 操作按钮 --> |
| | | <div class="card-footer"> |
| | | <el-button type="primary" |
| | |
| | | <el-form-item label="是否质检" |
| | | prop="isQuality"> |
| | | <el-switch v-model="form.isQuality" |
| | | :active-value="true" |
| | | inactive-value="false" /> |
| | | :active-value="1" |
| | | :inactive-value="0" /> |
| | | </el-form-item> |
| | | </el-form> |
| | | <template #footer> |
| | |
| | | <ProcessParamListDialog v-model="showParamListDialog" |
| | | :title="`${currentProcess ? getProcessName(currentProcess.processId) : ''} - 参数列表`" |
| | | :route-id="routeId" |
| | | :editable="false" |
| | | :editable="editable" |
| | | :order-id="orderId" |
| | | :process="currentProcess" |
| | | :page-type="pageType" |
| | | :param-list="paramList" |
| | | @refresh="refreshParamList" /> |
| | | </div> |
| | |
| | | findProductProcessRouteItemList, |
| | | deleteRouteItem, |
| | | addRouteItem, |
| | | findProcessParamListOrder, |
| | | addOrUpdateProductProcessRouteItem, |
| | | sortRouteItem, |
| | | } from "@/api/productionManagement/productProcessRoute.js"; |
| | |
| | | const routeId = computed(() => route.query.id); |
| | | const orderId = computed(() => route.query.orderId); |
| | | const pageType = computed(() => route.query.type); |
| | | const editable = computed(() => route.query.editable === "true"); |
| | | |
| | | const tableLoading = ref(false); |
| | | const tableData = ref([]); |
| | |
| | | productName: "", |
| | | model: "", |
| | | unit: "", |
| | | isQuality: false, |
| | | isQuality: 0, |
| | | }); |
| | | |
| | | const rules = { |
| | |
| | | |
| | | const addPromise = isOrderPage |
| | | ? addRouteItem({ |
| | | productOrderId: orderId.value, |
| | | productRouteId: routeId.value, |
| | | orderId: orderId.value, |
| | | routeId: routeId.value, |
| | | processId: form.value.processId, |
| | | productModelId: form.value.productModelId, |
| | | isQuality: form.value.isQuality, |
| | | dragSort, |
| | | }) |
| | | : addOrUpdateProcessRouteItem({ |
| | | routeId: routeId.value, |
| | |
| | | ? addOrUpdateProductProcessRouteItem({ |
| | | id: form.value.id, |
| | | processId: form.value.processId, |
| | | productModelId: form.value.productModelId, |
| | | isQuality: form.value.isQuality, |
| | | }) |
| | | : addOrUpdateProcessRouteItem({ |
| | |
| | | ghostClass: "sortable-ghost", |
| | | handle: ".process-card", |
| | | filter: ".el-button", |
| | | delay: 500, // 长按500毫秒后开始拖拽 |
| | | onEnd: evt => { |
| | | if (evt.oldIndex === evt.newIndex || !tableData.value[evt.oldIndex]) |
| | | return; |
| | |
| | | const handleViewParams = process => { |
| | | currentProcess.value = process; |
| | | // 调用API获取参数列表 |
| | | getProcessParamList({ |
| | | routeItemId: process.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data?.records || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | showParamListDialog.value = true; |
| | | if (pageType.value === "order") { |
| | | findProcessParamListOrder({ |
| | | orderId: orderId.value, |
| | | routeItemId: process.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | showParamListDialog.value = true; |
| | | }); |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | showParamListDialog.value = true; |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | showParamListDialog.value = true; |
| | | }); |
| | | } else { |
| | | getProcessParamList({ |
| | | routeItemId: process.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data?.records || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | showParamListDialog.value = true; |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | showParamListDialog.value = true; |
| | | }); |
| | | } |
| | | }; |
| | | |
| | | // 刷新参数列表 |
| | | const refreshParamList = () => { |
| | | if (!currentProcess.value) return; |
| | | // 重新调用API获取参数列表 |
| | | getProcessParamList({ |
| | | routeItemId: currentProcess.value.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data?.records || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | if (pageType.value === "order") { |
| | | findProcessParamListOrder({ |
| | | orderId: orderId.value, |
| | | routeItemId: currentProcess.value.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | }); |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | }); |
| | | } else { |
| | | getProcessParamList({ |
| | | routeItemId: currentProcess.value.id, |
| | | pageNum: 1, |
| | | pageSize: 1000, |
| | | }) |
| | | .then(res => { |
| | | if (res.code === 200) { |
| | | paramList.value = res.data?.records || []; |
| | | } else { |
| | | ElMessage.error(res.msg || "获取参数列表失败"); |
| | | paramList.value = []; |
| | | } |
| | | }) |
| | | .catch(err => { |
| | | console.error("获取参数列表失败:", err); |
| | | ElMessage.error("获取参数列表失败"); |
| | | paramList.value = []; |
| | | }); |
| | | } |
| | | }; |
| | | |
| | | onUnmounted(() => { |
| | |
| | | |
| | | .cards-wrapper { |
| | | display: flex; |
| | | gap: 16px; |
| | | gap: 24px; |
| | | overflow-x: auto; |
| | | padding: 10px 0; |
| | | min-height: 200px; |
| | | /* min-height: 250px; */ |
| | | } |
| | | |
| | | .cards-wrapper::-webkit-scrollbar { |
| | |
| | | |
| | | .process-card { |
| | | flex-shrink: 0; |
| | | width: 220px; |
| | | /* width: 300px; */ |
| | | background: #fff; |
| | | border-radius: 8px; |
| | | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); |
| | | padding: 16px; |
| | | border-radius: 12px; |
| | | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); |
| | | /* padding: 30px 24px; */ |
| | | padding: 25px 50px; |
| | | display: flex; |
| | | flex-direction: column; |
| | | cursor: move; |
| | |
| | | } |
| | | |
| | | .process-card:hover { |
| | | box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); |
| | | transform: translateY(-2px); |
| | | box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); |
| | | transform: translateY(-4px); |
| | | } |
| | | |
| | | .card-header { |
| | | text-align: center; |
| | | margin-bottom: 12px; |
| | | margin-bottom: 20px; |
| | | } |
| | | |
| | | .card-number { |
| | | width: 36px; |
| | | height: 36px; |
| | | line-height: 36px; |
| | | width: 60px; |
| | | height: 60px; |
| | | line-height: 60px; |
| | | border-radius: 50%; |
| | | background: #409eff; |
| | | color: #fff; |
| | | font-weight: bold; |
| | | font-size: 16px; |
| | | margin: 0 auto 8px; |
| | | font-size: 20px; |
| | | margin: 0 auto 16px; |
| | | } |
| | | |
| | | .card-process-name { |
| | | font-size: 14px; |
| | | font-size: 18px; |
| | | color: #333; |
| | | font-weight: 500; |
| | | font-weight: 600; |
| | | word-break: break-all; |
| | | } |
| | | |
| | | .card-content { |
| | | flex: 1; |
| | | margin-bottom: 12px; |
| | | min-height: 60px; |
| | | margin-bottom: 20px; |
| | | min-height: 80px; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | } |
| | | |
| | | .product-info { |
| | | font-size: 13px; |
| | | font-size: 14px; |
| | | color: #666; |
| | | text-align: center; |
| | | width: 100%; |
| | |
| | | } |
| | | |
| | | .product-name { |
| | | margin-bottom: 6px; |
| | | margin-bottom: 8px; |
| | | word-break: break-all; |
| | | line-height: 1.5; |
| | | text-align: center; |
| | |
| | | |
| | | .product-model { |
| | | color: #909399; |
| | | font-size: 12px; |
| | | font-size: 13px; |
| | | word-break: break-all; |
| | | line-height: 1.5; |
| | | text-align: center; |
| | |
| | | } |
| | | |
| | | .product-tag { |
| | | margin: 10px 0; |
| | | margin: 12px 0; |
| | | } |
| | | |
| | | .card-footer { |
| | | display: flex; |
| | | justify-content: space-around; |
| | | padding-top: 12px; |
| | | justify-content: center; |
| | | gap: 20px; |
| | | padding-top: 16px; |
| | | border-top: 1px solid #f0f0f0; |
| | | } |
| | | |
| | | .card-footer .el-button { |
| | | padding: 0; |
| | | font-size: 12px; |
| | | font-size: 14px; |
| | | } |
| | | |
| | | .card-footer .el-button:nth-child(1) { |
| | | color: #409eff; |
| | | } |
| | | |
| | | .card-footer .el-button:nth-child(2) { |
| | | color: #67c23a; |
| | | } |
| | | |
| | | .card-footer .el-button:nth-child(3) { |
| | | color: #f56c6c; |
| | | } |
| | | |
| | | :deep(.sortable-ghost) { |
| | |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | .sort-tip { |
| | | font-size: 12px; |
| | | color: #909399; |
| | | margin-left: 8px; |
| | | margin-right: 20px; |
| | | } |
| | | |
| | | /* 工艺路线信息卡片样式 */ |
| | | .route-info-card { |