feat: 首次提交
This commit is contained in:
368
components/firstui/fui-tag/fui-tag.vue
Normal file
368
components/firstui/fui-tag/fui-tag.vue
Normal file
@ -0,0 +1,368 @@
|
||||
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号:186 14 07 25 49,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||||
<template>
|
||||
<view class="fui-tag__wrap"
|
||||
:class="[highlight?'fui-tag__opacity':'',originLeft?'fui-tag__origin-left':'',originRight?'fui-tag__origin-right':'',!background?`fui-tag__${type}-${theme}`:'',(background && !borderColor) || !isBorder?'fui-tag__no-border':'']"
|
||||
:style="{backgroundColor:getBackground,fontSize:size+'rpx',lineHeight:size+'rpx',color:color,borderColor:getBorderColor,transform: `scale(${scaleRatio})`,borderRadius:radius+'rpx',paddingTop:padding[0] || 0,paddingRight:padding[1]|| 0,paddingBottom:padding[2] || padding[0] || 0,paddingLeft:padding[3] || padding[1] || 0,marginTop:marginTop+'rpx',marginRight:marginRight+'rpx',marginBottom:marginBottom+'rpx',marginLeft:marginLeft+'rpx'}"
|
||||
@tap="handleClick">
|
||||
<text v-if="text" class="fui-tag__text" :class="[!background?`fui-tag_${type}-${theme}`:'']"
|
||||
:style="{fontSize:size+'rpx',lineHeight:size+'rpx',color:getColor}">{{text}}</text>
|
||||
<slot></slot>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
function hexToRGB(hex) {
|
||||
if (hex.length === 4) {
|
||||
let text = hex.substring(1, 4);
|
||||
hex = '#' + text + text;
|
||||
}
|
||||
let result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
||||
return result ? `${parseInt(result[1], 16)},${parseInt(result[2], 16)},${parseInt(result[3], 16)}` : '241,244,250';
|
||||
}
|
||||
export default {
|
||||
name: "fui-tag",
|
||||
emits: ['click'],
|
||||
props: {
|
||||
text: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//类型:primary,success,warning,danger,purple
|
||||
type: {
|
||||
type: String,
|
||||
default: 'primary'
|
||||
},
|
||||
//三种主题:dark、light、plain。background为空时生效
|
||||
theme: {
|
||||
type: String,
|
||||
default: 'dark'
|
||||
},
|
||||
//背景色,如果设置背景则type失效
|
||||
background: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//v2.0.0+
|
||||
isBorder: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
borderColor: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//字体颜色
|
||||
color: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//字体大小 rpx
|
||||
size: {
|
||||
type: [Number, String],
|
||||
default: 24
|
||||
},
|
||||
//缩放比例
|
||||
scaleRatio: {
|
||||
type: Number,
|
||||
default: 1
|
||||
},
|
||||
originLeft: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
originRight: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//是否有点击效果
|
||||
highlight: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
radius: {
|
||||
type: [Number, String],
|
||||
default: 8
|
||||
},
|
||||
//padding值,上右下左,同css顺序
|
||||
padding: {
|
||||
type: Array,
|
||||
default () {
|
||||
return ['16rpx', '32rpx']
|
||||
}
|
||||
},
|
||||
//margin-top值
|
||||
marginTop: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
marginBottom: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
marginLeft: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
marginRight: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
index: {
|
||||
type: Number,
|
||||
default: 0
|
||||
}
|
||||
},
|
||||
data() {
|
||||
const app = uni && uni.$fui && uni.$fui.color;
|
||||
return {
|
||||
// #ifdef APP-NVUE
|
||||
dark: {
|
||||
primary: (app && app.primary) || '#465CFF',
|
||||
success: (app && app.success) || '#09BE4F',
|
||||
warning: (app && app.warning) || '#FFB703',
|
||||
danger: (app && app.danger) || '#FF2B2B',
|
||||
purple: (app && app.purple) || '#6831FF',
|
||||
}
|
||||
// #endif
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
getBackground() {
|
||||
let background = this.background
|
||||
// #ifdef APP-NVUE
|
||||
if (!background) {
|
||||
switch (this.theme) {
|
||||
case 'light':
|
||||
background = `rgba(${hexToRGB(this.dark[this.type])},.05)`
|
||||
break;
|
||||
case 'dark':
|
||||
background = this.dark[this.type]
|
||||
break;
|
||||
default:
|
||||
background = "rgba(0,0,0,0)"
|
||||
break;
|
||||
}
|
||||
}
|
||||
// #endif
|
||||
return background;
|
||||
},
|
||||
getColor() {
|
||||
let color = this.color
|
||||
// #ifdef APP-NVUE
|
||||
if (!color) {
|
||||
if (this.theme === 'dark') {
|
||||
color = '#fff'
|
||||
} else {
|
||||
color = this.dark[this.type]
|
||||
}
|
||||
}
|
||||
// #endif
|
||||
return color;
|
||||
},
|
||||
getBorderColor() {
|
||||
let borderColor = this.borderColor
|
||||
// #ifdef APP-NVUE
|
||||
if (!borderColor) {
|
||||
if (this.theme === 'light') {
|
||||
borderColor = `rgba(${hexToRGB(this.dark[this.type])},.05)`
|
||||
} else {
|
||||
borderColor = this.dark[this.type]
|
||||
}
|
||||
}
|
||||
// #endif
|
||||
return borderColor;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleClick() {
|
||||
this.$emit('click', {
|
||||
index: this.index
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fui-tag__wrap {
|
||||
/* #ifndef APP-NVUE */
|
||||
display: inline-flex;
|
||||
box-sizing: border-box;
|
||||
flex-shrink: 0;
|
||||
max-width: 100%;
|
||||
white-space: nowrap;
|
||||
/* #endif */
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
/* #ifdef APP-NVUE */
|
||||
border-width: 0.5px;
|
||||
/* #endif */
|
||||
/* #ifndef APP-NVUE */
|
||||
border-width: 1rpx;
|
||||
/* #endif */
|
||||
border-style: solid;
|
||||
border-color: transparent;
|
||||
font-weight: normal;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.fui-tag__no-border {
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
.fui-tag__text {
|
||||
/* #ifdef APP-NVUE */
|
||||
lines: 1;
|
||||
/* #endif */
|
||||
/* #ifndef APP-NVUE */
|
||||
white-space: nowrap;
|
||||
/* #endif */
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
.fui-tag__primary-dark {
|
||||
background-color: var(--fui-color-primary, #465CFF) !important;
|
||||
border-color: var(--fui-color-primary, #465CFF) !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fui-tag_primary-dark,
|
||||
.fui-tag_success-dark,
|
||||
.fui-tag_warning-dark,
|
||||
.fui-tag_danger-dark,
|
||||
.fui-tag_purple-dark {
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fui-tag__success-dark {
|
||||
background-color: var(--fui-color-success, #09BE4F) !important;
|
||||
border-color: var(--fui-color-success, #09BE4F) !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
|
||||
.fui-tag__warning-dark {
|
||||
background-color: var(--fui-color-warning, #FFB703) !important;
|
||||
border-color: var(--fui-color-warning, #FFB703) !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fui-tag__danger-dark {
|
||||
background-color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
border-color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fui-tag__purple-dark {
|
||||
background-color: var(--fui-color-purple, #6831FF) !important;
|
||||
border-color: var(--fui-color-purple, #6831FF) !important;
|
||||
color: #FFFFFF !important;
|
||||
}
|
||||
|
||||
.fui-tag__primary-light {
|
||||
background-color: var(--fui-bg-color-grey, #F1F4FA) !important;
|
||||
border-color: var(--fui-bg-color-grey, #F1F4FA) !important;
|
||||
color: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
.fui-tag_primary-light,
|
||||
.fui-tag_primary-plain {
|
||||
color: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
.fui-tag__success-light {
|
||||
background-color: var(--fui-bg-color-green, rgba(9, 190, 79, .05)) !important;
|
||||
border-color: var(--fui-bg-color-green, rgba(9, 190, 79, .05)) !important;
|
||||
color: var(--fui-color-success, #09BE4F) !important;
|
||||
}
|
||||
|
||||
.fui-tag_success-light,
|
||||
.fui-tag_success-plain {
|
||||
color: var(--fui-color-success, #09BE4F) !important;
|
||||
}
|
||||
|
||||
.fui-tag__warning-light {
|
||||
background-color: var(--fui-bg-color-yellow, rgba(255, 183, 3, .1)) !important;
|
||||
border-color: var(--fui-bg-color-yellow, rgba(255, 183, 3, .1)) !important;
|
||||
color: var(--fui-color-warning, #FFB703) !important;
|
||||
|
||||
}
|
||||
|
||||
.fui-tag_warning-light,
|
||||
.fui-tag_warning-plain {
|
||||
color: var(--fui-color-warning, #FFB703) !important;
|
||||
|
||||
}
|
||||
|
||||
.fui-tag__danger-light {
|
||||
background-color: var(--fui-bg-color-red, rgba(255, 43, 43, .05)) !important;
|
||||
border-color: var(--fui-bg-color-red, rgba(255, 43, 43, .05)) !important;
|
||||
color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
}
|
||||
|
||||
.fui-tag__danger-light,
|
||||
.fui-tag__danger-plain {
|
||||
color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
}
|
||||
|
||||
.fui-tag__purple-light {
|
||||
background-color: var(--fui-bg-color-purple, rgba(104, 49, 255, .05)) !important;
|
||||
border-color: var(--fui-bg-color-purple, rgba(104, 49, 255, .05)) !important;
|
||||
color: var(--fui-color-purple, #6831FF) !important;
|
||||
}
|
||||
|
||||
.fui-tag_purple-light,
|
||||
.fui-tag_purple-plain {
|
||||
color: var(--fui-color-purple, #6831FF) !important;
|
||||
}
|
||||
|
||||
.fui-tag__primary-plain {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
border-color: var(--fui-color-primary, #465CFF) !important;
|
||||
color: var(--fui-color-primary, #465CFF) !important;
|
||||
}
|
||||
|
||||
.fui-tag__success-plain {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
border-color: var(--fui-color-success, #09BE4F) !important;
|
||||
color: var(--fui-color-success, #09BE4F) !important;
|
||||
}
|
||||
|
||||
.fui-tag__warning-plain {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
border-color: var(--fui-color-warning, #FFB703) !important;
|
||||
color: var(--fui-color-warning, #FFB703) !important;
|
||||
}
|
||||
|
||||
.fui-tag__danger-plain {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
border-color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
color: var(--fui-color-danger, #FF2B2B) !important;
|
||||
}
|
||||
|
||||
.fui-tag__purple-plain {
|
||||
background-color: rgba(0, 0, 0, 0) !important;
|
||||
border-color: var(--fui-color-purple, #6831FF) !important;
|
||||
color: var(--fui-color-purple, #6831FF) !important;
|
||||
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.fui-tag__origin-left {
|
||||
transform-origin: 0 center;
|
||||
}
|
||||
|
||||
.fui-tag__origin-right {
|
||||
transform-origin: 100% center;
|
||||
}
|
||||
|
||||
.fui-tag__opacity:active {
|
||||
opacity: 0.5;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user