ZN
2026-03-18 2e5e296c5ff250c0325aa28782f7732544b01f22
src/views/productionManagement/productionProcess/New.vue
@@ -20,10 +20,40 @@
                message: '最多100个字符',
              }
            ]">
          <el-input v-model="formState.name" />
          <el-input v-model="formState.name" placeholder="请输入工序名称" />
        </el-form-item>
        <el-form-item label="工序编号" prop="no">
          <el-input v-model="formState.no"  />
        <el-form-item
            label="工序机台"
            prop="deviceId"
            :rules="[
                {
                required: true,
                message: '请选择工序类型',
              }
            ]"
        >
          <el-select
              v-model="formState.deviceId"
              placeholder="请选择工序机台"
              filterable
              remote
              clearable
              reserve-keyword
              :remote-method="handleDeviceRemoteSearch"
              :loading="deviceLoading"
              @clear="handleDeviceClear"
              @change="handleDeviceChange"
              @visible-change="handleDeviceDropdownVisible"
              popper-class="device-select-popper"
          >
            <el-option v-for="item in equipmentList" :key="item.id" :label="item.deviceName" :value="item.id" />
            <el-option
                v-if="equipmentList.length > 0 && deviceHasMore"
                :value="__deviceLoadMoreSentinel"
                label="加载更多…"
                disabled
            />
          </el-select>
        </el-form-item>
        <el-form-item
            label="工序类型"
@@ -63,8 +93,9 @@
</template>
<script setup>
import { ref, computed, getCurrentInstance } from "vue";
import { ref, computed, onMounted, getCurrentInstance, reactive, nextTick, onBeforeUnmount } from "vue";
import {add} from "@/api/productionManagement/productionProcess.js";
import {getLedgerPage} from "@/api/equipmentManagement/ledger.js";
const props = defineProps({
  visible: {
@@ -84,6 +115,21 @@
  isQuality: false,
});
// 分页查询参数
const page = reactive({
  current: 1,
  size: 10,
  total: 0,
});
onMounted(() => {
  resetDeviceOptions();
});
const handleDeviceChange = (val) => {
  formState.value.deviceName = equipmentList.value.find(item => item.id === val)?.deviceName || '';
};
const isShow = computed({
  get() {
    return props.visible;
@@ -94,6 +140,112 @@
});
let { proxy } = getCurrentInstance()
const equipmentList = ref([]);
const deviceLoading = ref(false);
const deviceQuery = ref("");
const deviceScrollWrap = ref(null);
const __deviceLoadMoreSentinel = "__deviceLoadMoreSentinel";
const deviceHasMore = computed(() => {
  const total = Number(page.total ?? 0);
  if (!total) {
    return false;
  }
  return equipmentList.value.length < total;
});
// 获取设备列表(分页查询)
const getLedgerPageS = async ({ reset = false } = {}) => {
  if (deviceLoading.value) return;
  deviceLoading.value = true;
  try {
    const res = await getLedgerPage({
      current: page.current,
      size: page.size,
      deviceName: deviceQuery.value ? deviceQuery.value : undefined,
    });
    const data = res?.data || {};
    const records = Array.isArray(data.records) ? data.records : [];
    page.total = Number(data.total ?? page.total ?? 0);
    page.current = Number(data.current ?? page.current);
    page.size = Number(data.size ?? page.size);
    equipmentList.value = reset ? records : [...equipmentList.value, ...records];
  } finally {
    deviceLoading.value = false;
  }
};
const resetDeviceOptions = async () => {
  page.current = 1;
  page.size = 10;
  page.total = 0;
  equipmentList.value = [];
  await getLedgerPageS({ reset: true });
};
const loadMoreDevices = async () => {
  if (deviceLoading.value) return;
  if (!deviceHasMore.value) return;
  page.current += 1;
  await getLedgerPageS();
};
let remoteTimer = null;
const handleDeviceRemoteSearch = (query) => {
  const nextQuery = (query ?? "").trim();
  deviceQuery.value = nextQuery;
  if (remoteTimer) clearTimeout(remoteTimer);
  remoteTimer = setTimeout(() => {
    resetDeviceOptions();
  }, 300);
};
const handleDeviceClear = () => {
  deviceQuery.value = "";
  resetDeviceOptions();
};
const onDeviceDropdownScroll = (e) => {
  const el = e.target;
  if (!el) return;
  if (el.scrollHeight - el.scrollTop - el.clientHeight <= 20) {
    loadMoreDevices();
  }
};
const unbindDeviceDropdownScroll = () => {
  if (deviceScrollWrap.value) {
    deviceScrollWrap.value.removeEventListener("scroll", onDeviceDropdownScroll);
    deviceScrollWrap.value = null;
  }
};
const bindDeviceDropdownScroll = () => {
  unbindDeviceDropdownScroll();
  const wrap =
      document.querySelector(".device-select-popper .el-scrollbar__wrap") ||
      document.querySelector(".device-select-popper .el-select-dropdown__wrap");
  if (wrap) {
    deviceScrollWrap.value = wrap;
    wrap.addEventListener("scroll", onDeviceDropdownScroll);
  }
};
const handleDeviceDropdownVisible = async (visible) => {
  if (!visible) {
    unbindDeviceDropdownScroll();
    return;
  }
  if (equipmentList.value.length === 0) {
    await resetDeviceOptions();
  }
  await nextTick();
  bindDeviceDropdownScroll();
};
const closeModal = () => {
  isShow.value = false;
@@ -118,4 +270,9 @@
  handleSubmit,
  isShow,
});
onBeforeUnmount(() => {
  unbindDeviceDropdownScroll();
  if (remoteTimer) clearTimeout(remoteTimer);
});
</script>