123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- export default {
- props: {
-
- show: {
- type: Boolean,
- default: uni.$u.props.modal.show
- },
-
- title: {
- type: [String],
- default: uni.$u.props.modal.title
- },
-
- content: {
- type: String,
- default: uni.$u.props.modal.content
- },
-
- confirmText: {
- type: String,
- default: uni.$u.props.modal.confirmText
- },
-
- cancelText: {
- type: String,
- default: uni.$u.props.modal.cancelText
- },
-
- showConfirmButton: {
- type: Boolean,
- default: uni.$u.props.modal.showConfirmButton
- },
-
- showCancelButton: {
- type: Boolean,
- default: uni.$u.props.modal.showCancelButton
- },
-
- confirmColor: {
- type: String,
- default: uni.$u.props.modal.confirmColor
- },
-
- cancelColor: {
- type: String,
- default: uni.$u.props.modal.cancelColor
- },
-
- buttonReverse: {
- type: Boolean,
- default: uni.$u.props.modal.buttonReverse
- },
-
- zoom: {
- type: Boolean,
- default: uni.$u.props.modal.zoom
- },
-
- asyncClose: {
- type: Boolean,
- default: uni.$u.props.modal.asyncClose
- },
-
- closeOnClickOverlay: {
- type: Boolean,
- default: uni.$u.props.modal.closeOnClickOverlay
- },
-
- negativeTop: {
- type: [String, Number],
- default: uni.$u.props.modal.negativeTop
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.modal.width
- },
-
- confirmButtonShape: {
- type: String,
- default: uni.$u.props.modal.confirmButtonShape
- }
- }
- }
|