You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.2 KiB
Vue
94 lines
2.2 KiB
Vue
<!--
|
|
* @Author: weisheng
|
|
* @Date: 2023-06-12 18:40:59
|
|
* @LastEditTime: 2023-11-22 13:11:29
|
|
* @LastEditors: weisheng
|
|
* @Description:
|
|
* @FilePath: \wot-design-uni\src\uni_modules\wot-design-uni\components\wd-badge\wd-badge.vue
|
|
* 记得注释
|
|
-->
|
|
<template>
|
|
<view :class="['wd-badge', customClass]" :style="customStyle">
|
|
<slot></slot>
|
|
<view
|
|
v-if="isBadgeShow"
|
|
:class="['wd-badge__content', 'is-fixed', type ? 'wd-badge__content--' + type : '', isDot ? 'is-dot' : '']"
|
|
:style="contentStyle"
|
|
>
|
|
{{ content }}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'wd-badge',
|
|
options: {
|
|
addGlobalClass: true,
|
|
virtualHost: true,
|
|
styleIsolation: 'shared'
|
|
}
|
|
}
|
|
</script>
|
|
<script lang="ts" setup>
|
|
import { computed, ref, watch } from 'vue'
|
|
type BadgeType = 'primary' | 'success' | 'warning' | 'danger' | 'info'
|
|
interface Props {
|
|
modelValue?: number | string | null
|
|
/** 当数值为 0 时,是否展示徽标 */
|
|
showZero?: boolean
|
|
bgColor?: string
|
|
max?: number
|
|
isDot?: boolean
|
|
hidden?: boolean
|
|
type?: BadgeType
|
|
top?: number
|
|
right?: number
|
|
customClass?: string
|
|
customStyle?: string
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
customClass: '',
|
|
customStyle: '',
|
|
modelValue: null,
|
|
showZero: false
|
|
})
|
|
const content = ref<number | string | null>(null)
|
|
|
|
watch(
|
|
[() => props.modelValue, () => props.max, () => props.isDot],
|
|
() => {
|
|
notice()
|
|
},
|
|
{ immediate: true, deep: true }
|
|
)
|
|
|
|
const contentStyle = computed(() => {
|
|
return `background-color: ${props.bgColor};top:${props.top || 0}px;right:${props.right || 0}px`
|
|
})
|
|
|
|
// 是否展示徽标数字
|
|
const isBadgeShow = computed(() => {
|
|
let isBadgeShow: boolean = false
|
|
if (!props.hidden && (content.value || (content.value === 0 && props.showZero) || props.isDot)) {
|
|
isBadgeShow = true
|
|
}
|
|
return isBadgeShow
|
|
})
|
|
|
|
function notice() {
|
|
if (props.isDot) return
|
|
let value = props.modelValue
|
|
const max = props.max
|
|
if (value && max && typeof value === 'number' && !Number.isNaN(value) && !Number.isNaN(max)) {
|
|
value = max < value ? `${max}+` : value
|
|
}
|
|
content.value = value
|
|
}
|
|
</script>
|
|
|
|
<script></script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './index.scss';
|
|
</style>
|