<script lang="ts" setup>
|
import type { MesProWorkOrderApi } from '#/api/mes/pro/workorder';
|
|
import { computed, ref, useAttrs, watch } from 'vue';
|
|
import { IconifyIcon } from '@vben/icons';
|
|
import { Input, Tooltip } from 'ant-design-vue';
|
|
import { getWorkOrder } from '#/api/mes/pro/workorder';
|
|
import ProWorkOrderSelectDialog from './select-dialog.vue';
|
|
defineOptions({ name: 'ProWorkOrderSelect', inheritAttrs: false });
|
|
const props = withDefaults(
|
defineProps<{
|
allowClear?: boolean;
|
disabled?: boolean;
|
modelValue?: number;
|
placeholder?: string;
|
status?: number;
|
type?: number;
|
}>(),
|
{
|
allowClear: true,
|
disabled: false,
|
modelValue: undefined,
|
placeholder: '请选择订单',
|
status: undefined,
|
type: undefined,
|
},
|
);
|
|
const emit = defineEmits<{
|
change: [item: MesProWorkOrderApi.WorkOrder | undefined];
|
'update:modelValue': [value: number | undefined];
|
}>();
|
|
const attrs = useAttrs(); // 透传属性
|
const dialogRef = ref<InstanceType<typeof ProWorkOrderSelectDialog>>(); // 订单选择弹窗
|
const hovering = ref(false); // 是否悬停
|
const selectedItem = ref<MesProWorkOrderApi.WorkOrder>(); // 当前选中订单
|
|
const displayLabel = computed(() => selectedItem.value?.code ?? ''); // 选择器展示编码
|
const showClear = computed(
|
() =>
|
// 是否显示清空图标
|
props.allowClear &&
|
!props.disabled &&
|
hovering.value &&
|
props.modelValue !== undefined &&
|
props.modelValue !== null,
|
);
|
|
/** 根据编号单条查询订单信息(用于编辑回显) */
|
async function resolveItemById(id: number | undefined) {
|
if (!id) {
|
selectedItem.value = undefined;
|
return;
|
}
|
if (selectedItem.value?.id === id) {
|
return;
|
}
|
selectedItem.value = await getWorkOrder(id);
|
}
|
|
watch(() => props.modelValue, resolveItemById, { immediate: true });
|
|
/** 清空已选订单 */
|
function clearSelected() {
|
selectedItem.value = undefined;
|
emit('update:modelValue', undefined);
|
emit('change', undefined);
|
}
|
|
/** 打开订单选择弹窗 */
|
function handleClick(event: MouseEvent) {
|
if (props.disabled) {
|
return;
|
}
|
const target = event.target as HTMLElement;
|
if (showClear.value && target.closest('.ant-input-suffix')) {
|
event.stopPropagation();
|
clearSelected();
|
return;
|
}
|
const selectedIds = (
|
props.modelValue === null ? [] : [props.modelValue]
|
) as number[];
|
dialogRef.value?.open(selectedIds, { multiple: false });
|
}
|
|
/** 弹窗选中回调 */
|
function handleSelected(rows: MesProWorkOrderApi.WorkOrder[]) {
|
const item = rows[0];
|
if (!item) {
|
return;
|
}
|
selectedItem.value = item;
|
emit('update:modelValue', item.id);
|
emit('change', item);
|
}
|
</script>
|
|
<template>
|
<div
|
v-bind="attrs"
|
class="w-full"
|
:class="disabled ? 'cursor-not-allowed' : 'cursor-pointer'"
|
@click="handleClick"
|
@mouseenter="hovering = true"
|
@mouseleave="hovering = false"
|
>
|
<Tooltip :mouse-enter-delay="0.5" :open="selectedItem ? undefined : false">
|
<template #title>
|
<div v-if="selectedItem" class="leading-6">
|
<div>编码:{{ selectedItem.code || '-' }}</div>
|
<div>名称:{{ selectedItem.name || '-' }}</div>
|
<div>产品:{{ selectedItem.productName || '-' }}</div>
|
<div>数量:{{ selectedItem.quantity ?? '-' }}</div>
|
</div>
|
</template>
|
<Input
|
:disabled="disabled"
|
:placeholder="placeholder"
|
:value="displayLabel"
|
readonly
|
>
|
<template #suffix>
|
<IconifyIcon
|
class="size-4"
|
:icon="showClear ? 'lucide:circle-x' : 'lucide:search'"
|
/>
|
</template>
|
</Input>
|
</Tooltip>
|
</div>
|
<ProWorkOrderSelectDialog
|
ref="dialogRef"
|
:status="status"
|
:type="type"
|
@selected="handleSelected"
|
/>
|
</template>
|