更换为null_time,null_int

This commit is contained in:
xiangheng
2024-08-16 01:03:54 +08:00
parent 1fc96a59b0
commit edd6d9df0e
94 changed files with 2893 additions and 1126 deletions

View File

@@ -2,12 +2,15 @@
<div>
<template v-for="(item, index) in getOptions" :key="index">
<span :style="{ color: item.color }"
>{{ index != 0 ? '、' : '' }}{{ item[props.valueKey] }}</span
>{{ index != 0 ? '、' : '' }}{{ item[props.labelKey] }}</span
>
</template>
</div>
</template>
<script lang="ts" setup>
defineOptions({
name: 'dict-value'
})
const props = withDefaults(
defineProps<{
options: any[]