1
yyb
2 天以前 787d41d48e2008bbc1ebd2576b63c9267fb4d295
src/views/productionManagement/workOrderEdit/index.vue
@@ -133,7 +133,7 @@
    },
    {
      label: "计划工时(小时)",
      prop: "plannedWorkHours",
      prop: "salaryQuota",
      width: "140",
    },
    {
@@ -180,6 +180,7 @@
          clickFun: row => {
            handleEdit(row);
          },
          disabled: row => Number(row.completeQuantity) > 0,
        },
      ],
    },
@@ -230,7 +231,7 @@
  };
  const getList = () => {
    tableLoading.value = true;
    const params = { ...searchForm.value, ...page };
    const params = { ...searchForm.value, ...page, type: 1 };
    productWorkOrderPage(params)
      .then(res => {
        tableLoading.value = false;
@@ -297,9 +298,6 @@
        getList();
      })
      .catch(() => {
        ElMessageBox.alert("修改失败", "提示", {
          confirmButtonText: "确定",
        });
      });
  };