feat: 保存字典值.

This commit is contained in:
lijiahangmax
2023-10-21 02:26:36 +08:00
parent bd02ce1dd0
commit eb2c8eb719
13 changed files with 168 additions and 41 deletions

View File

@@ -16,14 +16,13 @@
</script>
<script lang="ts" setup>
import { computed } from 'vue';
import { computed, PropType } from 'vue';
import { useCacheStore } from '@/store';
import { SelectOptionData } from '@arco-design/web-vue';
import { RoleStatusEnum } from '@/views/user/role/types/enum.types';
const props = defineProps({
// FIXME 拆出来单选多选
modelValue: Array,
modelValue: Object as PropType<Array<number>> | PropType<number>,
loading: Boolean,
multiple: Boolean,
});