• uniapp-vue3-微信小程序-标签选择器wo-tag


    采用uniapp-vue3实现, 是一款支持高度自定义的标签选择器组件,支持H5、微信小程序(其他小程序未测试过,可自行尝试)

    可到插件市场下载尝试: https://ext.dcloud.net.cn/plugin?id=14960

    • 使用示例
      请添加图片描述
    <template>
    	<view>
    		<view class="name">标签选择器组件: wo-tag</view>
    		<view class="card">
    			<view class="header">属性-基本用法(包括disabled禁用)</view>
    			<view class="content">
    				<woTag :default-value="state.defaultValue" :options="state.options" @change-select="onChangeTag">
    				</woTag>
    			</view>
    		</view>
    		<view class="card">
    			<view class="header">属性-行内滑动:</view>
    			<view class="content">
    				<woTag row :options="state.options" @change-select="onChangeTag">
    				</woTag>
    			</view>
    		</view>
    		<view class="card">
    			<view class="header">属性-多选:</view>
    			<view class="content">
    				<woTag mult :options="state.options" @change-select="onChangeTag">
    				</woTag>
    			</view>
    		</view>
    		<view class="card">
    			<view class="header">属性-限制选择个数:最多可选2个(开启多选的情况下可用):</view>
    			<view class="content">
    				<woTag mult :limit="2" :options="state.options" @change-select="onChangeTag">
    				</woTag>
    			</view>
    		</view>
    		<view class="card">
    			<view class="header">属性-自定义初始化样式和激活样式:</view>
    			<view class="content">
    				<woTag :activate-style="state.activateObj" :init-style="state.initObj" :options="state.options" @change-select="onChangeTag">
    				</woTag>
    			</view>
    		</view>
    		<view class="card">
    			<view class="header">插槽-自定义显示内容:</view>
    			<view class="content">
    				<woTag mult :position="'right'" :default-value="state.selectValue" :options="state.options" @change-select="onChangeTagOne">
    					<template v-slot:default="slotProps">
    						<view style="display: flex;">
    							<view style="padding-right: 4rpx;" v-if="state.selectValue.includes(slotProps.item.value)"></view>
    							<view style="padding-right: 4rpx;" v-else></view>
    							<text>{{ slotProps.item.label }}</text>
    						</view>
    					</template>
    				</woTag>
    			</view>
    		</view>
    	</view>
    </template>
    
    <script setup lang="ts">
    import woTag from './woTag.vue'
    import { reactive } from 'vue';
    
    const state = reactive({
      options: [
    		{
    			label: '标签一',
    			value: 0
    		},
    		{
    			label: '标签二',
    			value: 1
    		},
    		{
    			label: '标签三',
    			value: 2
    		},
    		{
    			label: '标签四',
    			value: 3
    		},
    		{
    			label: '标签五',
    			value: 4,
    			disabled: true
    		},
    		{
    			label: '标签六',
    			value: 5
    		},
    		{
    			label: '标签七',
    			value: 6
    		},
    	],
      defaultValue: [2],
    	selectValue: [2],
    	activateObj: {
    		border: '1rpx solid orange',
    		background: '#fff',
    		color: 'orange',
    		borderRadius: '30rpx',
    		padding: '8rpx 12rpx'
    	},
    	initObj: {
    		border: '1rpx solid #f3f3f3',
    		background: '#fff',
    		color: '#333',
    		borderRadius: '30rpx',
    		padding: '8rpx 12rpx'
    	}
    });
    const onChangeTag = (e: any) => {
    	console.log('选中的标签:', e);
    };
    const onChangeTagOne = (e: any) => {
    	state.selectValue = []
    	e.forEach(elemt => {
    		state.selectValue.push(elemt.value)
    	})
    };
    </script>
    
    <style scoped>
    .flex-center {
    	display: flex;
    	justify-content: center;
    	align-items: center;
    }
    .name {
    	font-weight: bold;
    	padding: 40rpx 0 10rpx 20rpx;
    }
    .card {
    	background: #f1f1f1;
    	margin: 40rpx 10rpx;
    	padding: 30rpx;
    	border-radius: 12rpx;
    }
    .header {
    	font-size: 26rpx;
    	display: flex;
    	align-items: center;
    	margin-bottom: 30rpx;
    }
    .content {
    	font-size: 24rpx;
    }
    </style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
  • 相关阅读:
    吃透Chisel语言.36.Chisel实战之以FIFO为例(一)——FIFO Buffer和Bubble FIFO的Chisel实现
    设计模式---装饰器模式
    HashMap
    如何评价GPT-4o?
    ceph-ansible安装指南-centos8安装ceph- pacific
    AI推介-大语言模型LLMs论文速览(arXiv方向):2024.05.05-2024.05.10
    将字符串中的数据按指定分隔符分割依次存入一维数组中 numpy.fromstring()
    Windows 进程监视工具
    Dataloader有哪些使用方法
    【VMware vCenter】使用Reduced Downtime Update (RDU)升级更新vCenter Server。
  • 原文地址:https://blog.csdn.net/qq_42278240/article/details/133812844