mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-11-04 12:18:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export default {
 | 
						||
    props: {
 | 
						||
        // 需要显示的提示文字
 | 
						||
        text: {
 | 
						||
            type: [String, Number],
 | 
						||
            default: uni.$u.props.tooltip.text
 | 
						||
        },
 | 
						||
        // 点击复制按钮时,复制的文本,为空则使用text值
 | 
						||
        copyText: {
 | 
						||
            type: [String, Number],
 | 
						||
            default: uni.$u.props.tooltip.copyText
 | 
						||
        },
 | 
						||
        // 文本大小
 | 
						||
        size: {
 | 
						||
            type: [String, Number],
 | 
						||
            default: uni.$u.props.tooltip.size
 | 
						||
        },
 | 
						||
        // 字体颜色
 | 
						||
        color: {
 | 
						||
            type: String,
 | 
						||
            default: uni.$u.props.tooltip.color
 | 
						||
        },
 | 
						||
        // 弹出提示框时,文本的背景色
 | 
						||
        bgColor: {
 | 
						||
            type: String,
 | 
						||
            default: uni.$u.props.tooltip.bgColor
 | 
						||
        },
 | 
						||
        // 弹出提示的方向,top-上方,bottom-下方
 | 
						||
        direction: {
 | 
						||
            type: String,
 | 
						||
            default: uni.$u.props.tooltip.direction
 | 
						||
        },
 | 
						||
        // 弹出提示的z-index,nvue无效
 | 
						||
        zIndex: {
 | 
						||
            type: [String, Number],
 | 
						||
            default: uni.$u.props.tooltip.zIndex
 | 
						||
        },
 | 
						||
        // 是否显示复制按钮
 | 
						||
        showCopy: {
 | 
						||
            type: Boolean,
 | 
						||
            default: uni.$u.props.tooltip.showCopy
 | 
						||
        },
 | 
						||
        // 扩展的按钮组
 | 
						||
        buttons: {
 | 
						||
            type: Array,
 | 
						||
            default: uni.$u.props.tooltip.buttons
 | 
						||
        },
 | 
						||
        // 是否显示透明遮罩以防止触摸穿透
 | 
						||
        overlay: {
 | 
						||
            type: Boolean,
 | 
						||
            default: uni.$u.props.tooltip.overlay
 | 
						||
        },
 | 
						||
        // 是否显示复制成功或者失败的toast
 | 
						||
        showToast: {
 | 
						||
            type: Boolean,
 | 
						||
            default: uni.$u.props.tooltip.showToast
 | 
						||
        }
 | 
						||
    }
 | 
						||
}
 |