1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- 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
- },
-
- duration:{
- type:String | Number,
- default: uni.$u.props.modal.duration
- }
- }
- }
|