
47 changed files with 680 additions and 1198 deletions
@ -0,0 +1,50 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.fin.api.finpreloancreditapply; |
|||
|
|||
import com.yxt.anrui.fin.api.finpreloancreditpeo.FinPreloanCreditPeoDto; |
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class FinSubmitCapitalRiskDto implements Dto { |
|||
|
|||
private String sid; |
|||
|
|||
@ApiModelProperty("公司审核结构") |
|||
private String gsshjg; |
|||
@ApiModelProperty("公司审核日期") |
|||
private String gsshDate; |
|||
@ApiModelProperty("公司审核备注") |
|||
private String gsshRemarks; |
|||
@ApiModelProperty("查询结果截图") |
|||
private List<String> gsQueryResult = new ArrayList<>(); |
|||
} |
@ -0,0 +1,107 @@ |
|||
/********************************************************* |
|||
********************************************************* |
|||
******************** ******************* |
|||
************* ************ |
|||
******* _oo0oo_ ******* |
|||
*** o8888888o *** |
|||
* 88" . "88 * |
|||
* (| -_- |) * |
|||
* 0\ = /0 * |
|||
* ___/`---'\___ * |
|||
* .' \\| |// '. *
|
|||
* / \\||| : |||// \ *
|
|||
* / _||||| -:- |||||- \ * |
|||
* | | \\\ - /// | | *
|
|||
* | \_| ''\---/'' |_/ | * |
|||
* \ .-\__ '-' ___/-. / * |
|||
* ___'. .' /--.--\ `. .'___ * |
|||
* ."" '< `.___\_<|>_/___.' >' "". * |
|||
* | | : `- \`.;`\ _ /`;.`/ - ` : | | * |
|||
* \ \ `_. \_ __\ /__ _/ .-` / / * |
|||
* =====`-.____`.___ \_____/___.-`___.-'===== * |
|||
* `=---=' * |
|||
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * |
|||
*********__佛祖保佑__永无BUG__验收通过__钞票多多__********* |
|||
*********************************************************/ |
|||
package com.yxt.anrui.fin.api.finpreloancreditapply; |
|||
|
|||
|
|||
import com.yxt.anrui.fin.api.finpreloancreditpeo.FinPreloanCreditPeoDto; |
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* Project: anrui-fin(贷前信用审核管理) <br/> |
|||
* File: FinPreloanCreditApplyDto.java <br/> |
|||
* Class: com.yxt.anrui.fin.api.finpreloancreditapply.FinPreloanCreditApplyDto <br/> |
|||
* Description: 贷前信用审核申请表 数据传输对象. <br/> |
|||
* Copyright: Copyright (c) 2011 <br/> |
|||
* Company: https://gitee.com/liuzp315 <br/>
|
|||
* Makedate: 2023-07-11 11:04:28 <br/> |
|||
* |
|||
* @author liupopo |
|||
* @version 1.0 |
|||
* @since 1.0 |
|||
*/ |
|||
@Data |
|||
@ApiModel(value = "贷前信用审核申请表 数据传输对象", description = "贷前信用审核申请表 数据传输对象") |
|||
public class FinSubmitCompanyRiskDto implements Dto { |
|||
|
|||
private String sid; // sid
|
|||
|
|||
@ApiModelProperty("创建人接口") |
|||
private String createByName; // 创建人接口
|
|||
@ApiModelProperty("申请部门sid") |
|||
private String applyDeptSid; // 申请部门sid
|
|||
@ApiModelProperty("申请部门名称") |
|||
private String applyDeptName; // 申请部门名称
|
|||
@ApiModelProperty("车型sid") |
|||
private String modelSid; // 车型sid
|
|||
@ApiModelProperty("车型名称") |
|||
private String modelName; // 车型名称
|
|||
@ApiModelProperty("客户类型key") |
|||
private String custTypeKey; // 客户类型key
|
|||
@ApiModelProperty("客户类型value") |
|||
private String custTypeValue; // 客户类型value
|
|||
@ApiModelProperty("企业sid") |
|||
private String qySid; // 企业sid
|
|||
@ApiModelProperty("企业名称") |
|||
private String qyName; // 企业名称
|
|||
@ApiModelProperty("身份证号码") |
|||
private String idCard; // 身份证号码
|
|||
@ApiModelProperty("客户sid") |
|||
private String custSid; // 客户sid
|
|||
@ApiModelProperty("客户名称") |
|||
private String custName; // 客户名称
|
|||
@ApiModelProperty("手机号码") |
|||
private String phone; // 手机号码
|
|||
@ApiModelProperty("资方sid") |
|||
private String capitalSid; // 资方sid
|
|||
@ApiModelProperty("资方名称") |
|||
private String capitalName; // 资方名称
|
|||
@ApiModelProperty("分公司sid") |
|||
private String useOrgSid; // 分公司sid
|
|||
@ApiModelProperty("分公司名称") |
|||
private String useOrgName; // 分公司名称
|
|||
@ApiModelProperty("组织全路径") |
|||
private String orgSidPath; // 组织全路径
|
|||
@ApiModelProperty("申请编号") |
|||
private String billNo; // 申请编号
|
|||
@ApiModelProperty("公司风控结果") |
|||
private String gsfkjg; |
|||
@ApiModelProperty("资方风控结果") |
|||
private String zffkjg; |
|||
@ApiModelProperty("申诉结果") |
|||
private String ssjg; |
|||
@ApiModelProperty("身份证正反面附件") |
|||
private List<String> idCardImages = new ArrayList<>(); |
|||
@ApiModelProperty("贷前信用审核人员列表") |
|||
private List<FinPreloanCreditPeoDto> finPreloanCreditPeos; |
|||
@ApiModelProperty("公司风控要求的文件") |
|||
private List<String> comFkFiles = new ArrayList<>(); |
|||
} |
@ -1,178 +0,0 @@ |
|||
<template> |
|||
<div> |
|||
<div> |
|||
<el-upload v-loading="loadding" ref="imgUpload" class="avatar-uploader" :headers="accessToken" :action="uploadFile" accept=".jpg,.jpeg,.png,.bmp,.pdf,.JPG,.JPEG,.BMP" list-type="picture-card" :file-list="files" :on-remove="removeImage" :on-preview="handlePictureCardPreview" :on-progress="uploadProgrees" :on-error="uploadError" :on-success="uploadImgSuccess_FuJian"> |
|||
<i class="el-icon-plus avatar-uploader-icon"></i> |
|||
</el-upload> |
|||
</div> |
|||
<el-dialog :visible.sync="showpicture" :append-to-body="true" title="查看图片"> |
|||
<img width="100%" :src="dialogImageUrl" alt=""> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { imageUpload } from '@/api/portal/Upload.js' |
|||
import { mapGetters } from 'vuex' |
|||
export default { |
|||
model: { |
|||
prop: 'imageFileList', |
|||
event: 'fileListChange', |
|||
}, |
|||
props: { |
|||
placeholder: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
// 长度 |
|||
width: { |
|||
type: String, |
|||
default: '270px', |
|||
}, |
|||
// 图片路径 |
|||
imageFileList: { |
|||
type: Array, |
|||
required: [], |
|||
}, |
|||
num: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
dialogImageUrl: '', |
|||
accessToken: {}, |
|||
fileUrl: fileUrl, |
|||
uploadFile: imageUpload, |
|||
files: [], |
|||
showpicture: false, |
|||
loadding: false, |
|||
} |
|||
}, |
|||
computed: { |
|||
...mapGetters([ |
|||
'id', |
|||
'departmentCode', |
|||
'departmentLevel', |
|||
'departmentType', |
|||
'token', |
|||
]), |
|||
}, |
|||
watch: { |
|||
imageFileList: { |
|||
deep: true, |
|||
handler(newVal, oldVal) { |
|||
this.files = [] |
|||
for (var i = 0; i < newVal.length; i++) { |
|||
this.files.push({ |
|||
name: newVal[i].name, |
|||
url: fileUrl + newVal[i].url, |
|||
}) |
|||
} |
|||
}, |
|||
}, |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => { |
|||
this.Init() |
|||
}) |
|||
}, |
|||
created() { |
|||
if (this.imageFileList !== undefined) { |
|||
this.files = [] |
|||
for (var i = 0; i < this.imageFileList.length; i++) { |
|||
this.files.push({ |
|||
name: this.imageFileList[i].name, |
|||
url: fileUrl + this.imageFileList[i].url, |
|||
}) |
|||
} |
|||
} |
|||
}, |
|||
methods: { |
|||
// 页面第一次加载 |
|||
Init() { |
|||
// |
|||
// 1. 文件上传用token |
|||
this.accessToken = { |
|||
accessToken: this.token, |
|||
} |
|||
}, // 上传方案--成功后执行 |
|||
uploadImgSuccess_FuJian(response, file, ImageFileList) { |
|||
this.loadding = false |
|||
if (file.response.code === 20000) { |
|||
// 返显图片 |
|||
var imageUrl = this.fileUrl + file.response.data |
|||
var uid = file.response.data |
|||
this.files.push({ name: file.name, url: imageUrl }) |
|||
|
|||
var fileList = [] |
|||
for (var i = 0; i < this.files.length; i++) { |
|||
console.log(this.files[i].url, 'this.files[i].url') |
|||
|
|||
fileList.push({ |
|||
name: this.files[i].name, |
|||
url: this.files[i].url.substr(this.fileUrl.length), |
|||
num: this.num, |
|||
}) |
|||
} |
|||
|
|||
this.$emit('fileListChange', fileList) |
|||
} |
|||
}, |
|||
removeImage(file, ImageFileList) { |
|||
this.files.splice(this.files.indexOf(file), 1) |
|||
var fileList = [] |
|||
for (var i = 0; i < this.files.length; i++) { |
|||
fileList.push({ |
|||
name: this.files[i].name, |
|||
url: this.files[i].url.substr(this.fileUrl.length), |
|||
}) |
|||
} |
|||
|
|||
this.$emit('fileListChange', fileList) |
|||
}, |
|||
handlePictureCardPreview(file) { |
|||
this.dialogImageUrl = file.url |
|||
this.showpicture = true |
|||
}, |
|||
// 上传失败 |
|||
uploadError() { |
|||
this.loadding = false |
|||
}, |
|||
uploadProgrees(event, file, fileList) { |
|||
if (Number(event.percent) > 0) { |
|||
this.loadding = true |
|||
} |
|||
// console.log('event:', event) |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.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 { |
|||
font-size: 28px; |
|||
color: #8c939d; |
|||
width: 100px; |
|||
height: 250px; |
|||
line-height: 100px; |
|||
text-align: center; |
|||
} |
|||
.avatar { |
|||
width: 200px; |
|||
height: 200px; |
|||
display: block; |
|||
// float: left; |
|||
} |
|||
</style> |
@ -1,155 +0,0 @@ |
|||
<template> |
|||
<div> |
|||
<el-upload class="upload-demo" :data="datas" :accept="accept" :on-success="uploadImgSuccess" |
|||
:on-change="handleChange" :on-remove="handleRemove" :file-list="fileList_FuJian" |
|||
:http-request="uploadSectionFile"> |
|||
<el-button size="small" type="primary">点击上传</el-button> |
|||
<div slot="tip" class="el-upload__tip">单个文件大小不允许超过100M,支持上传文件类型:{{ accept }}</div> |
|||
</el-upload> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { |
|||
uploadFile |
|||
} from '@/api/business/beiAn' |
|||
import { |
|||
mapGetters |
|||
} from 'vuex' |
|||
export default { |
|||
props: { |
|||
placeholder: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
// 长度 |
|||
width: { |
|||
type: String, |
|||
default: '270px', |
|||
}, |
|||
accept: { |
|||
type: String, |
|||
default: '.jpg,.jpeg,.png,.bmp,.pdf,.JPG,.JPEG,.BMP,.PDF,.xls,.docx,.xlsx,.ppt,.pptx', |
|||
}, |
|||
// 文件列表 |
|||
files: { |
|||
type: String, |
|||
required: true, |
|||
}, |
|||
// 文件名称 |
|||
name: { |
|||
type: String, |
|||
required: true, |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
datas: null, |
|||
name:null, |
|||
accessToken: {}, |
|||
fileList_FuJian: [], |
|||
enclosure: '', |
|||
file_add: '', |
|||
idsz: '', |
|||
file_catch: '', |
|||
files_list: [], |
|||
} |
|||
}, |
|||
computed: { |
|||
...mapGetters([ |
|||
'id', |
|||
'departmentCode', |
|||
'departmentLevel', |
|||
'departmentType', |
|||
'token', |
|||
]), |
|||
}, |
|||
watch: { |
|||
// files: { |
|||
// deep: true, |
|||
// handler(val) { |
|||
// this.pageLoad(val, '') |
|||
// }, |
|||
// }, |
|||
}, |
|||
creatd() { |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => {}) |
|||
}, |
|||
methods: { |
|||
handleChange(file, fileList) {}, |
|||
// 传入数据并绑定 |
|||
pageLoad(files) { |
|||
// console.log('传入:' + files) |
|||
if (files !== null && files !== '') { |
|||
this.files_list = JSON.parse(files) |
|||
var ids = '' |
|||
this.fileList_FuJian = [] |
|||
// 1. 回显页面 |
|||
for (var i = 0; i < this.files_list.length; i++) { |
|||
var body = { |
|||
name: this.files_list[i].name, |
|||
url: '', |
|||
status: 'finished', |
|||
} |
|||
this.fileList_FuJian.push(body) |
|||
ids = ids + this.files_list[i].id + ',' |
|||
} |
|||
// 2. 回存文件id |
|||
if (ids !== '') { |
|||
ids = ids.substring(0, ids.length - 1) |
|||
} |
|||
this.enclosure = ids |
|||
this.file_catch = ids |
|||
} else { |
|||
this.file_add = '' |
|||
this.file_catch = '' |
|||
this.enclosure = '' |
|||
this.files_list = [] |
|||
this.fileList_FuJian = [] |
|||
} |
|||
}, |
|||
// 上传方案--成功后执行 |
|||
uploadImgSuccess(response, file, fileList) { |
|||
this.$emit('change', this.enclosure) |
|||
}, |
|||
handleRemove(file, fileList) { |
|||
if (this.idsz != '') { |
|||
this.$emit('handleRemove', this.idsz) |
|||
} |
|||
}, |
|||
// 上传文件 FrontPhoto |
|||
uploadSectionFile(params) { |
|||
const file = params.file |
|||
// 根据后台需求数据格式 |
|||
const form = new FormData() |
|||
// console.log('77777777777777',form) |
|||
// 文件对象 |
|||
form.append('file', file) |
|||
// 项目封装的请求方法,下面做简单介绍 |
|||
uploadFile(form).then((res) => { |
|||
// 自行处理各种情况 |
|||
if (res.code === '200') { |
|||
let a = '' |
|||
a = res.data.filePath |
|||
this.idsz = a |
|||
this.$emit('handleSuccess', res) |
|||
} |
|||
if (res.msg == '操作成功') { |
|||
this.$message({ |
|||
message: '上传成功!', |
|||
type: 'success', |
|||
}) |
|||
} |
|||
}) |
|||
.catch((err) => { |
|||
console.log(err) |
|||
// 如果等于备案,就调备案图片上传接口 |
|||
}) |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped></style> |
@ -1,132 +0,0 @@ |
|||
<template> |
|||
|
|||
<el-upload ref="upload" class="avatar-uploader" action="imageUrl" :show-file-list="true" list-type="picture-card" |
|||
:data="datas" :on-change="uploadchangeFile" :http-request="uploadSectionFile" :on-remove="onRemove"> |
|||
<i class="el-icon-plus" /> |
|||
<img v-if="FrontPhoto" :src="FrontPhoto" class="avatar"> |
|||
<i v-else class="el-icon-plus avatar-uploader-icon" /> |
|||
<div slot="tip" class="el-upload__tip">{{ tip }}</div> |
|||
</el-upload> |
|||
|
|||
</template> |
|||
|
|||
<script> |
|||
// import { imageUpload } from '@/api/portal/Upload.js' |
|||
import { |
|||
imgUploadz |
|||
} from '@/api/jichuxinxi/baseaffiliatcompany' // 这个没用着 |
|||
export default { |
|||
props: { |
|||
tip: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
types: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
FrontPhoto: '', |
|||
imageUrl: imgUploadz, |
|||
datas: null, |
|||
imgId: '', |
|||
} |
|||
}, |
|||
created() { |
|||
console.log('5522555',types) |
|||
this.datas = { |
|||
type: this.types |
|||
} |
|||
}, |
|||
methods: { |
|||
// 上传文件 FrontPhoto |
|||
uploadSectionFile(params) { |
|||
// console.log(params, 111111111111) |
|||
const file = params.file |
|||
const fileType = file.type |
|||
const isImage = fileType.indexOf('image') != -1 |
|||
const isLt2M = file.size / 1024 / 1024 < 2 |
|||
// console.log(params) |
|||
// 这里常规检验,看项目需求而定 |
|||
if (!isImage) { |
|||
this.$message.error('只能上传图片格式png、jpg、gif、jpeg!') |
|||
return |
|||
} |
|||
if (!isLt2M) { |
|||
this.$message.error('只能上传图片大小小于2M') |
|||
return |
|||
} |
|||
// 根据后台需求数据格式 |
|||
const form = new FormData() |
|||
// console.log(form) |
|||
// 文件对象 |
|||
form.append('file', file) |
|||
|
|||
// 如果等于'', 就调挂靠公司图片上传的接口 |
|||
imgUploadz(form).then((res) => { |
|||
// 自行处理各种情况 |
|||
if (res.code === '200') { |
|||
this.imgId = '' |
|||
res.data.attachType = this.types |
|||
this.imgId = res.data.filePath |
|||
this.$emit('imgdata', res) |
|||
} |
|||
// this.FrontPhoto = res.fullUrl |
|||
if (res.msg == '操作成功') { |
|||
this.$message({ |
|||
message: '上传成功!', |
|||
type: 'success', |
|||
}) |
|||
} |
|||
}) |
|||
.catch((err) => { |
|||
console.log(err) |
|||
}) |
|||
}, |
|||
onRemove() { |
|||
if (this.imgId != '') { |
|||
this.$emit('removeIds', this.imgId) |
|||
} |
|||
}, |
|||
uploadchangeFile(file) { |
|||
this.FrontPhoto = URL.createObjectURL(file.raw) |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
|||
|
|||
<style> |
|||
.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 { |
|||
font-size: 28px; |
|||
color: #8c939d; |
|||
width: 200px; |
|||
height: 178px; |
|||
line-height: 178px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.avatar { |
|||
width: 178px; |
|||
height: 178px; |
|||
display: block; |
|||
} |
|||
|
|||
.el-upload__tip { |
|||
line-height: 25px; |
|||
margin-top: 0; |
|||
} |
|||
</style> |
@ -1,159 +0,0 @@ |
|||
<template> |
|||
|
|||
<el-upload ref="upload" class="avatar-uploader" action="imageUrl" :show-file-list="true" list-type="picture-card" :data="datas" :on-change="uploadchangeFile" :http-request="uploadSectionFile" :on-remove="onRemove"> |
|||
<i class="el-icon-plus" /> |
|||
<img v-if="FrontPhoto" :src="FrontPhoto" class="avatar"> |
|||
<i v-else class="el-icon-plus avatar-uploader-icon" /> |
|||
<div slot="tip" class="el-upload__tip">{{ tip }}</div> |
|||
</el-upload> |
|||
|
|||
</template> |
|||
|
|||
<script> |
|||
import { imageUpload } from '@/api/portal/Upload.js' |
|||
import { imgUploadz } from '@/api/jichuxinxi/baseaffiliatcompany' // 这个没用着 |
|||
export default { |
|||
props: { |
|||
tip: { |
|||
type: String, |
|||
default: '' |
|||
}, |
|||
types: { |
|||
type: String, |
|||
default: '' |
|||
}, |
|||
linkChange: { |
|||
type: String, |
|||
default: '' |
|||
} |
|||
}, |
|||
data() { |
|||
return { |
|||
FrontPhoto: '', |
|||
imageUrl: imgUploadz, |
|||
datas: null, |
|||
imgId: '' |
|||
} |
|||
}, |
|||
created() { |
|||
this.datas = { type: this.types } |
|||
console.log(this.linkChange, 111111111111) |
|||
|
|||
// console.log(this.datas, 11) |
|||
}, |
|||
methods: { |
|||
// 上传文件 FrontPhoto |
|||
uploadSectionFile(params) { |
|||
// console.log(params, 111111111111) |
|||
const file = params.file |
|||
const fileType = file.type |
|||
const isImage = fileType.indexOf('image') != -1 |
|||
const isLt2M = file.size / 1024 / 1024 < 2 |
|||
// console.log(params) |
|||
// 这里常规检验,看项目需求而定 |
|||
if (!isImage) { |
|||
this.$message.error('只能上传图片格式png、jpg、gif、jpeg!') |
|||
return |
|||
} |
|||
if (!isLt2M) { |
|||
this.$message.error('只能上传图片大小小于2M') |
|||
return |
|||
} |
|||
// 根据后台需求数据格式 |
|||
const form = new FormData() |
|||
// console.log(form) |
|||
// 文件对象 |
|||
form.append('file', file) |
|||
|
|||
// 如果等于'', 就调挂靠公司图片上传的接口 |
|||
// 项目封装的请求方法,下面做简单介绍 |
|||
if (this.linkChange == '') { |
|||
imageUpload(form) |
|||
.then((res) => { |
|||
// 自行处理各种情况 |
|||
if (res.code === '200') { |
|||
this.imgId = '' |
|||
res.data.attachType = this.types |
|||
this.imgId = res.data.filePath |
|||
this.$emit('imgdata', res) |
|||
} |
|||
// this.FrontPhoto = res.fullUrl |
|||
if (res.msg == '操作成功') { |
|||
this.$message({ |
|||
message: '上传成功!', |
|||
type: 'success' |
|||
}) |
|||
} |
|||
}) |
|||
.catch((err) => { |
|||
console.log(err) |
|||
}) |
|||
// 如果等于备案,就调备案图片上传接口 |
|||
} |
|||
// else if (this.linkChange == 'keepOnRecord') { |
|||
// imageUpload(form) |
|||
// .then((res) => { |
|||
// // 自行处理各种情况 |
|||
// if (res.code === '200') { |
|||
// this.imgId = '' |
|||
// res.data.attachType = this.types |
|||
// this.imgId = res.data.filePath |
|||
// this.$emit('imgdata', res) |
|||
// } |
|||
// // this.FrontPhoto = res.fullUrl |
|||
// if (res.msg == '操作成功') { |
|||
// this.$message({ |
|||
// message: '上传成功!', |
|||
// type: 'success', |
|||
// }) |
|||
// } |
|||
// }) |
|||
// .catch((err) => { |
|||
// console.log(err) |
|||
// }) |
|||
// } |
|||
}, |
|||
onRemove() { |
|||
if (this.imgId != '') { |
|||
this.$emit('removeIds', this.imgId) |
|||
} |
|||
}, |
|||
uploadchangeFile(file) { |
|||
this.FrontPhoto = URL.createObjectURL(file.raw) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style> |
|||
.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 { |
|||
font-size: 28px; |
|||
color: #8c939d; |
|||
width: 200px; |
|||
height: 178px; |
|||
line-height: 178px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.avatar { |
|||
width: 178px; |
|||
height: 178px; |
|||
display: block; |
|||
} |
|||
.el-upload__tip { |
|||
line-height: 25px; |
|||
margin-top: 0; |
|||
} |
|||
</style> |
@ -1,229 +0,0 @@ |
|||
<template> |
|||
<div> |
|||
<div> |
|||
<el-upload ref="imgUpload" v-loading="loadding" class="avatar-uploader" :headers="accessToken" |
|||
:action="uploadFile" accept=".jpg,.jpeg,.png,.bmp,.pdf,.JPG,.JPEG,.BMP" list-type="picture-card" |
|||
:file-list="files" :on-remove="removeImage" :on-preview="handlePictureCardPreview" :on-progress="uploadProgrees" |
|||
:on-error="uploadError" :on-success="uploadImgSuccess_FuJian"> |
|||
<i class="el-icon-plus avatar-uploader-icon" /> |
|||
</el-upload> |
|||
<!-- <button @click="test()">test</button> --> |
|||
</div> |
|||
<el-dialog :visible.sync="showpicture" :append-to-body="true" title="查看图片"> |
|||
<img width="100%" :src="dialogImageUrl" alt=""> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { |
|||
uploadFile, |
|||
deleteFilesOss |
|||
} from '@/api/portal/Upload.js' |
|||
import { |
|||
getStorage |
|||
} from '@/utils/auth.js' |
|||
import { |
|||
mapGetters |
|||
} from 'vuex' |
|||
export default { |
|||
model: { |
|||
prop: 'imageFileList', |
|||
event: 'fileListChange' |
|||
}, |
|||
props: { |
|||
placeholder: { |
|||
type: String, |
|||
default: '' |
|||
}, |
|||
// 长度 |
|||
width: { |
|||
type: String, |
|||
default: '270px' |
|||
}, |
|||
// 图片路径--全路径 |
|||
imageFileList: { |
|||
type: Array, |
|||
required: [] |
|||
}, |
|||
num: { |
|||
type: String, |
|||
default: '' |
|||
} |
|||
}, |
|||
data() { |
|||
return { |
|||
dialogImageUrl: '', |
|||
accessToken: null, |
|||
uploadFile: uploadFile, |
|||
files: [], |
|||
showpicture: false, |
|||
loadding: false |
|||
} |
|||
}, |
|||
computed: { |
|||
...mapGetters([ |
|||
'id', |
|||
'departmentCode', |
|||
'departmentLevel', |
|||
'departmentType', |
|||
'token' |
|||
]) |
|||
}, |
|||
watch: { |
|||
imageFileList: { |
|||
deep: true, |
|||
immediate: true, |
|||
handler(newVal, oldVal) { |
|||
// debugger |
|||
console.log('aaaa1', newVal) |
|||
this.files = [] |
|||
this.$nextTick(() => { |
|||
for (var i = 0; i < newVal.length; i++) { |
|||
// debugger |
|||
this.files.push({ |
|||
name: newVal[i], |
|||
url: newVal[i], |
|||
// fullUrl: newVal[i] |
|||
}) |
|||
} |
|||
}) |
|||
} |
|||
} |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => { |
|||
this.Init() |
|||
}) |
|||
}, |
|||
created() { |
|||
this.uploadFile = uploadFile // 接口 |
|||
this.accessToken = { |
|||
'token': getStorage() |
|||
} |
|||
console.log('token', this.accessToken) |
|||
// console.log('imageFileList', this.imageFileList) |
|||
}, |
|||
methods: { |
|||
// 页面第一次加载 |
|||
Init() { |
|||
// 1. 文件上传用token |
|||
// this.accessToken = { |
|||
// token: this.token |
|||
// } |
|||
// |
|||
console.log('aaaa2', this.imageFileList) |
|||
if (this.imageFileList !== undefined) { |
|||
this.files = [] |
|||
for (var i = 0; i < this.imageFileList.length; i++) { |
|||
// console.log('aaaa', i) |
|||
this.files.push({ |
|||
name: this.imageFileList[i], |
|||
url: this.imageFileList[i] |
|||
}) |
|||
} |
|||
} |
|||
}, // 上传方案--成功后执行 |
|||
uploadImgSuccess_FuJian(response, file, ImageFileList) { |
|||
console.log('上传成功!',this.imageFileList) |
|||
// debugger |
|||
this.loadding = false |
|||
if (file.response.code === '200') { |
|||
// debugger |
|||
// 返显图片 |
|||
this.dialogImageUrl = file.response.data.fullUrl |
|||
var uid = file.response.data |
|||
this.files.push({ |
|||
name: file.response.data.sourceFileName, |
|||
url: file.response.data.fullUrl, |
|||
// url: file.response.data.fullUrl, |
|||
// fullUrl: file.response.data.filePath, |
|||
// size: file.response.data.size, |
|||
// sourceFileName: file.response.data.sourceFileName |
|||
}) |
|||
const imgFiles = [] |
|||
this.files.forEach(o => { |
|||
imgFiles.push(o.url) |
|||
}) |
|||
this.$emit('fileListChange', imgFiles) |
|||
console.log('上传成功:' + JSON.stringify(this.files)) |
|||
// this.$emit('fileChange', this.files) |
|||
} |
|||
}, |
|||
removeImage(file, ImageFileList) { |
|||
const fullPath = { |
|||
fullPath:file.url |
|||
} |
|||
deleteFilesOss(fullPath).then((res)=>{ |
|||
console.log('移除',res) |
|||
if(res.code === '200'){ |
|||
this.files = res.data |
|||
this.$notify({ |
|||
title: '提示', |
|||
message: '移除成功', |
|||
type: 'success', |
|||
duration: 2000, |
|||
}) |
|||
} |
|||
}) |
|||
console.log('000000',this.files) |
|||
this.$emit('fileChange', this.files) |
|||
console.log(file,ImageFileList,'移除前') |
|||
this.imageFileList.forEach((e,index)=>{ |
|||
if(e==file.name){ |
|||
this.imageFileList.splice(index,1) |
|||
} |
|||
}) |
|||
console.log('移除成功',this.imageFileList) |
|||
}, |
|||
handlePictureCardPreview(file) { |
|||
this.dialogImageUrl = file.url |
|||
this.showpicture = true |
|||
}, |
|||
// 上传失败 |
|||
uploadError() { |
|||
this.loadding = false |
|||
}, |
|||
uploadProgrees(event, file, fileList) { |
|||
if (Number(event.percent) > 0) { |
|||
this.loadding = true |
|||
} |
|||
// console.log('event:', event) |
|||
}, |
|||
test() { |
|||
console.log('aaa', this.files) |
|||
this.$set(this.files, this.files) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
.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 { |
|||
font-size: 28px; |
|||
color: #8c939d; |
|||
width: 100px; |
|||
height: 250px; |
|||
line-height: 100px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.avatar { |
|||
width: 200px; |
|||
height: 200px; |
|||
display: block; |
|||
// float: left; |
|||
} |
|||
</style> |
@ -1,116 +0,0 @@ |
|||
<template> |
|||
<el-upload class="avatar-uploader" ref="upload" :action="fakeaction" :show-file-list="false" :on-change="uploadchangeFile" :http-request="uploadSectionFile"> |
|||
<!-- <el-button size="small" type="primary">点击上传</el-button> --> |
|||
<img v-if="Photo" :src="Photo" class="avatar"> |
|||
<i v-else class="el-icon-plus avatar-uploader-icon"></i> |
|||
<div slot="tip" class="el-upload__tip">{{tip}}</div> |
|||
</el-upload> |
|||
</template> |
|||
|
|||
<script> |
|||
import { imageUpload } from '@/api/Common/Upload.js' |
|||
export default { |
|||
props: { |
|||
tip: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
FrontPhoto: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
Photo: this.FrontPhoto, |
|||
loading: null, |
|||
} |
|||
}, |
|||
methods: { |
|||
openFullScreen2() { |
|||
this.loading = this.$loading({ |
|||
lock: true, |
|||
text: 'Loading', |
|||
spinner: 'el-icon-loading', |
|||
background: 'rgba(0, 0, 0, 0.7)', |
|||
}) |
|||
}, |
|||
// 上传文件 FrontPhoto |
|||
uploadSectionFile(params) { |
|||
const file = params.file, |
|||
fileType = file.type, |
|||
isImage = fileType.indexOf('image') != -1, |
|||
isLt2M = file.size / 1024 / 1024 < 10 |
|||
this.openFullScreen2() |
|||
console.log(params) |
|||
// 这里常规检验,看项目需求而定 |
|||
if (!isImage) { |
|||
this.$message.error('只能上传图片格式png、jpg、gif!') |
|||
this.loading.close() |
|||
return |
|||
} |
|||
if (!isLt2M) { |
|||
this.$message.error('只能上传图片大小小于10M') |
|||
this.loading.close() |
|||
return |
|||
} |
|||
// 根据后台需求数据格式 |
|||
const form = new FormData() |
|||
console.log(form) |
|||
// 文件对象 |
|||
form.append('file', file) |
|||
|
|||
// 项目封装的请求方法,下面做简单介绍 |
|||
imageUpload(form) |
|||
.then((res) => { |
|||
//自行处理各种情况 |
|||
console.log(res) |
|||
this.$emit('imgUrl', res.data) |
|||
this.Photo = res.data.fullUrl |
|||
if (res.code == 200) { |
|||
this.loading.close() |
|||
this.$message({ |
|||
message: '上传成功!', |
|||
type: 'success', |
|||
}) |
|||
} |
|||
}) |
|||
.catch((err) => { |
|||
console.log(err) |
|||
}) |
|||
}, |
|||
uploadchangeFile(file) { |
|||
// this.Photo = URL.createObjectURL(file.raw) |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
|||
|
|||
<style> |
|||
.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 { |
|||
font-size: 28px; |
|||
color: #8c939d; |
|||
width: 200px; |
|||
height: 178px; |
|||
line-height: 178px; |
|||
text-align: center; |
|||
} |
|||
|
|||
.avatar { |
|||
width: 178px; |
|||
height: 178px; |
|||
display: block; |
|||
} |
|||
</style> |
@ -1,194 +0,0 @@ |
|||
<template> |
|||
<div> |
|||
<el-upload class="upload-demo" :data="datas" :accept="accept" :on-success="uploadImgSuccess" :on-change="handleChange" :on-remove="handleRemove" :file-list="fileList_FuJian" :http-request="uploadSectionFile"> |
|||
<el-button size="small" type="primary">点击上传</el-button> |
|||
<div slot="tip" class="el-upload__tip">单个文件大小不允许超过100M,支持上传文件类型:{{ accept }}</div> |
|||
</el-upload> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { imgUploadz } from '@/api/jichuxinxi/baseaffiliatcompany' |
|||
import { mapGetters } from 'vuex' |
|||
export default { |
|||
props: { |
|||
placeholder: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
// 长度 |
|||
width: { |
|||
type: String, |
|||
default: '270px', |
|||
}, |
|||
accept: { |
|||
type: String, |
|||
default: |
|||
'.jpg,.jpeg,.png,.bmp,.pdf,.JPG,.JPEG,.BMP,.PDF,.xls,.docx,.xlsx,.ppt,.pptx', |
|||
}, |
|||
// 文件列表 |
|||
files: { |
|||
type: String, |
|||
required: true, |
|||
}, |
|||
// 文件名称 |
|||
name: { |
|||
type: String, |
|||
required: true, |
|||
}, |
|||
types:{ |
|||
type:String, |
|||
required: true, |
|||
}, |
|||
linkChange: { |
|||
type: String, |
|||
default: '', |
|||
}, |
|||
}, |
|||
data() { |
|||
return { |
|||
datas: null, |
|||
types:types, |
|||
accessToken: {}, |
|||
fileList_FuJian: [], |
|||
enclosure: '', |
|||
file_add: '', |
|||
idsz: '', |
|||
file_catch: '', |
|||
files_list: [], |
|||
} |
|||
}, |
|||
computed: { |
|||
...mapGetters([ |
|||
'id', |
|||
'departmentCode', |
|||
'departmentLevel', |
|||
'departmentType', |
|||
'token', |
|||
]), |
|||
}, |
|||
watch: { |
|||
files: { |
|||
deep: true, |
|||
handler(val) { |
|||
this.pageLoad(val, '') |
|||
}, |
|||
}, |
|||
}, |
|||
creatd() { |
|||
this.datas = { type: this.types } |
|||
// console.log(this.datas,7777777) |
|||
console.log(this.type, '船只被') |
|||
}, |
|||
mounted() { |
|||
this.$nextTick(() => { |
|||
// this.Init() |
|||
}) |
|||
}, |
|||
methods: { |
|||
// 页面第一次加载 |
|||
Init() { |
|||
// 1. 文件上传用token |
|||
// this.accessToken = { |
|||
// token: this.token, |
|||
// } |
|||
this.pageLoad(this.files) |
|||
}, |
|||
handleChange(file, fileList) { |
|||
}, |
|||
// 传入数据并绑定 |
|||
pageLoad(files) { |
|||
// console.log('传入:' + files) |
|||
if (files !== null && files !== '') { |
|||
this.files_list = JSON.parse(files) |
|||
var ids = '' |
|||
this.fileList_FuJian = [] |
|||
// 1. 回显页面 |
|||
for (var i = 0; i < this.files_list.length; i++) { |
|||
var body = { |
|||
name: this.files_list[i].name, |
|||
url: '', |
|||
status: 'finished', |
|||
} |
|||
this.fileList_FuJian.push(body) |
|||
ids = ids + this.files_list[i].id + ',' |
|||
} |
|||
// 2. 回存文件id |
|||
if (ids !== '') { |
|||
ids = ids.substring(0, ids.length - 1) |
|||
} |
|||
this.enclosure = ids |
|||
this.file_catch = ids |
|||
} else { |
|||
this.file_add = '' |
|||
this.file_catch = '' |
|||
this.enclosure = '' |
|||
this.files_list = [] |
|||
this.fileList_FuJian = [] |
|||
} |
|||
}, |
|||
// 上传方案--成功后执行 |
|||
uploadImgSuccess(response, file, fileList) { |
|||
// console.log('fileList:' + JSON.stringify(fileList)) |
|||
|
|||
// this.enclosure = '' |
|||
// 1. 保存新增文件id(this.file_add) |
|||
// this.getNewFileId(fileList) |
|||
// 2. 保存并拼接id |
|||
// this.getFileId() |
|||
// console.log('4. 返回拼接:' + this.enclosure) |
|||
// 3. 返回拼接id |
|||
this.$emit('change', this.enclosure) |
|||
}, |
|||
handleRemove(file, fileList) { |
|||
// console.log('file:' + JSON.stringify(file)) |
|||
// console.log('fileList:' + JSON.stringify(fileList)) |
|||
// this.enclosure = '' |
|||
// 1. 保存新增文件id(this.file_add) |
|||
// this.getNewFileId(fileList) |
|||
// 2. 保存数据库读取的已有文件id(this.file_catch) |
|||
// this.getCatchFileId(file) |
|||
// 3. 保存并拼接id |
|||
// this.getFileId() |
|||
// 4. 返回拼接id |
|||
if (this.idsz != '') { |
|||
this.$emit('handleRemove', this.idsz) |
|||
} |
|||
}, |
|||
// 上传文件 FrontPhoto |
|||
uploadSectionFile(params) { |
|||
const file = params.file |
|||
// 根据后台需求数据格式 |
|||
const form = new FormData() |
|||
console.log('77777777777777',form) |
|||
// 文件对象 |
|||
form.append('file', file) |
|||
// 项目封装的请求方法,下面做简单介绍 |
|||
console.log('988888',form.append) |
|||
imgUploadz(form).then((res) => { |
|||
// 自行处理各种情况 |
|||
if (res.code === '200') { |
|||
res.data.attachType = this.types |
|||
let a = '' |
|||
a = res.data.filePath |
|||
this.idsz = a |
|||
this.$emit('handleSuccess', res) |
|||
} |
|||
// this.FrontPhoto = res.fullUrl |
|||
if (res.msg == '操作成功') { |
|||
this.$message({ |
|||
message: '上传成功!', |
|||
type: 'success', |
|||
}) |
|||
} |
|||
}) |
|||
.catch((err) => { |
|||
console.log(err) |
|||
// 如果等于备案,就调备案图片上传接口 |
|||
}) |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped></style> |
@ -0,0 +1,28 @@ |
|||
package com.yxt.anrui.riskcenter.api.loanfinotherPolicy; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/12 |
|||
**/ |
|||
@Data |
|||
public class AppOtherPolicyVo { |
|||
|
|||
@ApiModelProperty("产品类别") |
|||
private String productTypeValue; |
|||
|
|||
@ApiModelProperty("最高融资额比例(%)") |
|||
private String maxLoanRatio; |
|||
|
|||
@ApiModelProperty("最高融资额") |
|||
private String maxLoanAmount; |
|||
|
|||
@ApiModelProperty("期数") |
|||
private String period; |
|||
|
|||
@ApiModelProperty("年利率(%)") |
|||
private String yearRatio; |
|||
} |
@ -0,0 +1,33 @@ |
|||
package com.yxt.anrui.terminal.api.autoservice.financialPolicy; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/12 |
|||
**/ |
|||
@Data |
|||
public class FinancialOtherPolicyVo implements Vo { |
|||
private static final long serialVersionUID = 3695189220403491871L; |
|||
|
|||
@ApiModelProperty("产品类别") |
|||
@JsonProperty("productTypeKey") |
|||
private String productTypeValue; |
|||
|
|||
@ApiModelProperty("最高融资额比例(%)") |
|||
private String maxLoanRatio; |
|||
|
|||
@ApiModelProperty("最高融资额") |
|||
private String maxLoanAmount; |
|||
|
|||
@ApiModelProperty("期数") |
|||
private String period; |
|||
|
|||
@ApiModelProperty("年利率(%)") |
|||
private String yearRatio; |
|||
|
|||
} |
@ -0,0 +1,79 @@ |
|||
package com.yxt.anrui.terminal.api.autoservice.financialPolicy; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/7/12 |
|||
**/ |
|||
@Data |
|||
public class FinancialPolicyDetailsVo implements Vo { |
|||
private static final long serialVersionUID = -439513352576615253L; |
|||
|
|||
@ApiModelProperty("政策名称") |
|||
@JsonProperty("policyName") |
|||
private String policyName; |
|||
@ApiModelProperty("适用部门,黑龙江销售部或分公司") |
|||
@JsonProperty("useDept") |
|||
private String useDeptNames; |
|||
@ApiModelProperty("资方简称") |
|||
@JsonProperty("bankName") |
|||
private String bankShortName; |
|||
@ApiModelProperty("业务类型") |
|||
@JsonProperty("busTypeValue") |
|||
private String busTypeValue; |
|||
@ApiModelProperty("车辆大类") |
|||
@JsonProperty("vehCategoryValue") |
|||
private String vehCategoryValue; |
|||
@JsonProperty("vehTypeValue") |
|||
private String vehTypeValue; |
|||
@ApiModelProperty("是否打包") |
|||
private String isPack; |
|||
@ApiModelProperty("是否担保") |
|||
private String isGuarantee; |
|||
@ApiModelProperty("备注") |
|||
private String remarks; |
|||
|
|||
@ApiModelProperty("单车意外险") |
|||
@JsonProperty("vehAccidentAmount") |
|||
private String vehAccidentAmount; |
|||
@ApiModelProperty("最低首付比例") |
|||
@JsonProperty("minDownPaymentRatio") |
|||
private String downPayRatioLeast; |
|||
@ApiModelProperty("首付比例") |
|||
@JsonProperty("downPayRatio") |
|||
private String downPayRatio; |
|||
@ApiModelProperty("保证金比例") |
|||
@JsonProperty("bondRatio") |
|||
private String bondRatio; |
|||
@ApiModelProperty("期数") |
|||
@JsonProperty("period") |
|||
private String period; |
|||
@ApiModelProperty("标准年利率") |
|||
@JsonProperty("yearRatio") |
|||
private String yearRatio; |
|||
@ApiModelProperty("服务费类型") |
|||
@JsonProperty("serviceAmountType") |
|||
private String serviceAmountTypeValue; |
|||
@ApiModelProperty("服务费") |
|||
@JsonProperty("serviceAmount") |
|||
private String serviceAmount; |
|||
@ApiModelProperty("保险保证金") |
|||
@JsonProperty("depositPremium") |
|||
private String depositPremium; |
|||
@ApiModelProperty("落户保证金") |
|||
@JsonProperty("depositSettle") |
|||
private String depositSettle; |
|||
@ApiModelProperty("名义/留购价款") |
|||
@JsonProperty("nominalPrice") |
|||
private String nominalPrice; |
|||
@ApiModelProperty("有效期至") |
|||
@JsonProperty("validDateTo") |
|||
private String validDateTo; |
|||
@ApiModelProperty("其他融") |
|||
private FinancialOtherPolicyVo otherInfo; |
|||
} |
Loading…
Reference in new issue