123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <template>
- <div>
- <common @asynCallBack="asynCallBack"></common>
- <top-header :pageTitle="pageTitle"></top-header>
- <div class="mui-content">
- <div class="mui-content-padded">
- <div class="mui-content-padded">
- <h5>请上传照片</h5>
- <div class="mui-h5 color999">
- 照片将用于人脸识别设备,请上传清晰的免冠登记照或肩部以上近照。
- </div>
- </div>
- <div class="mui-content-padded vongi-photo" @click="chooseImage">
- <div class="faceaifyy-content-region" :style="subForm.faceImageUrl?'background:none':''">
- <a v-if="!subForm.faceImageUrl"><span class="mui-icon iconfont icon-weibiaoti1"></span></a>
- <img v-if="subForm.faceImageUrl" :src="subForm.faceImageUrl" width="100%" />
- </div>
- </div>
- </div>
- </div>
- <div class="fyy-footer">
- <div class="bindfyy-btn"><button type="submit" class="mui-btn mui-btn-primary" @click="submit">提交</button></div>
- </div>
- <!--图片裁剪-->
- <cropper :cwidth="cropperWidth" :cheight="cropperHeight" :visible="cropperVisible" :field="cropperField" :cropper="cropper"
- @cropperFinish="cropperFinish" @cropperCancel="cropperCancel"></cropper>
- </div>
- </template>
- <script>
- import * as API_Person from '@/apis/person'
- import Common from '$project/components/Common.vue'
- import Loading from '$project/components/Loading.vue'
- import TopHeader from '$project/components/TopHeader.vue'
- import {
- mapGetters,
- mapMutations
- } from 'vuex'
- import Cropper from '$project/components/Cropper.vue'
- import * as WxJsApi from '$project/utils/wxJsApi'
- export default {
- name: 'UploadPhoto',
- components: {
- Common,
- Loading,
- TopHeader,
- Cropper
- },
- data() {
- return {
- pageTitle: '上传登记照',
- isLoading: false,
- subForm: {
- personId: this.$route.query.personId,
- openId: '',
- faceImageUrl: ''
- },
- cropperVisible: '',
- cropperField: '',
- cropperWidth: 250,
- cropperHeight: 350,
- cropper: {
- img: '',
- info: true,
- size: 1,
- outputType: 'jpeg',
- canScale: false,
- autoCrop: false,
- // 只有自动截图开启 宽度高度才生效
- autoCropWidth: 250,
- autoCropHeight: 350,
- fixed: true,
- // 真实的输出宽高
- infoTrue: true,
- fixedNumber: [5, 7]
- },
- }
- },
- created() {
- this.subForm.openId = this.openId;
- },
- methods: {
- //微信选择图片
- chooseImage() {
- WxJsApi.chooseImage().then(res => {
- var localData = res.localData;
- if (localData.indexOf('data:image') != 0) {
- //判断是否有这样的头部
- localData = 'data:image/jpeg;base64,' + localData
- }
- localData = localData.replace(/\r|\n/g, '').replace('data:image/jgp', 'data:image/jpeg')
- this.imgBase64 = localData;
- //显示裁剪图片
- this.showCropper('faceImageUrl');
- //this.uploadpic();
- }).catch(error => {
- mui.toast(error);
- })
- },
- //显示裁剪图片
- showCropper(field) {
- this.cropper.img = this.imgBase64;
- this.cropperField = field;
- this.cropperVisible = true;
- },
- //裁剪图片
- cropperFinish(obj) {
- console.log(obj);
- this.imgBase64 = obj.data;
- this.uploadpic(obj.field);
- this.cropperVisible = false;
- },
- //隐藏裁剪图片
- cropperCancel() {
- this.cropperVisible = false;
- },
- //上传图片
- uploadpic() {
- this.isLoading = true;
- WxJsApi.uploadPic(this.imgBase64).then(response => {
- this.isLoading = false;
- this.subForm.faceImageUrl = response;
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- },
- //表单检测
- checkFrom() {
- if (!this.subForm.personId) {
- mui.toast('用户id未定义');
- return false;
- } else if (!this.subForm.openId) {
- mui.toast('openId未获取到');
- return false;
- } else if (!this.subForm.faceImageUrl) {
- mui.toast('请上传人脸照片');
- return false;
- } else {
- return true;
- }
- },
- //提交
- submit() {
- if (this.checkFrom()) {
- this.isLoading = true;
- API_Person.save(this.subForm).then(response => {
- this.isLoading = false;
- //场景之前选过,这里直接去选择角色,第一次注册也要传递project
- this.$router.push({
- name: 'Role',
- query: {
- project: this.$route.query.project
- }
- })
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- }
- },
- asynCallBack() {
- },
- },
- mounted() {
- //获取微信配置
- WxJsApi.getWxConfig();
- },
- destroyed() {},
- computed: {
- ...mapGetters({
- openId: 'wx_openid',
- token: 'token',
- })
- }
- }
- </script>
- <style scoped src="$project/assets/css/xpwyfyy.css"></style>
- <style src="$project/assets/css/iconfont.css"></style>
- <style>
- </style>
|