123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <template>
- <div class="create-container" v-loading="loading">
- <div class="create-body">
- <div class="title">个人信息认证</div>
- <el-form :model="authentication" :rules="rules" ref="authentication" label-width="12%" class="demo-report">
- <el-form-item label="姓名" prop="realName">
- <el-input v-if="isModifyMode" v-model="authentication.realName"></el-input>
- <span v-if="!isModifyMode">{{authentication.realName}}</span>
- </el-form-item>
- <el-form-item prop="IDCardPositivePhoto" label="手持身份证照片">
- <el-upload
- v-if="isModifyMode"
- class="avatar-uploader"
- action=""
- :show-file-list="false"
- :http-request="uploadFile"
- :before-upload="beforeFileUpload">
- <img v-if="authentication.IDCardPositivePhoto" :src="authentication.IDCardPositivePhoto" class="avatar">
- <i v-else class="el-icon-plus avatar-uploader-icon"></i>
- </el-upload>
- <span v-if="!isModifyMode">
- <el-image
- style="width: 100px;"
- :src="authentication.IDCardPositivePhoto"
- fit="scale-down"></el-image>
- </span>
- </el-form-item>
- <el-form-item label="身份证号" prop="IDCard">
- <el-input v-if="isModifyMode" v-model="authentication.IDCard"></el-input>
- <span v-if="!isModifyMode">{{authentication.IDCard}}</span>
- </el-form-item>
- <el-form-item v-if="!isModifyMode" label="认证状态" prop="name">
- <el-tag :type="authentication.authStatus.style">{{authentication.authStatus.text}}</el-tag>
- </el-form-item>
- <el-form-item v-if="!isModifyMode && authentication.authStatus.text == '认证失败'" label="失败原因" prop="name">
- <el-link v-if="authentication.explain!=null&&authentication.explain!=''" type="danger" disabled>
- {{authentication.explain}}
- </el-link>
- <el-link v-if="authentication.explain==null || authentication.explain==''" type="danger" disabled>管理员未填写
- </el-link>
- </el-form-item>
- <!-- <el-form-item label="银行卡账户" prop="bankAccount">-->
- <!-- <el-input v-if="isModifyMode" v-model="authentication.bankAccount"></el-input>-->
- <!-- <span v-if="!isModifyMode">{{authentication.bankAccount}}</span>-->
- <!-- </el-form-item>-->
- <el-form-item label="地址" prop="address">
- <el-input v-if="isModifyMode" v-model="authentication.address"></el-input>
- <span v-if="!isModifyMode">{{authentication.address}}</span>
- </el-form-item>
- <el-form-item v-if="!isModifyMode">
- <div v-if="authentication.authStatus.text!='认证通过'" class="btn btn-medium btn-info" @click="modifyInfo()">修改
- </div>
- </el-form-item>
- <el-form-item v-if="isModifyMode">
- <div class="btn btn-primary btn-info" @click="updateAuthInfo()">提交</div>
- <div class="btn btn-primary" @click="cancelModify()">取消</div>
- </el-form-item>
- </el-form>
- </div>
- </div>
- </template>
- <script>
- import Http from '@/js/http'
- import Apis from '@/js/api'
- import {notify} from '@/constants/index'
- import {
- defaultValue,
- getAllAgencyResourceTypes,
- getAllServiceTypes,
- getCurrentIndividualAuthenInfo,
- getCurrentUser,
- getProvinceCodeByProvinceName,
- getProvinceNameByProvinceCode,
- getRolesPermissions,
- storageGet,
- storageSave,
- updateIndividualAuthInfo
- } from '@/js/index'
- export default {
- name: 'IndividualAuthentication',
- data () {
- return {
- userId: 0,
- user: {},
- loading: false,
- isModifyMode: false,
- authentication: {
- IDCardPositivePhoto: defaultValue.image,
- realName: '',
- IDCard: '',
- bankAccount: '',
- address: '',
- authStatus: {},
- explain: ''
- },
- rules: {
- IDCard: [
- {required: true, message: '请输入身份证号', trigger: 'blur'},
- {min: 18, max: 18, message: '身份证号输入有误', trigger: 'blur'}
- ],
- realName: [
- {required: true, message: '请输入身份证上的姓名', trigger: 'blur'},
- ],
- IDCardPositivePhoto: [
- {
- validator: (rule, value, callback) => {
- console.log(value);
- if (value == null || value == '') {
- callback(new Error('手持身份证照片不能为空'))
- } else {
- callback()
- }
- },
- trigger: 'blue'
- },
- ],
- bankAccount: [
- {required: true, message: '请输入银行卡账户', trigger: 'blur'},
- {min: 16, max: 19, message: '银行卡账户输入有误', trigger: 'blur'},
- {
- validator: (rule, value, callback) => {
- if (!this.checkNumber(value)) {
- callback(new Error('对银行卡账户有误'))
- } else {
- callback()
- }
- }, trigger: 'blur'
- },
- ],
- address: [
- {required: true, message: '请输入地址', trigger: 'blur'}
- ],
- }
- }
- },
- mounted () {
- this.$nextTick(() => {
- this.init()
- })
- },
- watch: {
- // authentication (val) {
- // this.authentication = val
- // },
- deep: true
- },
- methods: {
- //初始化数据
- init () {
- this.setUserInfo()
- this.getAuthInfo()
- },
- //加载数据
- getAuthInfo () {
- this.showLoading()
- getCurrentIndividualAuthenInfo(this.user.userVO.id, this.getAuthInfoSuccess, this.getAuthInfoFail)
- },
- getAuthInfoSuccess (res) {
- this.hideLoading()
- this.authentication.IDCardPositivePhoto = res.idCardPositivePhotoi == null ? defaultValue.image : res.idCardPositivePhotoi
- this.authentication.realName = res.realName == null ? '暂未填写' : res.realName
- this.authentication.IDCard = res.idcard == null ? '暂未填写' : res.idcard
- this.authentication.bankAccount = res.bankAccount == null ? '暂未填写' : res.bankAccount
- this.authentication.address = res.address == null ? '暂未填写' : res.address
- this.authentication.authStatus = res.authStatus
- this.authentication.explain = res.explain
- console.log(this.authentication)
- },
- getAuthInfoFail (error) {
- this.hideLoading()
- notify('error', '加载认证信息失败:' + error.data)
- },
- //表单进入可编辑状态,可修改表单
- modifyInfo () {
- this.isModifyMode = true
- },
- //提交认证信息
- updateAuthInfo () {
- //this.isModifyMode = false
- this.$refs['authentication'].validate(valid => {
- if (valid) {
- this.showLoading()
- const newAuthentication = {
- userId: this.user.userVO.id,
- realName: this.authentication.realName,
- bankAccount: this.authentication.bankAccount,
- address: this.authentication.address,
- IDCardPositivePhoto: this.authentication.IDCardPositivePhoto,
- IDCard: this.authentication.IDCard,
- }
- //console.log(newAuthentication)
- updateIndividualAuthInfo(this.user.userVO.id, newAuthentication, this.updateAuthInfoSuccess, this.updateAuthInfoFail)
- } else {
- notify('error', '表单填写错误!')
- return false
- }
- })
- },
- updateAuthInfoSuccess (res) {
- this.hideLoading()
- this.authentication.IDCardPositivePhoto = res.idCardPositivePhotoi == null ? defaultValue.image : res.idCardPositivePhotoi
- this.authentication.realName = res.realName == null ? '暂未填写' : res.realName
- this.authentication.IDCard = res.idcard == null ? '暂未填写' : res.idcard
- this.authentication.bankAccount = res.bankAccount == null ? '暂未填写' : res.bankAccount
- this.authentication.address = res.address == null ? '暂未填写' : res.address
- this.cancelModify()
- notify('success', '认证信息修改成功,正在为您刷新用户信息')
- getCurrentUser().then(res => {
- storageSave('user', res)
- this.user = res
- this.sendBusMessage()
- //this.rolesPermissions = getRolesPermissions(res.roleList)
- storageSave('rolesPermissions', getRolesPermissions(res.roleList))
- this.hideLoading()
- notify('success', '用户信息刷新成功')
- }).catch((error) => {
- this.hideLoading()
- notify('error', '重新获取用户信息失败:' + error.data)
- })
- },
- updateAuthInfoFail (error) {
- this.hideLoading()
- notify('error', error.data)
- },
- //取消修改表单,表单进入不可编辑状态,不再使用
- cancelModify () {
- this.getAuthInfo()
- this.isModifyMode = false
- },
- //上传文件时移除文件的响应函数
- handleRemove (file, fileList) {
- console.log(file, fileList)
- },
- //添加文件时的响应函数
- handleExceed (files, fileList) {
- this.$message.warning(
- `当前限制选择 1 个文件,本次选择了 ${
- files.length
- } 个文件,共选择了 ${files.length + fileList.length} 个文件`
- )
- },
- //移除文件前的响应函数
- beforeRemove (file, fileList) {
- //return this.$confirm(`确定移除 ${file.name}?`)
- },
- //文件上传前的响应函数
- beforeFileUpload (file) {
- // 文件大小不能超过10M
- if (file.size > 10 * 1000 * 1000){
- notify('error', '单个文件大小不能超过10M')
- return false;
- }
- let fileName = file.name
- let index = fileName.lastIndexOf('.');
- // 文件不能没有后缀
- if (index <= 0){
- notify('error', '只能上传png/jpg格式的文件')
- return false;
- }
- let fileSuffix = fileName.substr(index)
- // 文件后缀必须是.png或者.jpg
- if (fileSuffix !== '.jpg' && fileSuffix !== '.png') {
- notify('error', '只能上传png/jpg格式的文件')
- return false;
- }
- },
- //上传文件,此处为上传图片
- uploadFile (param) {
- this.showLoading()
- const formData = new FormData()
- let config = {
- //添加请求头
- headers: {'Content-Type': 'multipart/form-data'},
- }
- formData.append('file', param.file)
- Http.upload(Apis.FILE.UPLOAD_IMAGE.replace('{userId}', this.user.userVO.id), formData, config).then((res) => {
- this.hideLoading()
- console.log('上传成功')
- this.authentication.IDCardPositivePhoto = res.data
- console.log(res.data)
- notify('success', '上传成功')
- this.$refs['authentication'].validateField('IDCardPositivePhoto');
- }).catch(error => {
- this.hideLoading()
- try {
- if (error.response.status === 413){
- notify('error', '文件过大,请选择小于20M的图片')
- }else if (error.response.status === 500){
- notify('error', '上传文件发生错误,请稍后重试')
- }
- }catch (e) {
- notify('error', error.data)
- }
- })
- },
- //
- setUserInfo () {
- this.user = storageGet('user')
- },
- //
- showLoading () {
- this.loading = true
- },
- hideLoading () {
- this.loading = false
- },
- sendBusMessage () {
- this.$root.$emit('user', this.user)
- },
- checkNumber(value){
- return /^\d+$/.test(value);
- },
- },
- created: function () {
- }
- }
- </script>
- <style scoped>
- .el-radio {
- margin: 10px 20px 10px 0;
- }
- .el-form-item /deep/ .el-tabs__content {
- max-height: 120px !important;
- overflow: auto;
- }
- .el-row {
- margin-bottom: 10px;
- }
- .el-input {
- width: 400px;
- }
- .avatar-uploader .el-upload {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- cursor: pointer;
- position: relative;
- overflow: hidden;
- }
- .avatar-uploader .el-upload:hover {
- border-color: #409EFF;
- }
- .avatar-uploader-icon {
- border: 1px dashed #d9d9d9;
- border-radius: 6px;
- font-size: 28px;
- color: #8c939d;
- width: 176px;
- height: 178px;
- line-height: 178px;
- text-align: center;
- }
- .avatar-uploader-icon:hover {
- border-color: #409EFF;
- }
- .avatar {
- width: 178px;
- height: 178px;
- display: block;
- }
- </style>
|