123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import { defineProps } from '../../libs/util/props';
- export default defineProps('popup', {
- // 是否展示弹窗
- show: {
- type: Boolean,
- default: false
- },
- // 弹窗标题
- title: {
- type: String,
- default: ''
- },
- // 弹窗标题样式
- titleStyle: {
- type: [Object, String],
- default: () => ({})
- },
- // 是否显示遮罩
- overlay: {
- type: Boolean,
- default: true
- },
- // 弹出的方向,可选值为 top bottom right left center
- mode: {
- type: String,
- default: 'bottom'
- },
- // 动画时长,单位ms
- duration: {
- type: [String, Number],
- default: 300
- },
- // 是否显示关闭图标
- closeable: {
- type: Boolean,
- default: false
- },
- // 自定义遮罩的样式
- overlayStyle: {
- type: [Object, String],
- default: ''
- },
- // 点击遮罩是否关闭弹窗
- closeOnClickOverlay: {
- type: Boolean,
- default: true
- },
- // 层级
- zIndex: {
- type: [String, Number],
- default: 888
- },
- // 是否为iPhoneX留出底部安全距离
- safeAreaInsetBottom: {
- type: Boolean,
- default: true
- },
- // 是否留出顶部安全距离(状态栏高度)
- safeAreaInsetTop: {
- type: Boolean,
- default: false
- },
- // 自定义关闭图标
- closeIcon: {
- type: String,
- default: 'close'
- },
- // 自定义关闭图标颜色
- closeIconColor: {
- type: String,
- default: '#909399'
- },
- // 自定义关闭图标大小
- closeIconSize: {
- type: [String, Number],
- default: 18
- },
- // 自定义关闭图标位置,top-left为左上角,top-right为右上角,bottom-left为左下角,bottom-right为右下角
- closeIconPos: {
- type: String,
- default: 'top-right'
- },
- // 是否显示圆角
- round: {
- type: [Boolean, String, Number],
- default: 0
- },
- // mode=center,也即中部弹出时,是否使用缩放模式
- zoom: {
- type: Boolean,
- default: true
- },
- // 弹窗背景色,设置为transparent可去除白色背景
- bgColor: {
- type: String,
- default: ''
- },
- // 遮罩的透明度,0-1之间
- overlayOpacity: {
- type: [Number, String],
- default: 0.5
- },
- // 弹窗的margin值,单位px
- margin: {
- type: [String, Number],
- default: 0
- },
- // 弹窗的width值,单位px
- width: {
- type: [String, Number],
- default: ''
- },
- // 弹窗的height值,单位px
- height: {
- type: [String, Number],
- default: ''
- }
- })
|