fix: 🐛 兼容字典下拉数据源和回显值类型不一致场景

Former-commit-id: 9823b72487d02b4286249fd783a1bc836f1f3b5b
This commit is contained in:
hxr
2023-08-28 23:18:17 +08:00
parent a2c858ecca
commit 5fd62c26fe
2 changed files with 34 additions and 22 deletions

View File

@@ -1,7 +1,7 @@
<!-- 字典组件示例 -->
<script setup lang="ts">
const stringValue = ref("1"); // 性别(值为String)
const nmberValue = ref(1); // 性别(值为Number)
const numberValue = ref(1); // 性别(值为Number)
</script>
<template>
@@ -22,7 +22,7 @@ const nmberValue = ref(1); // 性别(值为Number)
</el-form-item>
<el-form-item label="性别">
<dictionary v-model="nmberValue" type-code="gender" />
<dictionary v-model="numberValue" type-code="gender" />
<el-link :underline="false" type="success" class="ml-5"
>值为Number: const value = ref(1);
</el-link>