超市积分订单补齐

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>

View File

@@ -55,6 +55,10 @@ export default {
min-height: 100px;
padding: 20px 32px;
box-sizing: border-box;
*:last-child {
margin-bottom: 0 !important;
}
}
::v-deep .u-search {