广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-02 80ff784bf60637cd348ae665fc907f7b1e527dd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<script setup lang="ts">
import { ref, useAttrs } from 'vue';
import type { SelectProps } from 'naive-ui';
import { useLoading } from '@sa/hooks';
import { fetchGetUserSelect } from '@/service/api/system';
 
defineOptions({
  name: 'UserSelect'
});
 
interface Props {
  [key: string]: any;
}
 
defineProps<Props>();
 
const value = defineModel<CommonType.IdType | null>('value', { required: false });
 
const attrs: SelectProps = useAttrs();
 
const { loading: userLoading, startLoading: startUserLoading, endLoading: endUserLoading } = useLoading();
 
/** the enabled role options */
const userOptions = ref<CommonType.Option<CommonType.IdType>[]>([]);
 
async function getUserOptions() {
  startUserLoading();
  const { error, data } = await fetchGetUserSelect();
 
  if (!error) {
    userOptions.value = data.map(item => ({
      label: `${item.nickName} ( ${item.userName} )`,
      value: item.userId
    }));
  }
  endUserLoading();
}
 
getUserOptions();
</script>
 
<template>
  <NSelect
    v-model:value="value"
    :loading="userLoading"
    :options="userOptions"
    v-bind="attrs"
    placeholder="请选择用户"
  />
</template>
 
<style scoped></style>