广丰卷烟厂数采质量分析系统
zhuguifei
2026-03-04 64c2870483568cdeb0206661249a19c5b06de8fe
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 { fetchGetRoleSelect } from '@/service/api/system';
 
defineOptions({
  name: 'RoleSelect'
});
 
interface Props {
  [key: string]: any;
}
 
defineProps<Props>();
 
const value = defineModel<CommonType.IdType[] | null>('value', { required: false });
 
const attrs: SelectProps = useAttrs();
 
const { loading: roleLoading, startLoading: startRoleLoading, endLoading: endRoleLoading } = useLoading();
 
/** the enabled role options */
const roleOptions = ref<CommonType.Option<CommonType.IdType>[]>([]);
 
async function getRoleOptions() {
  startRoleLoading();
  const { error, data } = await fetchGetRoleSelect();
 
  if (!error) {
    roleOptions.value = data.map(item => ({
      label: item.roleName,
      value: item.roleId
    }));
  }
  endRoleLoading();
}
 
getRoleOptions();
</script>
 
<template>
  <NSelect
    v-model:value="value"
    :loading="roleLoading"
    :options="roleOptions"
    v-bind="attrs"
    placeholder="请选择角色"
  />
</template>
 
<style scoped></style>