123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- export default {
- props: {
-
- accept: {
- type: String,
- default: uni.$u.props.upload.accept
- },
-
- capture: {
- type: [String, Array],
- default: uni.$u.props.upload.capture
- },
-
- compressed: {
- type: Boolean,
- default: uni.$u.props.upload.compressed
- },
-
- camera: {
- type: String,
- default: uni.$u.props.upload.camera
- },
-
- maxDuration: {
- type: Number,
- default: uni.$u.props.upload.maxDuration
- },
-
- uploadIcon: {
- type: String,
- default: uni.$u.props.upload.uploadIcon
- },
-
- uploadIconColor: {
- type: String,
- default: uni.$u.props.upload.uploadIconColor
- },
-
- useBeforeRead: {
- type: Boolean,
- default: uni.$u.props.upload.useBeforeRead
- },
-
- afterRead: {
- type: Function,
- default: null
- },
-
- beforeRead: {
- type: Function,
- default: null
- },
-
- previewFullImage: {
- type: Boolean,
- default: uni.$u.props.upload.previewFullImage
- },
-
- maxCount: {
- type: [String, Number],
- default: uni.$u.props.upload.maxCount
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.upload.disabled
- },
-
- imageMode: {
- type: String,
- default: uni.$u.props.upload.imageMode
- },
-
- name: {
- type: String,
- default: uni.$u.props.upload.name
- },
-
- sizeType: {
- type: Array,
- default: uni.$u.props.upload.sizeType
- },
-
- multiple: {
- type: Boolean,
- default: uni.$u.props.upload.multiple
- },
-
- deletable: {
- type: Boolean,
- default: uni.$u.props.upload.deletable
- },
-
- maxSize: {
- type: [String, Number],
- default: uni.$u.props.upload.maxSize
- },
-
- fileList: {
- type: Array,
- default: uni.$u.props.upload.fileList
- },
-
- uploadText: {
- type: String,
- default: uni.$u.props.upload.uploadText
- },
-
- width: {
- type: [String, Number],
- default: uni.$u.props.upload.width
- },
-
- height: {
- type: [String, Number],
- default: uni.$u.props.upload.height
- },
-
- previewImage: {
- type: Boolean,
- default: uni.$u.props.upload.previewImage
- }
- }
- }
|