diff --git a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue index 82ce6aa7e1..73e8b7ec4b 100644 --- a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue +++ b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiAdd.vue @@ -95,8 +95,8 @@ - - + + @@ -458,6 +458,7 @@ export default { invoBankNum: '', invoPhone: '', isGuarantee: '', + isGuaranteeKey: '', legalIdCard: '', legalMobile: '', legalName: '', @@ -802,6 +803,11 @@ export default { this.$refs['dataForm'].validate((valid) => { if (valid) { this.FormLoading = true + if (this.temp.isGuarantee === '是') { + this.temp.isGuaranteeKey = '1' + } else if (this.temp.isGuarantee === '否') { + this.temp.isGuaranteeKey = '0' + } if (this.temp.sid === '') { SaveList(this.temp).then((response) => { this.FormLoading = false @@ -846,6 +852,11 @@ export default { } this.$refs['dataForm'].validate((valid) => { if (valid) { + if (this.temp.isGuarantee === '是') { + this.temp.isGuaranteeKey = '1' + } else if (this.temp.isGuarantee === '否') { + this.temp.isGuaranteeKey = '0' + } this.FormLoading = true this.temp.yyzzList = this.list1 this.temp.dlysxkzList = this.list2 @@ -885,6 +896,7 @@ export default { invoBankNum: '', invoPhone: '', isGuarantee: '', + isGuaranteeKey: '', legalIdCard: '', legalMobile: '', legalName: '', diff --git a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue index 86c0e0c598..83db1afb14 100644 --- a/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue +++ b/anrui-base/anrui-base-ui/src/views/guakaogongsi/guakaogongsiguanli/guakaogongsiInfo.vue @@ -80,7 +80,7 @@ - {{ temp.isGuarantee == '1' ? '是' : temp.isGuarantee == '0' ? '否' : '' }} + {{ temp.isGuarantee }} diff --git a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangDaiBan.vue b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangDaiBan.vue index c72ca46283..f96ef9974e 100644 --- a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangDaiBan.vue +++ b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangDaiBan.vue @@ -82,7 +82,7 @@ - {{ temp.isGuarantee == '1' ? '是' : temp.isGuarantee == '0' ? '否' : '' }} + {{ temp.isGuarantee }} diff --git a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangEdit.vue b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangEdit.vue index d76ae0366a..b22b2cf2dc 100644 --- a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangEdit.vue +++ b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangEdit.vue @@ -94,8 +94,8 @@ - - + + @@ -457,6 +457,7 @@ export default { invoBankNum: '', invoPhone: '', isGuarantee: '', + isGuaranteeKey: '', legalIdCard: '', legalMobile: '', legalName: '', @@ -797,6 +798,11 @@ export default { } this.$refs['dataForm'].validate((valid) => { if (valid) { + if (this.temp.isGuarantee === '是') { + this.temp.isGuaranteeKey = '1' + } else if (this.temp.isGuarantee === '否') { + this.temp.isGuaranteeKey = '0' + } this.FormLoading = true if (this.temp.sid === '') { SaveList(this.temp).then((response) => { @@ -856,6 +862,11 @@ export default { } this.$refs['dataForm'].validate((valid) => { if (valid) { + if (this.temp.isGuarantee === '是') { + this.temp.isGuaranteeKey = '1' + } else if (this.temp.isGuarantee === '否') { + this.temp.isGuaranteeKey = '0' + } this.FormLoading = true this.temp.yyzzList = this.list1 this.temp.dlysxkzList = this.list2 diff --git a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangYiBan.vue b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangYiBan.vue index ad190987c7..36e0be1b0d 100644 --- a/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangYiBan.vue +++ b/anrui-base/anrui-base-ui/src/views/workFlow/jingxiaoshangFlow/jingxiaoshangYiBan.vue @@ -80,7 +80,7 @@ - {{ temp.isGuarantee == '1' ? '是' : temp.isGuarantee == '0' ? '否' : '' }} + {{ temp.isGuarantee }} diff --git a/anrui-riskcenter-ui/src/api/loandatareview/loandatareview.js b/anrui-riskcenter-ui/src/api/loandatareview/loandatareview.js new file mode 100644 index 0000000000..c2315e179b --- /dev/null +++ b/anrui-riskcenter-ui/src/api/loandatareview/loandatareview.js @@ -0,0 +1,27 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/riskcenter/v1/loanfileexamine/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + saveOrUpdate: function(data) { + return request({ + url: '/riskcenter/v1/loanfileexamine/save', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + fetchBySid: function(data) { + return request({ + url: '/riskcenter/v1/loanfileexamine/fetchDetailsBySid/' + data, + method: 'get' + }) + } +} diff --git a/anrui-riskcenter-ui/src/router/index.js b/anrui-riskcenter-ui/src/router/index.js index bcf2bf2ac7..3f9cc7c48c 100644 --- a/anrui-riskcenter-ui/src/router/index.js +++ b/anrui-riskcenter-ui/src/router/index.js @@ -299,6 +299,22 @@ export const constantRoutes = [ } ] }, + { + path: '/loandatareview', + component: Layout, + redirect: '/loandatareview', + meta: { + title: '放款资料审核' + }, + children: [ + { + path: '/loandatareview/loandatareview', + component: () => import('@/views/loandatareview/loandatareview.vue'), + name: 'LoanDataReview', + meta: { title: '放款资料审核', noCache: true } + } + ] + }, // 流程审批 // 金融产品政策报备--编辑 diff --git a/anrui-riskcenter-ui/src/views/loandatareview/loandatareview.vue b/anrui-riskcenter-ui/src/views/loandatareview/loandatareview.vue new file mode 100644 index 0000000000..be3f037342 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/loandatareview/loandatareview.vue @@ -0,0 +1,311 @@ + + + + diff --git a/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewAdd.vue b/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewAdd.vue new file mode 100644 index 0000000000..09dd43d90c --- /dev/null +++ b/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewAdd.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewInfo.vue b/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewInfo.vue new file mode 100644 index 0000000000..2737044666 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/loandatareview/loandatareviewInfo.vue @@ -0,0 +1,199 @@ + + + + +