faceRegister.nvue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. <template>
  2. <view class="main" id="main">
  3. <epii-camera ref="camera" class="epiiCamer" :style="{width:width,height:height}"></epii-camera>
  4. <cover-view>
  5. <image :style="{width:width,height:height}" src="../../static/sl.gif" mode="scaleToFill"></image>
  6. </cover-view>
  7. </view>
  8. </template>
  9. <script>
  10. import http from '../../common/http.js'
  11. export default {
  12. data() {
  13. return {
  14. type: 1,
  15. cameraId: 0,
  16. height: "500rpx",
  17. width: "750rpx",
  18. userId: '',
  19. }
  20. },
  21. onLoad(options) {
  22. this.type = options.type || 1;
  23. this.userId = uni.getStorageSync('info').id;
  24. this.height = uni.getSystemInfoSync().screenHeight + 'px';
  25. this.$nextTick(() => {
  26. //这里可以做打开摄像头等功能
  27. this.openCamera(1)
  28. })
  29. },
  30. beforeDestroy() {
  31. this.release();
  32. },
  33. mounted() {
  34. //console.log(this.$refs.camera)
  35. //this.common.hidingLoading();
  36. },
  37. methods: {
  38. takePicture(e) {
  39. const that = this;
  40. that.$refs.camera.takePicture({
  41. base64: true,
  42. quailty: 55,
  43. }, function(data) {
  44. let img = data.img;
  45. that.registerFace(img);
  46. return
  47. });
  48. },
  49. registerFace(img) {
  50. if (!img) {
  51. return;
  52. }
  53. const that = this;
  54. let data = {
  55. id: that.userId,
  56. img: img,
  57. type: that.type
  58. };
  59. let header = {
  60. satoken: uni.getStorageSync('token'),
  61. 'Content-Type':'application/x-www-form-urlencoded'
  62. };
  63. uni.request({
  64. url: http.ip + '/sp-admin/app/AppUser/faceImg',
  65. data: data,
  66. method: 'POST',
  67. header: header,
  68. dataType:'json',
  69. success(resp) {
  70. let res =resp.data;
  71. if (res.code == 200) {
  72. that.release();
  73. uni.showToast({
  74. title: that.type == 1 ? '录入成功' : '验证成功'
  75. });
  76. let user = uni.getStorageSync('info');
  77. user.face = 1;
  78. uni.setStorageSync('info', user)
  79. setTimeout(() => {
  80. uni.$emit('face', true);
  81. uni.navigateBack();
  82. uni.hideLoading();
  83. }, 1000)
  84. } else {
  85. uni.showToast({
  86. icon: 'none',
  87. title: res.msg
  88. })
  89. setTimeout(function() {
  90. that.takePicture();
  91. }, 800);
  92. }
  93. }
  94. })
  95. },
  96. release() {
  97. this.$refs.camera.release();
  98. },
  99. openCamera(id) {
  100. if (uni.getSystemInfoSync().platform === "ios") {
  101. let that = this;
  102. this.$refs.camera.openCamera({
  103. cameraId: id,
  104. }, function(data) {
  105. setTimeout(function() {
  106. that.takePicture();
  107. }, 3000);
  108. });
  109. } else {
  110. //android 系统需要考虑 组件的宽高 和摄像头的宽高比例,如果不一致会导致拉伸
  111. this.openCamera_1(id);
  112. }
  113. },
  114. openCamera_1(id) {
  115. //安卓解决拉伸问题,一般有两种思路。
  116. //1. 组件宽高不变,找出最适合的分辨比率
  117. //2. 根据摄像头的分辨率,来重新修改组件的宽和高。
  118. this.cid = id;
  119. let type = 2; //1 组件宽高不变,找出最适合的分辨比率 2根据摄像头的分辨率,来重新修改组件的宽和高。
  120. this.$refs.camera.getSupportedPreviewSizesByCameraId({
  121. cameraId: id
  122. }, (data) => {
  123. let bestHeight_index = 0;
  124. //方法1 组件宽高不变,找出最适合的分辨比率,这样只能减少拉伸,不能解决
  125. if (type == 1) {
  126. let r0 = (this.height * 1.0) / this.width;
  127. let diff = 1000;
  128. for (var i = 0; i < data.sizes.length; i++) {
  129. //找出最合适的分辨率,宽高比例尽量接近组件的(摄像头宽高是反着呢)
  130. let tmp = Math.abs(r0 - (data.sizes[i].width * 1.0) / data.sizes[bestHeight_index]
  131. .width);
  132. if (tmp < diff) {
  133. diff = tmp;
  134. bestHeight_index = i;
  135. }
  136. }
  137. //方法2 先获取摄像头 支持的分辨率,然后修改组件的大小(一般保持宽不变),这样肯定不拉伸
  138. } else if (type == 2) {
  139. for (var i = 0; i < data.sizes.length; i++) {
  140. //找出最大高度对应的分辨比率(宽高是反着呢)
  141. if (data.sizes[i].width > data.sizes[bestHeight_index].width) {
  142. bestHeight_index = i;
  143. }
  144. }
  145. //this.width = data.sizes[max_index].height;
  146. //计算出当前宽度下最适合的高度,然后修改组件的高
  147. /* this.height = ((data.sizes[bestHeight_index].width / (data.sizes[bestHeight_index].height *
  148. 1.0)) * 750) + "rpx"; */
  149. // 3 用最大分辨比率,不考虑拉伸
  150. } else if (type == 3) {
  151. bestHeight_index = 0; //最大的一般是第一个,你也可以遍历后找出最大分辨比率
  152. }
  153. //延迟打开摄像头,组件大小修改需要时间
  154. const that = this;
  155. setTimeout(() => {
  156. this.$refs.camera.openCamera({
  157. cameraId: id,
  158. previewWidth: data.sizes[bestHeight_index].width,
  159. previewHeight: data.sizes[bestHeight_index].height
  160. }, function(data) {
  161. that.takePicture();
  162. });
  163. }, 500);
  164. });
  165. return;
  166. },
  167. switchCamera() {
  168. this.cameraId == 0 ? this.cameraId = 1 : this.cameraId = 0
  169. this.$refs.camera.switchCamera({
  170. cameraId: this.cameraId
  171. }, function(data) {
  172. uni.showModal({
  173. content: JSON.stringify(data)
  174. })
  175. });
  176. },
  177. start() {
  178. this.$refs.camera.startRecord({
  179. videoEncodingBitRate: 3 * 1920 * 1080
  180. });
  181. },
  182. stop() {
  183. this.$refs.camera.stopRecord(function(data) {
  184. //可以通过 uni.compressVideo 压缩视频 记得前缀 file://
  185. uni.showModal({
  186. content: JSON.stringify(data)
  187. })
  188. });
  189. },
  190. release() {
  191. this.$refs.camera.release();
  192. },
  193. flashOpen() {
  194. this.$refs.camera.flashOpen();
  195. },
  196. flashClose() {
  197. this.$refs.camera.flashClose();
  198. },
  199. changeSize() {
  200. //this.height = "1100rpx";
  201. },
  202. getSupportedPreviewSizes() {
  203. this.$refs.camera.getSupportedPreviewSizes((ret) => {
  204. uni.showModal({
  205. content: JSON.stringify(ret)
  206. })
  207. });
  208. }
  209. }
  210. }
  211. </script>
  212. <style scoped>
  213. .main {
  214. position: relative;
  215. width: 750rpx;
  216. flex: 1;
  217. overflow: hidden;
  218. }
  219. .operate-bg {
  220. width: 750rpx;
  221. background-color: #000000;
  222. position: absolute;
  223. left: 0;
  224. bottom: 0;
  225. justify-content: center;
  226. align-items: center;
  227. padding-top: 60rpx;
  228. padding-bottom: 60rpx;
  229. }
  230. .operate {
  231. width: 140rpx;
  232. height: 140rpx;
  233. background-color: #fff;
  234. border-radius: 50%;
  235. border-width: 10rpx;
  236. border-style: solid;
  237. border-color: #453f3f;
  238. }
  239. .change {
  240. width: 96rpx;
  241. height: 96rpx;
  242. background-color: #453f3f;
  243. position: absolute;
  244. right: 60rpx;
  245. bottom: 82rpx;
  246. border-radius: 48rpx;
  247. align-items: center;
  248. justify-content: center;
  249. }
  250. .change-img {
  251. width: 56rpx;
  252. height: 56rpx;
  253. }
  254. .portrait-frame {
  255. width: 750rpx;
  256. flex: 1;
  257. position: absolute;
  258. top: 0;
  259. left: 0;
  260. right: 0;
  261. bottom: 0;
  262. align-items: center;
  263. justify-content: center;
  264. background-color: rgba(0, 0, 0, 0);
  265. }
  266. .pf-img {
  267. width: 633.6rpx;
  268. height: 582rpx;
  269. margin-top: -280rpx;
  270. }
  271. .epiiCamer {
  272. position: absolute;
  273. top: 0;
  274. right: 0;
  275. bottom: 0;
  276. left: 0;
  277. }
  278. </style>