src/views/productionManagement/processRoute/processRouteItem/index.vue
@@ -177,7 +177,7 @@
      <div class="section-header">
        <div class="section-title">BOM</div>
        <div class="section-actions"
             v-if="pageType === 'order'">
             v-if="pageType === 'order' && !routeInfo.status">
          <el-button type="primary"
                     @click="toggleBomEdit">
            {{ bomDataValue.isEdit ? '取消' : '编辑' }}
@@ -383,7 +383,7 @@
    <ProcessParamListDialog v-model="showParamListDialog"
                            :title="`${currentProcess ? getProcessName(currentProcess.processId) : ''} - 参数列表`"
                            :route-id="routeId"
                            :editable="editable"
                            :editable="editable && !routeInfo.status"
                            :order-id="orderId"
                            :process="currentProcess"
                            :page-type="pageType"
@@ -529,7 +529,7 @@
  // 获取工序列表
  const getProcessList = () => {
    processList({})
    processList({ dateType: 1 })
      .then(res => {
        processOptions.value = res.data || [];
      })
@@ -548,7 +548,7 @@
      dictLabel: route.query.dictLabel || "",
      bomId: route.query.bomId || null,
      description: route.query.description || "",
      status: route.query.status === "true" ? true : false,
      status: !(route.query.status == 1 || route.query.status === "false"),
    };
    if (pageType.value === "order") {
      queryList2(route.query.orderId)
@@ -1026,6 +1026,7 @@
  // 初始化拖拽排序
  const initSortable = () => {
    if (routeInfo.value.status) return;
    destroySortable();
    if (viewMode.value === "table") {