From e18af571d35bfc6ce61f90af474449e233715206 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 7 Oct 2023 09:43:53 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=AE=8C=E5=96=84=E9=A3=8E=E6=8E=A7?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E6=89=80=E6=9C=89=E6=8E=A5=E5=8F=A3=E5=9C=B0?= =?UTF-8?q?=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/riskcontrolparameter/riskcontrolparameter.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/anrui-riskcenter-ui/src/api/riskcontrolparameter/riskcontrolparameter.js b/anrui-riskcenter-ui/src/api/riskcontrolparameter/riskcontrolparameter.js index 7aab8751d7..8d59a87f9d 100644 --- a/anrui-riskcenter-ui/src/api/riskcontrolparameter/riskcontrolparameter.js +++ b/anrui-riskcenter-ui/src/api/riskcontrolparameter/riskcontrolparameter.js @@ -4,7 +4,7 @@ export default { // 查询分页列表 listPage: function(params) { return request({ - url: '/riskcenter/v1/loanparameter/listPage', + url: '/portal/v1/sysparameter/listPage', method: 'post', data: params, headers: { 'Content-Type': 'application/json' } @@ -12,7 +12,7 @@ export default { }, saveOrUpdate: function(data) { return request({ - url: '/riskcenter/v1/loanparameter/saveOrUpdate', + url: '/portal/v1/sysparameter/saveOrUpdate', method: 'post', data: data, headers: { 'Content-Type': 'application/json' } @@ -20,13 +20,13 @@ export default { }, fetchBySid: function(data) { return request({ - url: '/riskcenter/v1/loanparameter/fetchDetailsBySid/' + data, + url: '/portal/v1/sysparameter/fetchDetailsBySid/' + data, method: 'get' }) }, deleteBySids: function(data) { return request({ - url: '/riskcenter/v1/loanparameter/deleteBySids', + url: '/portal/v1/sysparameter/deleteBySids', method: 'DELETE', data: data, headers: { 'Content-Type': 'application/json' } From 1637ce59c405d83d358208d70a210c3ac6845252 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 7 Oct 2023 10:42:46 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=B4=A2=E5=8A=A1?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../financialparameter/financialparameter.js | 43 +++ anrui-system-ui/src/router/index.js | 11 + anrui-system-ui/src/styles/index.scss | 69 +++++ .../financialparameter/financialparameter.vue | 268 ++++++++++++++++++ .../financialparameterAdd.vue | 159 +++++++++++ 5 files changed, 550 insertions(+) create mode 100644 anrui-system-ui/src/api/financialparameter/financialparameter.js create mode 100644 anrui-system-ui/src/views/financialparameter/financialparameter.vue create mode 100644 anrui-system-ui/src/views/financialparameter/financialparameterAdd.vue diff --git a/anrui-system-ui/src/api/financialparameter/financialparameter.js b/anrui-system-ui/src/api/financialparameter/financialparameter.js new file mode 100644 index 0000000000..4d22179b7a --- /dev/null +++ b/anrui-system-ui/src/api/financialparameter/financialparameter.js @@ -0,0 +1,43 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/portal/v1/sysparameter/finListPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + saveOrUpdate: function(data) { + return request({ + url: '/portal/v1/sysparameter/finSave', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + fetchBySid: function(data) { + return request({ + url: '/portal/v1/sysparameter/fetchFinDetailsBySid/' + data, + method: 'get' + }) + }, + deleteBySids: function(data) { + return request({ + url: '/portal/v1/sysparameter/deleteBySids', + method: 'DELETE', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 获取分公司 + getListOrg: function(data) { + return request({ + url: '/portal/v1/sysorganization/getListOrg', + method: 'get', + params: data + }) + } +} diff --git a/anrui-system-ui/src/router/index.js b/anrui-system-ui/src/router/index.js index 352c3ff039..6876c9d67e 100644 --- a/anrui-system-ui/src/router/index.js +++ b/anrui-system-ui/src/router/index.js @@ -281,6 +281,17 @@ export const constantRoutes = [ meta: { title: '数据映射', noCache: true } }] }, + { + path: '/financialparameter', + component: Layout, + redirect: '/financialparameter', + children: [{ + path: '/financialparameter', + component: () => import('@/views/financialparameter/financialparameter.vue'), + name: 'FinancialParameter', + meta: { title: '财务参数', noCache: true } + }] + }, // { // path: '/workflow', // component: Layout, diff --git a/anrui-system-ui/src/styles/index.scss b/anrui-system-ui/src/styles/index.scss index dfcc6215c7..c92bb26357 100644 --- a/anrui-system-ui/src/styles/index.scss +++ b/anrui-system-ui/src/styles/index.scss @@ -246,6 +246,75 @@ div:focus { .footer{margin: 20px;} } +.formaddcopy02 { + padding: 10px 40px 0 40px; + + .title { + padding: 12px; + font-weight: bold; + font-size: 16px; + background-color: #0294d7; + color: #ffffff; + text-align: left; + } + + .el-row { + display: flex; + flex-wrap: wrap; + border-left: 1px solid $table-border-color; + + .el-col { + border-right: 1px solid $table-border-color; + border-bottom: 1px solid $table-border-color; + min-height: 42px; + padding: 0 15px; + line-height: 42px; + position: relative; + + .span-sty { + position: absolute; + top: 0; + bottom: 0; + left: 0; + line-height: 42px; + text-align: right; + font-size: 14px; + color: #606266; + font-weight: 600; + width: 70px; + padding-right: 5px; + border-right: 1px solid #e0e3eb; + } + + .el-form-item { + margin-bottom: 0; + line-height: 42px; + + .addinputw { + //padding: 5px 0; + width: 65%; + margin-left: 80px; + line-height: 42px; + } + + .addinputInfo { + margin-left: 80px; + line-height: 42px; + } + + .el-input__inner { + height: 36px; + } + } + } + + } + + .footer { + margin: 20px; + } +} + .el-form-item__error { z-index: 100; } diff --git a/anrui-system-ui/src/views/financialparameter/financialparameter.vue b/anrui-system-ui/src/views/financialparameter/financialparameter.vue new file mode 100644 index 0000000000..e69201eb97 --- /dev/null +++ b/anrui-system-ui/src/views/financialparameter/financialparameter.vue @@ -0,0 +1,268 @@ + + + + diff --git a/anrui-system-ui/src/views/financialparameter/financialparameterAdd.vue b/anrui-system-ui/src/views/financialparameter/financialparameterAdd.vue new file mode 100644 index 0000000000..929372c039 --- /dev/null +++ b/anrui-system-ui/src/views/financialparameter/financialparameterAdd.vue @@ -0,0 +1,159 @@ + + + + + From 028e82ee8b81bf33b1b6106d5637448bfe9c1cbf Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 7 Oct 2023 10:57:47 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E5=AE=8C=E5=96=84=E9=A3=8E=E6=8E=A7?= =?UTF-8?q?=E7=AE=A1=E7=90=86--=E9=87=91=E8=9E=8D=E6=96=B9=E6=A1=88--?= =?UTF-8?q?=E5=85=B6=E5=AE=83=E8=9E=8D=E6=A8=A1=E5=9D=97=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=85=B6=E5=AE=83=E8=9E=8D=E8=B4=B4=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/publicPage/financialscheme.vue | 11 +++++++++++ .../src/components/publicPage/financialschemeEdit.vue | 8 +++++++- .../src/components/publicPage/financialschemeInfo.vue | 6 +++++- .../src/views/workFlow/publicPage/financialscheme.vue | 11 +++++++++++ .../views/workFlow/publicPage/financialschemeEdit.vue | 8 +++++++- .../views/workFlow/publicPage/financialschemeInfo.vue | 6 +++++- 6 files changed, 46 insertions(+), 4 deletions(-) diff --git a/anrui-riskcenter-ui/src/components/publicPage/financialscheme.vue b/anrui-riskcenter-ui/src/components/publicPage/financialscheme.vue index d6cc37a7ff..e7ca113c83 100644 --- a/anrui-riskcenter-ui/src/components/publicPage/financialscheme.vue +++ b/anrui-riskcenter-ui/src/components/publicPage/financialscheme.vue @@ -148,6 +148,14 @@ + + +
其它融金额
+ + + +
+
应收明细
@@ -325,6 +333,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -443,6 +452,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -797,6 +807,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', diff --git a/anrui-riskcenter-ui/src/components/publicPage/financialschemeEdit.vue b/anrui-riskcenter-ui/src/components/publicPage/financialschemeEdit.vue index eab0bde513..f1c2c271b5 100644 --- a/anrui-riskcenter-ui/src/components/publicPage/financialschemeEdit.vue +++ b/anrui-riskcenter-ui/src/components/publicPage/financialschemeEdit.vue @@ -116,10 +116,14 @@
月还金额
{{ formobj.otherPolicyMonthlyRepay }} - +
利息总额
{{ formobj.otherPolicyInterest }}
+ +
其它融贴息
+ {{ formobj.otherDiscount }} +
方案汇总
@@ -323,6 +327,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -410,6 +415,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', diff --git a/anrui-riskcenter-ui/src/components/publicPage/financialschemeInfo.vue b/anrui-riskcenter-ui/src/components/publicPage/financialschemeInfo.vue index 93e62bf0d0..09de535f57 100644 --- a/anrui-riskcenter-ui/src/components/publicPage/financialschemeInfo.vue +++ b/anrui-riskcenter-ui/src/components/publicPage/financialschemeInfo.vue @@ -112,10 +112,14 @@
月还金额
{{ formobj.otherPolicyMonthlyRepay }} - +
利息总额
{{ formobj.otherPolicyInterest }}
+ +
其它融贴息
+ {{ formobj.otherDiscount }} +
方案汇总
diff --git a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialscheme.vue b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialscheme.vue index 8500211ab2..8024d21804 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialscheme.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialscheme.vue @@ -148,6 +148,14 @@
+ + +
其它融贴息
+ + + +
+
应收明细
@@ -325,6 +333,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -445,6 +454,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -798,6 +808,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', diff --git a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeEdit.vue b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeEdit.vue index 0984371b7e..63e1b269bb 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeEdit.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeEdit.vue @@ -116,10 +116,14 @@
月还金额
{{ formobj.otherPolicyMonthlyRepay }} - +
利息总额
{{ formobj.otherPolicyInterest }}
+ +
其它融贴息
+ {{ formobj.otherDiscount }} +
方案汇总
@@ -323,6 +327,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', @@ -412,6 +417,7 @@ export default { operationAmount: '', otherAmount: '', otherAmountRemark: '', + otherDiscount: '', otherPolicyAmount: '', otherPolicyInterest: '', otherPolicyMonthlyRepay: '', diff --git a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeInfo.vue b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeInfo.vue index f13d1b0acf..5ce9e28169 100644 --- a/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeInfo.vue +++ b/anrui-riskcenter-ui/src/views/workFlow/publicPage/financialschemeInfo.vue @@ -112,10 +112,14 @@
月还金额
{{ formobj.otherPolicyMonthlyRepay }} - +
利息总额
{{ formobj.otherPolicyInterest }}
+ +
其它融贴息
+ {{ formobj.otherDiscount }} +
方案汇总