|
@@ -0,0 +1,469 @@
|
|
|
+<template>
|
|
|
+ <div class="wrap">
|
|
|
+ <yd-radio-group v-model="enterpise" class="yd-radios">
|
|
|
+ <yd-radio val="1" :disabled="status == 2" style="margin-right: 1rem;">企业</yd-radio>
|
|
|
+ <yd-radio val="2" :disabled="status == 1">个人</yd-radio>
|
|
|
+ </yd-radio-group>
|
|
|
+ <div v-show="enterpise == 1">
|
|
|
+ <yd-cell-group>
|
|
|
+ <yd-cell-item>
|
|
|
+ <yd-input
|
|
|
+ slot="right"
|
|
|
+ required
|
|
|
+ v-model="enterpiseModel.name"
|
|
|
+ :show-required-icon="status == 0"
|
|
|
+ :show-error-icon="status == 0"
|
|
|
+ :show-success-icon="status == 0"
|
|
|
+ :show-clear-icon="status == 0"
|
|
|
+ placeholder="公司名称"
|
|
|
+ :readonly="status == 1"
|
|
|
+ max="25"
|
|
|
+ min="4"
|
|
|
+ ref="input1"
|
|
|
+ :on-blur="verify('input1')"
|
|
|
+ ></yd-input>
|
|
|
+ </yd-cell-item>
|
|
|
+ <p style="color:#F00;padding: .1rem .3rem;" v-text="errorMsg.input1.msg"></p>
|
|
|
+ <yd-cell-item>
|
|
|
+ <yd-input
|
|
|
+ slot="right"
|
|
|
+ required
|
|
|
+ v-model="enterpiseModel.juridicalPerson"
|
|
|
+ :show-error-icon="status == 0"
|
|
|
+ :show-success-icon="status == 0"
|
|
|
+ :show-clear-icon="status == 0"
|
|
|
+ placeholder="法人姓名"
|
|
|
+ regex="^[\u4E00-\u9FA5]{2,15}$"
|
|
|
+ :readonly="status == 1"
|
|
|
+ ref="input2"
|
|
|
+ :on-blur="verify('input2')"
|
|
|
+ ></yd-input>
|
|
|
+ </yd-cell-item>
|
|
|
+ <p style="color:#F00;padding: .1rem .3rem;" v-text="errorMsg.input2.msg"></p>
|
|
|
+ <yd-cell-item>
|
|
|
+ <yd-input
|
|
|
+ slot="right"
|
|
|
+ required
|
|
|
+ v-model="enterpiseModel.socialCreditCode"
|
|
|
+ :show-error-icon="status == 0"
|
|
|
+ :show-success-icon="status == 0"
|
|
|
+ :show-clear-icon="status == 0"
|
|
|
+ placeholder="统一社会信用代码或营业执照号"
|
|
|
+ :readonly="status == 1"
|
|
|
+ max="18"
|
|
|
+ min="15"
|
|
|
+ ref="input3"
|
|
|
+ :on-blur="verify('input3')"
|
|
|
+ ></yd-input>
|
|
|
+ </yd-cell-item>
|
|
|
+ </yd-cell-group>
|
|
|
+ <p style="color:#F00;padding: .1rem .3rem;" v-text="errorMsg.input3.msg"></p>
|
|
|
+ <div class="darkTip">
|
|
|
+ 上传身份证照片
|
|
|
+ <br />
|
|
|
+ *请上传经营者本人身份证照片
|
|
|
+ <br />
|
|
|
+ *必须是彩色扫描件或数码照片,复印件无效
|
|
|
+ <br />
|
|
|
+ *拍照时请确保身份证边框完整、图像清晰、光线均匀
|
|
|
+ <br />
|
|
|
+ *支持格式为jpg、jpeg、png、gif,大小不超过5M的图片
|
|
|
+ </div>
|
|
|
+ <div class="uploadImg">
|
|
|
+ <input type="file" accept="image/*" value="上传营业执照照片" class="upload-input" @change="uploadImg" v-if="status == 0" />
|
|
|
+ <div v-if="!imgModel.businessLicense">
|
|
|
+ <yd-icon name="upload" custom color="#c3c8cd"></yd-icon>
|
|
|
+ <p>上传营业执照照片</p>
|
|
|
+ </div>
|
|
|
+ <yd-lightbox><yd-lightbox-img :src="imgModel.businessLicense" v-if="imgModel.businessLicense" class="pre-img" :onerror="defaultImg"></yd-lightbox-img></yd-lightbox>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-show="enterpise == 2">
|
|
|
+ <yd-cell-group>
|
|
|
+ <yd-cell-item>
|
|
|
+ <yd-input
|
|
|
+ slot="right"
|
|
|
+ required
|
|
|
+ v-model="personModel.name"
|
|
|
+ :show-success-icon="status == 0"
|
|
|
+ :show-error-icon="status == 0"
|
|
|
+ :show-clear-icon="status == 0"
|
|
|
+ placeholder="姓名"
|
|
|
+ max="15"
|
|
|
+ min="2"
|
|
|
+ :readonly="status == 2"
|
|
|
+ ref="input4"
|
|
|
+ :on-blur="verify('input4')"
|
|
|
+ ></yd-input>
|
|
|
+ </yd-cell-item>
|
|
|
+ <p style="color:#F00;padding: .1rem .3rem;" v-text="errorMsg.input4.msg"></p>
|
|
|
+ <yd-cell-item>
|
|
|
+ <yd-input
|
|
|
+ slot="right"
|
|
|
+ required
|
|
|
+ v-model="personModel.idCard"
|
|
|
+ placeholder="身份证号"
|
|
|
+ :show-error-icon="status == 0"
|
|
|
+ :show-success-icon="status == 0"
|
|
|
+ :show-clear-icon="status == 0"
|
|
|
+ max="18"
|
|
|
+ regex="^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$"
|
|
|
+ :readonly="status == 2"
|
|
|
+ ref="input5"
|
|
|
+ :on-blur="verify('input5')"
|
|
|
+ ></yd-input>
|
|
|
+ </yd-cell-item>
|
|
|
+ </yd-cell-group>
|
|
|
+ <p style="color:#F00;padding: .1rem .3rem;" v-text="errorMsg.input5.msg"></p>
|
|
|
+ <div class="darkTip">
|
|
|
+ 上传身份证照片
|
|
|
+ <br />
|
|
|
+ *请上传经营者本人身份证照片
|
|
|
+ <br />
|
|
|
+ *必须是彩色扫描件或数码照片,复印件无效
|
|
|
+ <br />
|
|
|
+ *拍照时请确保身份证边框完整、图像清晰、光线均匀
|
|
|
+ <br />
|
|
|
+ *支持格式为jpg、jpeg、png、gif,大小不超过5M的图片
|
|
|
+ </div>
|
|
|
+ <div class="uploadImg">
|
|
|
+ <input type="file" accept="image/*" value="人像面照片" class="upload-input" @change="uploadFrontImage" v-if="status == 0" />
|
|
|
+ <div v-if="!imgModel.frontImage">
|
|
|
+ <yd-icon name="upload" custom color="#c3c8cd"></yd-icon>
|
|
|
+ <p>人像面照片</p>
|
|
|
+ </div>
|
|
|
+ <yd-lightbox><yd-lightbox-img :src="imgModel.frontImage" v-if="imgModel.frontImage" class="pre-img" :onerror="defaultImg"></yd-lightbox-img></yd-lightbox>
|
|
|
+ </div>
|
|
|
+ <div class="uploadImg">
|
|
|
+ <input type="file" accept="image/*" value="国徽面照片" class="upload-input" @change="uploadContraryImage" v-if="status == 0" />
|
|
|
+ <div v-if="!imgModel.contraryImage">
|
|
|
+ <yd-icon name="upload" custom color="#c3c8cd"></yd-icon>
|
|
|
+ <p>国徽面照片</p>
|
|
|
+ </div>
|
|
|
+ <yd-lightbox><yd-lightbox-img :src="imgModel.contraryImage" v-if="imgModel.contraryImage" class="pre-img" :onerror="defaultImg"></yd-lightbox-img></yd-lightbox>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="follow-btns-circle">
|
|
|
+ <yd-button type="primary" v-if="enterpise == 1 && status == 0" size="large" shape="circle" @click.native="enterpiseSubmit">提交</yd-button>
|
|
|
+ <yd-button type="primary" v-if="enterpise == 2 && status == 0" size="large" shape="circle" @click.native="personSubmit">提交</yd-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import request from '@/utils/request';
|
|
|
+import baseMixin from '@/components/common/bus';
|
|
|
+export default {
|
|
|
+ mixins: [baseMixin],
|
|
|
+ data: function() {
|
|
|
+ return {
|
|
|
+ errorMsg: {
|
|
|
+ input1: {
|
|
|
+ msg: '请填写正确的公司名称'
|
|
|
+ },
|
|
|
+ input2: {
|
|
|
+ msg: '请填写正确的法人姓名',
|
|
|
+ NOT_REGEX_RULE: '只能输入2-15个中文'
|
|
|
+ },
|
|
|
+ input3: {
|
|
|
+ msg: '请填写正确的统一社会信用代码或营业执照号'
|
|
|
+ },
|
|
|
+ input4: {
|
|
|
+ msg: '请填写正确的姓名'
|
|
|
+ },
|
|
|
+ input5: {
|
|
|
+ msg: '请填写正确的身份证号',
|
|
|
+ NOT_REGEX_RULE: '请填写正确的身份证号'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ enterpise: '1',
|
|
|
+ status: '0',
|
|
|
+ host: this.U.sCon.host,
|
|
|
+ Urls: {
|
|
|
+ infoUrl: '/archivalInfo',
|
|
|
+ personRecordUrl: '/archivalInfo/person',
|
|
|
+ enterpriseRecordUrl: '/archivalInfo/enterprise',
|
|
|
+ imgUrl: '/file/upload'
|
|
|
+ },
|
|
|
+ enterpiseModel: {
|
|
|
+ buyerId: this.Cookies.get('buyerId'),
|
|
|
+ name: '',
|
|
|
+ juridicalPerson: '',
|
|
|
+ socialCreditCode: '',
|
|
|
+ businessLicense: ''
|
|
|
+ },
|
|
|
+ imgModel: {
|
|
|
+ businessLicense: '',
|
|
|
+ frontImage: '',
|
|
|
+ contraryImage: ''
|
|
|
+ },
|
|
|
+ personModel: {
|
|
|
+ buyerId: this.Cookies.get('buyerId'),
|
|
|
+ name: '',
|
|
|
+ idCard: '',
|
|
|
+ frontImage: '',
|
|
|
+ contraryImage: ''
|
|
|
+ },
|
|
|
+ defaultImg: 'this.src="' + require('@/assets/img/shop.png') + '"'
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ if (this.$route.query.status != 0) {
|
|
|
+ this.getInfo();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getInfo() {
|
|
|
+ this.$dialog.loading.open('正在加载');
|
|
|
+ request({
|
|
|
+ url: this.Urls.infoUrl,
|
|
|
+ method: 'get',
|
|
|
+ params: { buyerId: this.buyerId }
|
|
|
+ }).then(response => {
|
|
|
+ this.$dialog.loading.close();
|
|
|
+ if (response.data.retHead.errCode == 0) {
|
|
|
+ if (response.data.retBody.status == 1) {
|
|
|
+ this.status = 1;
|
|
|
+ this.enterpise = 1;
|
|
|
+ this.enterpiseModel = response.data.retBody.archival;
|
|
|
+ this.imgModel.businessLicense = this.host + response.data.retBody.archival.businessLicense;
|
|
|
+ } else if (response.data.retBody.status == 2) {
|
|
|
+ this.status = 2;
|
|
|
+ this.enterpise = 2;
|
|
|
+ this.personModel = response.data.retBody.archival;
|
|
|
+ this.imgModel.frontImage = this.host + response.data.retBody.archival.frontImage;
|
|
|
+ this.imgModel.contraryImage = this.host + response.data.retBody.archival.contraryImage;
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: response.data.retHead.errMsg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //字段验证
|
|
|
+ verify(e) {
|
|
|
+ let obj = this.$refs[e];
|
|
|
+ if (obj && !obj.valid) {
|
|
|
+ this.errorMsg[e].msg = this.errorMsg[e][obj.errorCode] || obj.errorMsg;
|
|
|
+ } else if (obj) {
|
|
|
+ this.errorMsg[e].msg = '';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //企业认证提交
|
|
|
+ enterpiseSubmit() {
|
|
|
+ let data = this.enterpiseModel;
|
|
|
+ //判断前3项错误信息
|
|
|
+ for (let i = 1; i < 4; i++) {
|
|
|
+ if (this.errorMsg['input' + i].msg) {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: this.errorMsg['input' + i].msg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //判断营业执照
|
|
|
+ if (!data.businessLicense) {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: '请上传营业执照照片',
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ request({
|
|
|
+ url: this.Urls.enterpriseRecordUrl,
|
|
|
+ method: 'post',
|
|
|
+ data
|
|
|
+ }).then(response => {
|
|
|
+ if (response.data.retHead.errCode == 0) {
|
|
|
+ this.$router.push('/examine');
|
|
|
+ } else {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: response.data.retHead.errMsg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //提交个人
|
|
|
+ personSubmit() {
|
|
|
+ let data = this.personModel;
|
|
|
+ //判断后2项错误信息
|
|
|
+ for (let i = 4; i < 6; i++) {
|
|
|
+ if (this.errorMsg['input' + i].msg) {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: this.errorMsg['input' + i].msg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //判断省份证
|
|
|
+ if (!data.frontImage || !data.contraryImage) {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: '请上传身份证正/反面照片',
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ request({
|
|
|
+ url: this.Urls.personRecordUrl,
|
|
|
+ method: 'post',
|
|
|
+ data
|
|
|
+ }).then(response => {
|
|
|
+ if (response.data.retHead.errCode == 0) {
|
|
|
+ this.$router.push('/examine');
|
|
|
+ } else {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: response.data.retHead.errMsg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ uploadFile(e, callback) {
|
|
|
+ var _this = this;
|
|
|
+ /*
|
|
|
+ 三个参数
|
|
|
+ file:一个是文件(类型是图片格式),
|
|
|
+ w:一个是文件压缩的后宽度,宽度越小,字节越小
|
|
|
+ objDiv:一个是容器或者回调函数
|
|
|
+ photoCompress()
|
|
|
+ */
|
|
|
+ function photoCompress(file, w, objDiv) {
|
|
|
+ var ready = new FileReader();
|
|
|
+ /*开始读取指定的Blob对象或File对象中的内容. 当读取操作完成时,readyState属性的值会成为DONE,如果设置了onloadend事件处理程序,则调用之.同时,result属性中将包含一个data: URL格式的字符串以表示所读取文件的内容.*/
|
|
|
+ ready.readAsDataURL(file);
|
|
|
+ ready.onload = function() {
|
|
|
+ var re = this.result;
|
|
|
+ canvasDataURL(re, w, objDiv);
|
|
|
+ };
|
|
|
+ }
|
|
|
+ function canvasDataURL(path, obj, callback) {
|
|
|
+ var img = new Image();
|
|
|
+ img.src = path;
|
|
|
+ img.onload = function() {
|
|
|
+ var that = this;
|
|
|
+ // 默认按比例压缩
|
|
|
+ var w = that.width,
|
|
|
+ h = that.height,
|
|
|
+ scale = w / h;
|
|
|
+ w = obj.width || w;
|
|
|
+ h = obj.height || w / scale;
|
|
|
+ var quality = 0.7; // 默认图片质量为0.7
|
|
|
+ //生成canvas
|
|
|
+ var canvas = document.createElement('canvas');
|
|
|
+ var ctx = canvas.getContext('2d');
|
|
|
+ // 创建属性节点
|
|
|
+ var anw = document.createAttribute('width');
|
|
|
+ anw.nodeValue = w;
|
|
|
+ var anh = document.createAttribute('height');
|
|
|
+ anh.nodeValue = h;
|
|
|
+ canvas.setAttributeNode(anw);
|
|
|
+ canvas.setAttributeNode(anh);
|
|
|
+ ctx.drawImage(that, 0, 0, w, h);
|
|
|
+ // 图像质量
|
|
|
+ if (obj.quality && obj.quality <= 1 && obj.quality > 0) {
|
|
|
+ quality = obj.quality;
|
|
|
+ }
|
|
|
+ // quality值越小,所绘制出的图像越模糊
|
|
|
+ var base64 = canvas.toDataURL('image/jpeg', quality);
|
|
|
+ // 回调函数返回base64的值
|
|
|
+ callback(base64);
|
|
|
+ };
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 将以base64的图片url数据转换为Blob
|
|
|
+ * @param urlData
|
|
|
+ * 用url方式表示的base64图片数据
|
|
|
+ */
|
|
|
+ function convertBase64UrlToBlob(urlData) {
|
|
|
+ var arr = urlData.split(','),
|
|
|
+ mime = arr[0].match(/:(.*?);/)[1],
|
|
|
+ bstr = atob(arr[1]),
|
|
|
+ n = bstr.length,
|
|
|
+ u8arr = new Uint8Array(n);
|
|
|
+ while (n--) {
|
|
|
+ u8arr[n] = bstr.charCodeAt(n);
|
|
|
+ }
|
|
|
+ return new Blob([u8arr], { type: mime });
|
|
|
+ }
|
|
|
+
|
|
|
+ const file = e.target.files[0];
|
|
|
+ let size = file.size / 1024 / 1024;
|
|
|
+ //判断压缩
|
|
|
+ if(size > 1){
|
|
|
+ photoCompress(file, {
|
|
|
+ quality: 0.25
|
|
|
+ }, function(base64Codes){
|
|
|
+ var bl = convertBase64UrlToBlob(base64Codes);
|
|
|
+ _this.uploadAjax(bl,callback, "file_"+Date.parse(new Date())+"."+bl.type.split("/")[1]);
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ if (size >= 5) {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: '上传的图片大小不能超过5M',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ _this.uploadAjax(file,callback,file.name);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ uploadAjax(file,callback,fileName){
|
|
|
+ const formData = new FormData();
|
|
|
+ formData.append('file', file, fileName);
|
|
|
+ this.$dialog.loading.open('正在上传中');
|
|
|
+ request({
|
|
|
+ url: this.Urls.imgUrl,
|
|
|
+ method: 'post',
|
|
|
+ data: formData
|
|
|
+ }).then(response => {
|
|
|
+ this.$dialog.loading.close();
|
|
|
+ if (response.data.retHead.errCode == 0) {
|
|
|
+ let funName = "fun"+new Date().valueOf();
|
|
|
+ this[funName] = callback;
|
|
|
+ this[funName](response.data.retBody);
|
|
|
+ delete this[funName];
|
|
|
+ } else {
|
|
|
+ this.$dialog.toast({
|
|
|
+ mes: response.data.retHead.errMsg,
|
|
|
+ icon: 'error',
|
|
|
+ timeout: 1500
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //上传执照
|
|
|
+ uploadImg(e) {
|
|
|
+ this.uploadFile(e,data=>{
|
|
|
+ this.imgModel.businessLicense = this.host + data.url;
|
|
|
+ this.enterpiseModel.businessLicense = data.url;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ uploadFrontImage(e) {
|
|
|
+ this.uploadFile(e,data=>{
|
|
|
+ this.imgModel.frontImage = this.host + data.url;
|
|
|
+ this.personModel.frontImage = data.url;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ uploadContraryImage(e) {
|
|
|
+ this.uploadFile(e,data=>{
|
|
|
+ this.imgModel.contraryImage = this.host + data.url;
|
|
|
+ this.personModel.contraryImage = data.url;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style></style>
|