mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
54 lines
1017 B
JavaScript
54 lines
1017 B
JavaScript
// props for choose image
|
|
export const chooseImageProps = {
|
|
sizeType: {
|
|
type: Array,
|
|
value: ['original', 'compressed'],
|
|
},
|
|
capture: {
|
|
type: Array,
|
|
value: ['album', 'camera'],
|
|
},
|
|
};
|
|
// props for choose video
|
|
export const chooseVideoProps = {
|
|
capture: {
|
|
type: Array,
|
|
value: ['album', 'camera'],
|
|
},
|
|
compressed: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
maxDuration: {
|
|
type: Number,
|
|
value: 60,
|
|
},
|
|
camera: {
|
|
type: String,
|
|
value: 'back',
|
|
},
|
|
};
|
|
// props for choose media
|
|
export const chooseMediaProps = {
|
|
capture: {
|
|
type: Array,
|
|
value: ['album', 'camera'],
|
|
},
|
|
mediaType: {
|
|
type: Array,
|
|
value: ['image', 'video'],
|
|
},
|
|
maxDuration: {
|
|
type: Number,
|
|
value: 60,
|
|
},
|
|
camera: {
|
|
type: String,
|
|
value: 'back',
|
|
},
|
|
};
|
|
// props for choose file
|
|
export const chooseMessageFileProps = {
|
|
extension: null,
|
|
};
|