gaoluyang
15 小时以前 89b4ccc1bf351417bbe0acbc8246a681514bd173
src/views/productionManagement/productionReporting/index.vue
@@ -121,9 +121,6 @@
    </div>
    <form-dia ref="formDia"
              @close="handleQuery"></form-dia>
    <input-modal v-if="isShowInput"
                 v-model:visible="isShowInput"
                 :production-product-main-id="isShowingId" />
  </div>
</template>
@@ -138,7 +135,7 @@
  } from "@/api/productionManagement/productionReporting.js";
  import { productionProductMainListPage } from "@/api/productionManagement/productionProductMain.js";
  import { userListNoPageByTenantId } from "@/api/system/user.js";
  import InputModal from "@/views/productionManagement/productionReporting/Input.vue";
  const data = reactive({
    searchForm: {
@@ -196,7 +193,7 @@
    {
      label: "创建时间",
      prop: "createTime",
      width: 120,
      width: 180,
    },
    {
      dataType: "action",
@@ -204,13 +201,6 @@
      align: "center",
      fixed: "right",
      operation: [
        {
          name: "查看投入",
          type: "text",
          clickFun: row => {
            showInput(row);
          },
        },
        {
          name: "删除",
          type: "danger",
@@ -378,14 +368,6 @@
      const rowInfo = type === "add" ? selectedRows.value[0] : row;
      formDia.value?.openDialog(type, rowInfo);
    });
  };
  // 打开投入模态框
  const isShowInput = ref(false);
  const isShowingId = ref(0);
  const showInput = row => {
    isShowInput.value = true;
    isShowingId.value = row.id;
  };
  // 导出