You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.4 KiB
88 lines
1.4 KiB
2 months ago
|
<template>
|
||
|
<view :class="[getClass, 'dict-tag']">{{ current.label }}</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'cs-dictTag',
|
||
|
data() {
|
||
|
return {
|
||
|
current: {}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
getClass() {
|
||
|
return this.current?.colorType || 'info'
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
dict: {
|
||
|
type: Array,
|
||
|
required: true,
|
||
|
default: () => {
|
||
|
return []
|
||
|
}
|
||
|
},
|
||
|
value: {
|
||
|
type: Number,
|
||
|
required: true
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
|
'$props.value': {
|
||
|
handler: function (v) {
|
||
|
if (v) {
|
||
|
this.getDickObj()
|
||
|
}
|
||
|
},
|
||
|
deep: true,
|
||
|
immediate: true
|
||
|
},
|
||
|
'$props.dict': {
|
||
|
handler: function (v) {
|
||
|
if (v) {
|
||
|
this.getDickObj()
|
||
|
}
|
||
|
},
|
||
|
deep: true,
|
||
|
immediate: true
|
||
|
}
|
||
|
},
|
||
|
mounted() {},
|
||
|
methods: {
|
||
|
getDickObj() {
|
||
|
this.current = this.$props.dict.find(i => i.value == this.$props.value)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.success {
|
||
|
color: #17c653;
|
||
|
background-color: #eafff1;
|
||
|
}
|
||
|
.primary {
|
||
|
color: $uni-color-primary;
|
||
|
background-color: rgba($uni-color-primary, 0.2);
|
||
|
}
|
||
|
.warning {
|
||
|
color: #f6b100;
|
||
|
background-color: #fff8dd;
|
||
|
}
|
||
|
.error {
|
||
|
color: #f8285a;
|
||
|
background-color: #ffeef3;
|
||
|
}
|
||
|
.info {
|
||
|
background-color: #f1f1f4;
|
||
|
color: #99a1b7;
|
||
|
}
|
||
|
.dict-tag {
|
||
|
min-width: 100px;
|
||
|
text-align: center;
|
||
|
font-size: 12px;
|
||
|
padding: 4px 20px;
|
||
|
}
|
||
|
</style>
|