docs(test): 更新电表箱装配业务回归测试文档
- 将文档从代码审计任务转换为端到端业务回归测试链路 - 重新组织文档结构为链路总览、示例数据基线和详细步骤 - 添加完整的业务场景清单涵盖WMS/MES/工位终端三大系统 - 定义统一的测试数据包括产品型号、物料清单、工位派工等 - 提供详细的步骤断言和数量等式验证方法 - 建立贯穿全链路的数据流向和状态变更追踪体系
This commit is contained in:
@@ -70,13 +70,16 @@ function onChange(v) {
|
||||
}
|
||||
}
|
||||
|
||||
// 展开下拉即重拉最近 100 条(仅在未输入搜索词时):新建/修改物料后无需刷新页面即可选到最新数据。
|
||||
function onVisible(v) { if (v) load('') }
|
||||
|
||||
onMounted(() => load(''))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<el-select :model-value="modelValue" :multiple="multiple" filterable remote clearable
|
||||
:remote-method="load" :loading="loading" :placeholder="placeholder"
|
||||
:style="{ width }" @change="onChange">
|
||||
:style="{ width }" @change="onChange" @visible-change="onVisible">
|
||||
<el-option v-for="m in options" :key="m.id" :value="m.code" :label="optionLabel(m)">
|
||||
<span style="float:left">{{ m.code }} {{ m.name || '' }}</span>
|
||||
<span style="float:right;color:#8492a6;font-size:12px;margin-left:16px">
|
||||
|
||||
Reference in New Issue
Block a user