From dbee60e7b8af92eae5d252803f638c4bf63747da Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 18 Jul 2023 17:42:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=85=B6=E5=AE=83=E8=9E=8D?= =?UTF-8?q?=E4=BA=A7=E5=93=81=E6=8A=A5=E5=A4=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../otherfinancialproductsreport.js | 113 ++++++ .../otherfinancialproductsreport.vue | 339 ++++++++++++++++++ .../otherfinancialproductsreportAdd.vue | 283 +++++++++++++++ .../otherfinancialproductsreportInfo.vue | 142 ++++++++ ...nancialproductsreportByDivisionOperate.vue | 339 ++++++++++++++++++ .../otherfinancialproductsreportDaiBan.vue | 339 ++++++++++++++++++ .../otherfinancialproductsreportEdit.vue | 260 ++++++++++++++ .../otherfinancialproductsreportYiBan.vue | 210 +++++++++++ 8 files changed, 2025 insertions(+) create mode 100644 anrui-riskcenter-ui/src/api/otherfinancialproductsreport/otherfinancialproductsreport.js create mode 100644 anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreport.vue create mode 100644 anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportAdd.vue create mode 100644 anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue diff --git a/anrui-riskcenter-ui/src/api/otherfinancialproductsreport/otherfinancialproductsreport.js b/anrui-riskcenter-ui/src/api/otherfinancialproductsreport/otherfinancialproductsreport.js new file mode 100644 index 0000000000..272ec2cd07 --- /dev/null +++ b/anrui-riskcenter-ui/src/api/otherfinancialproductsreport/otherfinancialproductsreport.js @@ -0,0 +1,113 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + saveOrUpdate: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/saveOrUpdate', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + policyRecordInit: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/policyRecordInit', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + fetchBySid: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/fetchDetailsBySid/' + data, + method: 'get' + }) + }, + deleteBySids: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/deleteBySids', + method: 'DELETE', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 提交流程 + submit: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/submit', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(同意) + complete: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/complete', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(同意) + companyToDivisionOperate: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/companyToDivisionOperate', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(驳回) + reject: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/reject', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(终止) + breakProcess: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/breakProcess', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(撤回) + revokeProcess: function(params) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/revokeProcess', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 审批流程(同意)获取下一环节 + getNextNodesForSubmit: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/getNextNodesForSubmit', + method: 'get', + params: data + }) + }, + // 审批流程(驳回)获取上一环节 + getPreviousNodesForReject: function(data) { + return request({ + url: '/riskcenter/v1/loanfinotherpolicyrecordapply/getPreviousNodesForReject', + method: 'get', + params: data + }) + } +} diff --git a/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreport.vue b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreport.vue new file mode 100644 index 0000000000..ca718a48c6 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreport.vue @@ -0,0 +1,339 @@ + + + + diff --git a/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportAdd.vue b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportAdd.vue new file mode 100644 index 0000000000..5ed40a37d9 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportAdd.vue @@ -0,0 +1,283 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue new file mode 100644 index 0000000000..efcd18d588 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/otherfinancialproductsreport/otherfinancialproductsreportInfo.vue @@ -0,0 +1,142 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue new file mode 100644 index 0000000000..a7a9b119f3 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue @@ -0,0 +1,339 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue new file mode 100644 index 0000000000..ae52cda07f --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue @@ -0,0 +1,339 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue new file mode 100644 index 0000000000..75be1e4e8d --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue @@ -0,0 +1,260 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue new file mode 100644 index 0000000000..c1f608cfa8 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue @@ -0,0 +1,210 @@ + + + + +