iot-ui-vue/src/views/notice/Template/Detail/components/ToUser.vue

64 lines
1.3 KiB
Vue

<template>
<j-select
:options="options"
@change="change"
placeholder="请选择收信人"
style="width: 100%"
:allowClear="true"
v-model:value="_value"
/>
</template>
<script setup lang="ts">
import templateApi from '@/api/notice/template';
type Emits = {
(e: 'update:toUser', data: string | undefined): void;
};
type Props = {
toUser: string | undefined;
type: string | undefined;
configId: string | undefined;
}
const emit = defineEmits<Emits>();
const props = defineProps<Props>();
const _value = computed({
get: () => props.toUser,
set: (val: string | undefined) => emit('update:toUser', val),
});
const typeObj = {
weixin: 'wechat',
dingTalk: 'dingtalk',
};
const options = ref([]);
const queryData = async () => {
if (!props.configId) return;
const { result } = await templateApi.getUser(
typeObj[props.type],
props.configId,
);
options.value = result.map((item: any) => ({
label: item.name,
value: item.id,
}));
};
queryData();
const change = (e: any) => {
emit('update:toUser', e);
};
watch(
() => props.configId,
() => {
queryData();
},
);
</script>
<style lang="less" scoped></style>