更新记录
1.0.4(2024-01-21) 下载此版本
修改启动报res is not defined 问题
1.0.3(2024-01-19) 下载此版本
修复已知问题,相机权限获取失败时新增提醒和log输出
1.0.2(2024-01-18) 下载此版本
调整半身辅助框位置
查看更多平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.91 | × | √ | × | × | × | × |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 | 鸿蒙元服务 |
---|---|---|---|---|
× | × | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
× | × | × | × | × | × | × | × | × |
bow-camera 相机拍照
使用方法:
<template>
<!--
@devicePosition: 摄像头位置 前置或后置摄像头,值为front, bac
@quality: 成像质量,值为high(高质量)、normal(普通质量)、low(低质量)
-->
<bow-camera
:devicePosition="front"
:quality="high"
@chooseImage="chooseImage"
@confirmPhoto="confirmPhoto"
></bow-camera>
</template>
<script>
import bowCamera from '@/uni_modules/bow-camera/components/bow-camera/bow-camera.vue';
export default {
data() {
return {
}
},
components: {
bowCamera
},
methods: {
chooseImage(filePath){
console.log('选择的相册图片: ' + filePath);
},
confirmPhoto(filePath){
console.log('拍摄的图片: ' + filePath);
}
}
}
</script>
<style lang="scss" scoped>
</style>