12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- export default {
- props: {
-
- show: {
- type: Boolean,
- default: uni.$u.props.popup.show
- },
-
- overlay: {
- type: Boolean,
- default: uni.$u.props.popup.overlay
- },
-
- mode: {
- type: String,
- default: uni.$u.props.popup.mode
- },
-
- duration: {
- type: [String, Number],
- default: uni.$u.props.popup.duration
- },
-
- closeable: {
- type: Boolean,
- default: uni.$u.props.popup.closeable
- },
-
- overlayStyle: {
- type: [Object, String],
- default: uni.$u.props.popup.overlayStyle
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: uni.$u.props.popup.closeOnClickOverlay
- },
-
- zIndex: {
- type: [String, Number],
- default: uni.$u.props.popup.zIndex
- },
-
- safeAreaInsetBottom: {
- type: Boolean,
- default: uni.$u.props.popup.safeAreaInsetBottom
- },
-
- safeAreaInsetTop: {
- type: Boolean,
- default: uni.$u.props.popup.safeAreaInsetTop
- },
-
- closeIconPos: {
- type: String,
- default: uni.$u.props.popup.closeIconPos
- },
-
- round: {
- type: [Boolean, String, Number],
- default: uni.$u.props.popup.round
- },
-
- zoom: {
- type: Boolean,
- default: uni.$u.props.popup.zoom
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.popup.bgColor
- },
-
- overlayOpacity: {
- type: [Number, String],
- default: uni.$u.props.popup.overlayOpacity
- }
- }
- }
|