diff --git a/src/api/http.js b/src/api/http.js index 94fd22a..16d6d02 100644 --- a/src/api/http.js +++ b/src/api/http.js @@ -50,9 +50,42 @@ export const reportDetail = (reportId) => { export const creditEvaluationInput = data => { return post(`${host}/judgment/bankCreditEvaluation/creditEvaluationInput`, data) } +export const creditEvaluationDetails = data => { + return post(`${host}/judgment/bankCreditEvaluation/creditEvaluationDetails`, data) +} +export const loanApplicationInput = data => { + return post(`${host}/judgment/bankLoanApplication/loanApplicationInput`, data) +} +export const loanApplicationDetails = data => { + return post(`${host}/judgment/bankLoanApplication/loanApplicationDetails`, data) +} +export const creditApplicationInput = data => { + return post(`${host}/judgment/bankCreditApplication/creditApplicationInput`, data) +} +export const creditApplicationDetails = data => { + return post(`${host}/judgment/bankCreditApplication/creditApplicationDetails`, data) +} export const companyLoanList = data => { return post(`${host}/judgment/bankCompanyLoans/companyLoanList`, data) } +export const companyLoanDetails = id => { + return get(`${host}/judgment/bankCompanyLoans/companyLoanDetails?companyLoanId=${id}`) +} +export const loanDisbursement = data => { + return post(`${host}/judgment/bankCompanyLoans/loanDisbursement`, data) +} +export const loanCollection = data => { + return post(`${host}/judgment/bankCompanyLoans/loanCollection`, data) +} +export const nonPerformingLoans = data => { + return post(`${host}/judgment/bankCompanyLoans/nonPerformingLoans`, data) +} +export const badDebtRecognition = data => { + return post(`${host}/judgment/bankCompanyLoans/badDebtRecognition`, data) +} +export const postLoanInvestigationInput = data => { + return post(`${host}/judgment/bankPostLoanInvestigation/postLoanInvestigationInput`, data) +} export const loanContractSave = (data) => { return post('/judgment/bankPersonalLoanContractInfo/saveOrUpdate', data) @@ -76,6 +109,9 @@ export const grantALoan = (data) => { export const repaymentPlan = (data) => { return post(`/judgment/bankPersonalRepaymentPlan/repaymentPlan`, data) } +export const batchProcessing = (data) => { + return post(`/judgment/bankPersonalRepaymentPlan/batchProcessing`, data) +} export const operationExtension = (data) => { return post(`/judgment/bankPersonalLoanContractInfo/operationExtension?contractId=${data.id}&extensionPeriod=${data.extensionPeriod}`) } \ No newline at end of file diff --git a/src/pages/counter/list/index.vue b/src/pages/counter/list/index.vue index 14faa8c..0aa21fc 100644 --- a/src/pages/counter/list/index.vue +++ b/src/pages/counter/list/index.vue @@ -698,6 +698,7 @@ export default { }; }, computed: { + ...mapState('system', ['isCredit', 'creditImportIndex', 'creditImportIds']), // 是否是信贷部 isCredit: function () { return this.$store.state.system.isCredit; @@ -1048,14 +1049,18 @@ export default { mounted () { let that = this - this.$refs.manPhoto.onload = function () { - that.$refs.manDiv.style.width = this.width + 'px'; - that.$refs.manDiv.style.height = (this.height - 70) + 'px'; + if (this.$refs.manPhoto) { + this.$refs.manPhoto.onload = function () { + that.$refs.manDiv.style.width = this.width + 'px'; + that.$refs.manDiv.style.height = (this.height - 70) + 'px'; + } } - this.$refs.cipherPhoto.onload = function () { - that.$refs.cipherDiv.style.width = this.width + 'px'; - that.$refs.cipherDiv.style.height = this.height + 'px'; + if (this.$refs.cipherPhoto) { + this.$refs.cipherPhoto.onload = function () { + that.$refs.cipherDiv.style.width = this.width + 'px'; + that.$refs.cipherDiv.style.height = this.height + 'px'; + } } // 图片查看器允许拖拽 @@ -1192,6 +1197,7 @@ export default { outThings2: 'system/outThings2', outThingsGoods: 'system/outThingsGoods', setTipsOperate: 'system/setTipsOperate', + initCreditImportIds: 'system/initCreditImportIds', setCreditImportIds: 'system/setCreditImportIds', }), @@ -2155,13 +2161,7 @@ export default { }).catch((error) => { }) } else if (this.nbm == 12) { - this.setCreditImportIds(770) - this.setTipsOperate('导入成功!') - } else if (this.nbm == 13) { - this.setCreditImportIds(771) - this.setTipsOperate('导入成功!') - } else if (this.nbm == 14) { - this.setCreditImportIds(772) + this.setCreditImportIds(this.receptionList[0].id) this.setTipsOperate('导入成功!') } // 如果不是钱箱或传票栏或印章盒或传票栏或客户,刷卡后返回 diff --git a/src/pages/manage/index/index.vue b/src/pages/manage/index/index.vue index afccedc..9621099 100644 --- a/src/pages/manage/index/index.vue +++ b/src/pages/manage/index/index.vue @@ -286,20 +286,17 @@ $submenu_padding_left: 25px; // 相应的padding-left大小 .box { display: flex; min-width: 80vw; - // margin-top: 6vh; overflow: auto; - // height: 70vh; .nav { - width: 25vw; - min-height: 80vh; - overflow: hidden; - border-top-left-radius: 20px; - display: flex; - flex-direction: column; + // width: 25vw; + // min-height: 80vh; + // overflow: hidden; + // border-top-left-radius: 20px; + // display: flex; + // flex-direction: column; .top { - min-height: 10vh; font-size: 3vh; line-height: 3vh; display: flex; @@ -329,7 +326,6 @@ $submenu_padding_left: 25px; // 相应的padding-left大小 box-sizing: border-box; .top { - min-height: 10vh; font-size: 30px; display: flex; justify-content: flex-end; diff --git a/src/pages/manage/list/corporateLoans/application.vue b/src/pages/manage/list/corporateLoans/application.vue index 08a9e29..107b86a 100644 --- a/src/pages/manage/list/corporateLoans/application.vue +++ b/src/pages/manage/list/corporateLoans/application.vue @@ -1,32 +1,24 @@ @@ -105,8 +90,10 @@ export default { \ No newline at end of file diff --git a/src/pages/manage/list/corporateLoans/apply/creditApplication/index.vue b/src/pages/manage/list/corporateLoans/apply/creditApplication/index.vue index 7803148..cfae213 100644 --- a/src/pages/manage/list/corporateLoans/apply/creditApplication/index.vue +++ b/src/pages/manage/list/corporateLoans/apply/creditApplication/index.vue @@ -2,54 +2,57 @@ \ No newline at end of file diff --git a/src/pages/manage/list/corporateLoans/apply/creditEvaluation/basic.vue b/src/pages/manage/list/corporateLoans/apply/creditEvaluation/basic.vue index 25e4500..9b97695 100644 --- a/src/pages/manage/list/corporateLoans/apply/creditEvaluation/basic.vue +++ b/src/pages/manage/list/corporateLoans/apply/creditEvaluation/basic.vue @@ -92,7 +92,7 @@ @@ -240,7 +227,7 @@ export default { } .form-wrap { - height: calc(100vh - 320px); + height: calc(100vh - 340px); overflow: auto; } diff --git a/src/pages/manage/list/corporateLoans/apply/loanApplication/step1.vue b/src/pages/manage/list/corporateLoans/apply/loanApplication/step1.vue index f0b85f3..38bd9dd 100644 --- a/src/pages/manage/list/corporateLoans/apply/loanApplication/step1.vue +++ b/src/pages/manage/list/corporateLoans/apply/loanApplication/step1.vue @@ -1,39 +1,39 @@ - + \ No newline at end of file diff --git a/src/pages/manage/list/corporateLoans/management.vue b/src/pages/manage/list/corporateLoans/management.vue index 68d50c2..e48da5c 100644 --- a/src/pages/manage/list/corporateLoans/management.vue +++ b/src/pages/manage/list/corporateLoans/management.vue @@ -1,36 +1,23 @@