feat(mes):tm tool 的 tm-tool-select.vue 组件

pull/348/head
YunaiV 2026-05-24 18:36:20 +08:00
parent 6fb45f1ded
commit 51a05bfc39
4 changed files with 115 additions and 0 deletions

View File

@ -0,0 +1 @@
export { default as TmToolSelect } from './tm-tool-select.vue';

View File

@ -0,0 +1,58 @@
<script lang="ts" setup>
import type { SelectValue } from 'ant-design-vue/es/select';
import type { MesTmToolApi } from '#/api/mes/tm/tool';
import { onMounted, ref } from 'vue';
import { Select } from 'ant-design-vue';
import { getToolSimpleList } from '#/api/mes/tm/tool';
withDefaults(
defineProps<{
allowClear?: boolean;
disabled?: boolean;
modelValue?: number;
placeholder?: string;
}>(),
{ allowClear: true, disabled: false, modelValue: undefined, placeholder: '请选择工具' },
);
const emit = defineEmits<{
change: [row?: MesTmToolApi.Tool];
'update:modelValue': [value?: number];
}>();
const list = ref<MesTmToolApi.Tool[]>([]); //
/** 加载工具列表 */
async function getList() {
list.value = await getToolSimpleList();
}
/** 处理工具选择变化 */
function handleChange(value: SelectValue) {
const toolId = typeof value === 'number' ? value : undefined;
emit('update:modelValue', toolId);
emit(
'change',
list.value.find((item) => item.id === toolId),
);
}
onMounted(getList);
</script>
<template>
<Select
:allow-clear="allowClear"
:disabled="disabled"
:field-names="{ label: 'name', value: 'id' }"
:options="list"
:placeholder="placeholder"
:value="modelValue"
class="w-full"
option-filter-prop="name"
show-search
@change="handleChange"
/>
</template>

View File

@ -0,0 +1 @@
export { default as TmToolSelect } from './tm-tool-select.vue';

View File

@ -0,0 +1,55 @@
<script lang="ts" setup>
import type { MesTmToolApi } from '#/api/mes/tm/tool';
import { onMounted, ref } from 'vue';
import { ElOption, ElSelect } from 'element-plus';
import { getToolSimpleList } from '#/api/mes/tm/tool';
withDefaults(
defineProps<{
clearable?: boolean;
disabled?: boolean;
modelValue?: number;
placeholder?: string;
}>(),
{ clearable: true, disabled: false, modelValue: undefined, placeholder: '请选择工具' },
);
const emit = defineEmits<{
change: [row?: MesTmToolApi.Tool];
'update:modelValue': [value?: number];
}>();
const list = ref<MesTmToolApi.Tool[]>([]); //
/** 加载工具列表 */
async function getList() {
list.value = await getToolSimpleList();
}
/** 处理工具选择变化 */
function handleChange(value: number | string | undefined) {
const toolId = typeof value === 'number' ? value : undefined;
emit('update:modelValue', toolId);
emit(
'change',
list.value.find((item) => item.id === toolId),
);
}
onMounted(getList);
</script>
<template>
<ElSelect
:clearable="clearable"
:disabled="disabled"
:model-value="modelValue"
:placeholder="placeholder"
class="w-full"
filterable
@change="handleChange"
>
<ElOption v-for="item in list" :key="item.id" :label="item.name" :value="item.id!" />
</ElSelect>
</template>