✨ feat(mes): 移除质检指标精简列表接口并重构选择器组件
移除不再使用的质检指标精简列表接口,更新相关前端组件以支持新的选择器交互方式。选择器现在使用只读输入框和弹窗选择,提升用户体验和交互性。pull/871/MERGE
parent
9be9a2fdaf
commit
739725d9f8
|
|
@ -19,11 +19,6 @@ export const QcIndicatorApi = {
|
||||||
return await request.get({ url: `/mes/qc/indicator/page`, params })
|
return await request.get({ url: `/mes/qc/indicator/page`, params })
|
||||||
},
|
},
|
||||||
|
|
||||||
// 查询质检指标精简列表
|
|
||||||
getIndicatorSimpleList: async () => {
|
|
||||||
return await request.get({ url: `/mes/qc/indicator/simple-list` })
|
|
||||||
},
|
|
||||||
|
|
||||||
// 查询质检指标详情
|
// 查询质检指标详情
|
||||||
getIndicator: async (id: number) => {
|
getIndicator: async (id: number) => {
|
||||||
return await request.get({ url: `/mes/qc/indicator/get?id=` + id })
|
return await request.get({ url: `/mes/qc/indicator/get?id=` + id })
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,65 @@
|
||||||
<!-- MES 质检指标选择器:纯下拉,前端过滤(支持 name、code) -->
|
<!--
|
||||||
|
MES 质检指标选择器:只读输入框 + 点击弹窗选择
|
||||||
|
|
||||||
|
交互:显示为只读 el-input,点击打开弹窗(单选模式)进行选择
|
||||||
|
Props:
|
||||||
|
modelValue — 绑定的质检指标 ID(v-model)
|
||||||
|
disabled — 是否禁用
|
||||||
|
clearable — 是否允许清空(鼠标悬停时显示清除图标)
|
||||||
|
placeholder — 占位文字
|
||||||
|
Events:
|
||||||
|
update:modelValue — v-model 更新
|
||||||
|
change(item) — 选中指标变化时触发,传递完整 QcIndicatorVO(清空时为 undefined)
|
||||||
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-select
|
<div
|
||||||
v-model="selectValue"
|
v-bind="attrs"
|
||||||
:placeholder="placeholder"
|
class="w-full"
|
||||||
:disabled="disabled"
|
:class="disabled ? 'cursor-not-allowed' : 'cursor-pointer'"
|
||||||
:clearable="clearable"
|
@click="handleClick"
|
||||||
filterable
|
@mouseenter="hovering = true"
|
||||||
:filter-method="handleFilter"
|
@mouseleave="hovering = false"
|
||||||
class="!w-1/1"
|
|
||||||
@change="handleChange"
|
|
||||||
>
|
>
|
||||||
<el-option v-for="item in filteredList" :key="item.id" :label="item.name" :value="item.id">
|
<el-tooltip :disabled="!selectedItem" placement="top" :show-after="500">
|
||||||
<div class="flex items-center gap-8px">
|
<template #content>
|
||||||
<span>{{ item.name }}</span>
|
<div v-if="selectedItem" class="leading-6">
|
||||||
<el-tag v-if="item.code" size="small" type="info" class="ml-4px">
|
<div>编码:{{ selectedItem.code }}</div>
|
||||||
编号: {{ item.code }}
|
<div>名称:{{ selectedItem.name }}</div>
|
||||||
</el-tag>
|
<div>类型:{{ selectedItem.type || '-' }}</div>
|
||||||
</div>
|
<div>检测工具:{{ selectedItem.tool || '-' }}</div>
|
||||||
</el-option>
|
</div>
|
||||||
</el-select>
|
</template>
|
||||||
|
<el-input
|
||||||
|
:model-value="displayLabel"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
:disabled="disabled"
|
||||||
|
readonly
|
||||||
|
:suffix-icon="suffixIcon"
|
||||||
|
:class="disabled ? 'is-select-disabled' : 'is-select-clickable'"
|
||||||
|
/>
|
||||||
|
</el-tooltip>
|
||||||
|
</div>
|
||||||
|
<!-- 弹窗必须放在 div 外部,否则弹窗内的点击事件会冒泡到 div 触发 handleClick -->
|
||||||
|
<QcIndicatorSelectDialog ref="dialogRef" :multiple="false" @selected="handleSelected" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { QcIndicatorApi, QcIndicatorVO } from '@/api/mes/qc/indicator'
|
import { QcIndicatorApi, QcIndicatorVO } from '@/api/mes/qc/indicator'
|
||||||
|
import { Search, CircleClose } from '@element-plus/icons-vue'
|
||||||
|
import QcIndicatorSelectDialog from './QcIndicatorSelectDialog.vue'
|
||||||
|
|
||||||
defineOptions({ name: 'QcIndicatorSelect' })
|
// 组件有两个根节点(div + Dialog),Vue 不会自动继承 attrs;
|
||||||
|
// 手动透传到外层 div,确保父组件传入的 class / style 等生效
|
||||||
|
const attrs = useAttrs()
|
||||||
|
|
||||||
|
defineOptions({ name: 'QcIndicatorSelect', inheritAttrs: false })
|
||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
modelValue?: number
|
modelValue?: number // 绑定的质检指标 ID
|
||||||
disabled?: boolean
|
disabled?: boolean // 是否禁用
|
||||||
clearable?: boolean
|
clearable?: boolean // 是否允许清空
|
||||||
placeholder?: string
|
placeholder?: string // 占位文字
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
disabled: false,
|
disabled: false,
|
||||||
|
|
@ -45,36 +73,98 @@ const emit = defineEmits<{
|
||||||
change: [item: QcIndicatorVO | undefined]
|
change: [item: QcIndicatorVO | undefined]
|
||||||
}>()
|
}>()
|
||||||
|
|
||||||
const allList = ref<QcIndicatorVO[]>([])
|
const dialogRef = ref() // 弹窗 Ref
|
||||||
const filteredList = ref<QcIndicatorVO[]>([])
|
const hovering = ref(false) // 鼠标是否悬停
|
||||||
|
|
||||||
const selectValue = computed({
|
// ==================== 名称回显 ====================
|
||||||
get: () => props.modelValue,
|
const selectedItem = ref<QcIndicatorVO | undefined>() // 当前选中的指标对象
|
||||||
set: (val) => emit('update:modelValue', val)
|
|
||||||
|
/** 输入框显示文本:只展示指标名称,保持简洁 */
|
||||||
|
const displayLabel = computed(() => {
|
||||||
|
return selectedItem.value?.name ?? ''
|
||||||
})
|
})
|
||||||
|
|
||||||
/** 前端过滤(name + code) */
|
/** 是否显示清除图标 */
|
||||||
const handleFilter = (query: string) => {
|
const showClear = computed(() => {
|
||||||
if (!query) {
|
return props.clearable && !props.disabled && hovering.value && props.modelValue != null
|
||||||
filteredList.value = allList.value
|
})
|
||||||
|
|
||||||
|
/** 后缀图标:悬停且有值时显示清除,否则显示搜索 */
|
||||||
|
const suffixIcon = computed(() => {
|
||||||
|
return showClear.value ? CircleClose : Search
|
||||||
|
})
|
||||||
|
|
||||||
|
/** 根据 ID 单条查询指标信息(用于编辑回显) */
|
||||||
|
const resolveItemById = async (id: number | undefined) => {
|
||||||
|
if (id == null) {
|
||||||
|
selectedItem.value = undefined
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const keyword = query.toLowerCase()
|
if (selectedItem.value?.id === id) {
|
||||||
filteredList.value = allList.value.filter(
|
return
|
||||||
(item) =>
|
}
|
||||||
item.name?.toLowerCase().includes(keyword) || item.code?.toLowerCase().includes(keyword)
|
try {
|
||||||
)
|
selectedItem.value = await QcIndicatorApi.getIndicator(id)
|
||||||
|
} catch (e) {
|
||||||
|
console.error('[QcIndicatorSelect] resolveItemById failed:', e)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 选中变化 */
|
/** 监听 modelValue 变化,触发回显 */
|
||||||
const handleChange = (val: number | undefined) => {
|
watch(
|
||||||
const item = allList.value.find((o) => o.id === val)
|
() => props.modelValue,
|
||||||
|
(val) => {
|
||||||
|
resolveItemById(val)
|
||||||
|
},
|
||||||
|
{ immediate: true }
|
||||||
|
)
|
||||||
|
|
||||||
|
// ==================== 点击交互 ====================
|
||||||
|
|
||||||
|
/** 点击组件:清除或打开弹窗 */
|
||||||
|
const handleClick = (e: MouseEvent) => {
|
||||||
|
if (props.disabled) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 点击清除图标:清空选中
|
||||||
|
const target = e.target as HTMLElement
|
||||||
|
if (showClear.value && target.closest('.el-input__suffix')) {
|
||||||
|
e.stopPropagation()
|
||||||
|
selectedItem.value = undefined
|
||||||
|
emit('update:modelValue', undefined)
|
||||||
|
emit('change', undefined)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 打开弹窗,传入当前选中 ID 用于预选高亮
|
||||||
|
const selectedIds = props.modelValue != null ? [props.modelValue] : []
|
||||||
|
dialogRef.value.open(selectedIds)
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 弹窗选中回调 */
|
||||||
|
const handleSelected = (rows: QcIndicatorVO[]) => {
|
||||||
|
if (!rows || rows.length === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
const item = rows[0]
|
||||||
|
selectedItem.value = item
|
||||||
|
emit('update:modelValue', item.id)
|
||||||
emit('change', item)
|
emit('change', item)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 加载质检指标列表 */
|
|
||||||
onMounted(async () => {
|
|
||||||
allList.value = await QcIndicatorApi.getIndicatorSimpleList()
|
|
||||||
filteredList.value = allList.value
|
|
||||||
})
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* :deep 用于穿透 el-input 内部元素的 cursor 样式,UnoCSS 无法直接处理组件内部 DOM */
|
||||||
|
.is-select-clickable {
|
||||||
|
:deep(.el-input__wrapper),
|
||||||
|
:deep(.el-input__inner) {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-select-disabled {
|
||||||
|
:deep(.el-input__wrapper),
|
||||||
|
:deep(.el-input__inner) {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,279 @@
|
||||||
|
<!--
|
||||||
|
MES 质检指标弹窗选择器(支持单选/多选)
|
||||||
|
|
||||||
|
搜索字段、展示字段对齐 KTG qcindexSelect/single.vue
|
||||||
|
|
||||||
|
Props:
|
||||||
|
multiple — true 多选(checkbox),false 单选(radio);默认 true
|
||||||
|
Events:
|
||||||
|
selected(rows: QcIndicatorVO[]) — 确认选择后触发,单选时数组长度为 1
|
||||||
|
Expose:
|
||||||
|
open(selectedIds?: number[]) — 打开弹窗,可传入已选 ID 用于预选高亮
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<Dialog title="质检指标选择" v-model="dialogVisible" width="70%">
|
||||||
|
<ContentWrap>
|
||||||
|
<el-form :inline="true" :model="queryParams" label-width="100px">
|
||||||
|
<el-form-item label="检测项类型">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.type"
|
||||||
|
placeholder="全部"
|
||||||
|
clearable
|
||||||
|
class="!w-220px"
|
||||||
|
@change="handleQuery"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in getStrDictOptions(DICT_TYPE.MES_INDICATOR_TYPE)"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="检测项名称">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.name"
|
||||||
|
placeholder="请输入检测项名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter="handleQuery"
|
||||||
|
class="!w-220px"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button @click="handleQuery">
|
||||||
|
<Icon icon="ep:search" class="mr-5px" /> 搜索
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="resetQuery">
|
||||||
|
<Icon icon="ep:refresh" class="mr-5px" /> 重置
|
||||||
|
</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</ContentWrap>
|
||||||
|
<!-- 数据表格:单选 radio / 多选 checkbox 统一在一个 table 内 -->
|
||||||
|
<ContentWrap>
|
||||||
|
<el-table
|
||||||
|
ref="tableRef"
|
||||||
|
v-loading="loading"
|
||||||
|
:data="list"
|
||||||
|
:stripe="true"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
row-key="id"
|
||||||
|
:highlight-current-row="!multiple"
|
||||||
|
@selection-change="handleSelectionChange"
|
||||||
|
@row-click="handleRowClick"
|
||||||
|
@row-dblclick="handleRowDblClick"
|
||||||
|
>
|
||||||
|
<!-- 多选:checkbox(reserve-selection 保证跨页勾选不丢失) -->
|
||||||
|
<el-table-column
|
||||||
|
v-if="multiple"
|
||||||
|
type="selection"
|
||||||
|
:reserve-selection="true"
|
||||||
|
width="50"
|
||||||
|
align="center"
|
||||||
|
/>
|
||||||
|
<!-- 单选:radio -->
|
||||||
|
<el-table-column v-else width="50" align="center">
|
||||||
|
<template #default="{ row }">
|
||||||
|
<el-radio
|
||||||
|
v-model="selectedRadioId"
|
||||||
|
:value="row.id"
|
||||||
|
class="radio-no-label"
|
||||||
|
@change="handleRadioChange(row)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="检测项编码" align="center" prop="code" width="180" />
|
||||||
|
<el-table-column label="检测项名称" align="left" prop="name" min-width="150" />
|
||||||
|
<el-table-column label="检测项类型" align="center" prop="type" width="120">
|
||||||
|
<template #default="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.MES_INDICATOR_TYPE" :value="scope.row.type" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="检测工具" align="center" prop="tool" width="120" />
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" min-width="120" />
|
||||||
|
</el-table>
|
||||||
|
<Pagination
|
||||||
|
:total="total"
|
||||||
|
v-model:page="queryParams.pageNo"
|
||||||
|
v-model:limit="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</ContentWrap>
|
||||||
|
<template #footer>
|
||||||
|
<el-button type="primary" @click="confirmSelect">确 定</el-button>
|
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict'
|
||||||
|
import { QcIndicatorApi, QcIndicatorVO } from '@/api/mes/qc/indicator'
|
||||||
|
|
||||||
|
defineOptions({ name: 'QcIndicatorSelectDialog' })
|
||||||
|
|
||||||
|
const props = withDefaults(
|
||||||
|
defineProps<{
|
||||||
|
multiple?: boolean // true 多选(checkbox),false 单选(radio)
|
||||||
|
}>(),
|
||||||
|
{
|
||||||
|
multiple: true
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
const message = useMessage()
|
||||||
|
const emit = defineEmits<{
|
||||||
|
selected: [rows: QcIndicatorVO[]]
|
||||||
|
}>()
|
||||||
|
|
||||||
|
const dialogVisible = ref(false) // 弹窗是否展示
|
||||||
|
const loading = ref(false) // 列表加载中
|
||||||
|
const list = ref<QcIndicatorVO[]>([]) // 指标列表
|
||||||
|
const total = ref(0) // 总条数
|
||||||
|
|
||||||
|
// ==================== 选中状态 ====================
|
||||||
|
const tableRef = ref() // 表格 Ref
|
||||||
|
const selectedRows = ref<QcIndicatorVO[]>([]) // 多选模式:选中行
|
||||||
|
const selectedRadioId = ref<number>() // 单选模式:选中 ID
|
||||||
|
const currentRadioRow = ref<QcIndicatorVO>() // 单选模式:选中行对象
|
||||||
|
const preSelectedIds = ref<number[]>([]) // 打开弹窗时传入的已选 ID
|
||||||
|
|
||||||
|
/** 多选:checkbox 变化 */
|
||||||
|
const handleSelectionChange = (rows: QcIndicatorVO[]) => {
|
||||||
|
if (props.multiple) {
|
||||||
|
selectedRows.value = rows
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 单选:radio 变化 */
|
||||||
|
const handleRadioChange = (row: QcIndicatorVO) => {
|
||||||
|
currentRadioRow.value = row
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 单击行:单选模式下点击整行即选中(降低操作成本),多选不处理(避免和 dblclick 冲突) */
|
||||||
|
const handleRowClick = (row: QcIndicatorVO) => {
|
||||||
|
if (props.multiple) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
selectedRadioId.value = row.id
|
||||||
|
currentRadioRow.value = row
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 双击行:多选模式切换勾选,单选模式直接确认 */
|
||||||
|
const handleRowDblClick = (row: QcIndicatorVO) => {
|
||||||
|
if (props.multiple) {
|
||||||
|
tableRef.value?.toggleRowSelection(row)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
selectedRadioId.value = row.id
|
||||||
|
currentRadioRow.value = row
|
||||||
|
confirmSelect()
|
||||||
|
}
|
||||||
|
|
||||||
|
// ==================== 指标查询 ====================
|
||||||
|
const queryParams = reactive({
|
||||||
|
pageNo: 1, // 页码
|
||||||
|
pageSize: 10, // 每页条数
|
||||||
|
name: undefined as string | undefined, // 检测项名称
|
||||||
|
type: undefined as string | undefined // 检测项类型
|
||||||
|
})
|
||||||
|
|
||||||
|
/** 查询指标列表 */
|
||||||
|
const getList = async () => {
|
||||||
|
loading.value = true
|
||||||
|
try {
|
||||||
|
const data = await QcIndicatorApi.getIndicatorPage(queryParams)
|
||||||
|
list.value = data.list
|
||||||
|
total.value = data.total
|
||||||
|
await nextTick()
|
||||||
|
applyPreSelection()
|
||||||
|
} finally {
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 恢复预选状态(当前页可见范围内) */
|
||||||
|
const applyPreSelection = () => {
|
||||||
|
if (preSelectedIds.value.length === 0) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (props.multiple) {
|
||||||
|
const table = tableRef.value
|
||||||
|
if (!table) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
list.value.forEach((row) => {
|
||||||
|
if (preSelectedIds.value.includes(row.id)) {
|
||||||
|
table.toggleRowSelection(row, true)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
const match = list.value.find((row) => preSelectedIds.value.includes(row.id))
|
||||||
|
if (match) {
|
||||||
|
selectedRadioId.value = match.id
|
||||||
|
currentRadioRow.value = match
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
const handleQuery = () => {
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 重置查询条件 */
|
||||||
|
const resetQuery = () => {
|
||||||
|
queryParams.name = undefined
|
||||||
|
queryParams.type = undefined
|
||||||
|
handleQuery()
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 确认选择 */
|
||||||
|
const confirmSelect = () => {
|
||||||
|
if (props.multiple) {
|
||||||
|
if (selectedRows.value.length === 0) {
|
||||||
|
message.warning('请至少选择一条数据')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
emit('selected', selectedRows.value)
|
||||||
|
} else {
|
||||||
|
if (!currentRadioRow.value) {
|
||||||
|
message.warning('请选择一条数据')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
emit('selected', [currentRadioRow.value])
|
||||||
|
}
|
||||||
|
dialogVisible.value = false
|
||||||
|
}
|
||||||
|
|
||||||
|
// ==================== 打开弹窗 ====================
|
||||||
|
|
||||||
|
/** 打开弹窗,可传入已选 ID 用于预选高亮 */
|
||||||
|
const open = async (selectedIds?: number[]) => {
|
||||||
|
dialogVisible.value = true
|
||||||
|
// 重置查询条件 + 页码,避免二次打开继承上次过滤上下文
|
||||||
|
queryParams.name = undefined
|
||||||
|
queryParams.type = undefined
|
||||||
|
queryParams.pageNo = 1
|
||||||
|
// 清空上一次的选中状态
|
||||||
|
selectedRows.value = []
|
||||||
|
selectedRadioId.value = undefined
|
||||||
|
currentRadioRow.value = undefined
|
||||||
|
preSelectedIds.value = selectedIds ?? []
|
||||||
|
// 多选模式清空跨页缓存的勾选
|
||||||
|
await nextTick()
|
||||||
|
tableRef.value?.clearSelection()
|
||||||
|
await getList()
|
||||||
|
}
|
||||||
|
defineExpose({ open })
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
/* 隐藏 radio 的 label 文字,只保留圆圈 */
|
||||||
|
.radio-no-label {
|
||||||
|
:deep(.el-radio__label) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Loading…
Reference in New Issue