根据uniapp调整工程结构

This commit is contained in:
aixianling
2024-10-31 15:06:02 +08:00
parent 9b524f390c
commit b7d6c222e7
54 changed files with 1 additions and 2 deletions

18
components/AiDict.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<span class="AiDict" :style="{color:$dict.getColor(dict,value)}" v-text="$dict.getLabel(dict,value)"/>
</template>
<script>
export default {
name: "AiDict",
props: {
value: {default: ""},
dict: {default: ""}
}
}
</script>
<style lang="scss" scoped>
.AiDict {
}
</style>