超市积分订单补齐

This commit is contained in:
aixianling
2022-05-20 13:57:06 +08:00
parent 3f0e6bab8f
commit 8a2ccbabf2
3 changed files with 227 additions and 0 deletions

18
src/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>