From fa85aa0ef8f274944044ccaf5d6e13d5f2d3a444 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Thu, 22 Feb 2024 11:06:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E6=A1=88=E4=BB=B6=E8=AF=89?= =?UTF-8?q?=E8=AE=BC=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/caseaction/caseaction.js | 122 +++++ anrui-riskcenter-ui/src/router/index.js | 37 ++ .../src/views/caseaction/caseaction.vue | 371 +++++++++++++++ .../src/views/caseaction/caseactionAdd.vue | 279 +++++++++++ .../src/views/caseaction/caseactionInfo.vue | 187 ++++++++ .../caseaction/relation/selectContract.vue | 148 ++++++ .../workFlow/susongFlow/caseactionDaiBan.vue | 444 ++++++++++++++++++ .../workFlow/susongFlow/caseactionEdit.vue | 271 +++++++++++ .../workFlow/susongFlow/caseactionYiBan.vue | 230 +++++++++ .../susongFlow/relation/selectContract.vue | 148 ++++++ 10 files changed, 2237 insertions(+) create mode 100644 anrui-riskcenter-ui/src/api/caseaction/caseaction.js create mode 100644 anrui-riskcenter-ui/src/views/caseaction/caseaction.vue create mode 100644 anrui-riskcenter-ui/src/views/caseaction/caseactionAdd.vue create mode 100644 anrui-riskcenter-ui/src/views/caseaction/caseactionInfo.vue create mode 100644 anrui-riskcenter-ui/src/views/caseaction/relation/selectContract.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionDaiBan.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionEdit.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionYiBan.vue create mode 100644 anrui-riskcenter-ui/src/views/workFlow/susongFlow/relation/selectContract.vue diff --git a/anrui-riskcenter-ui/src/api/caseaction/caseaction.js b/anrui-riskcenter-ui/src/api/caseaction/caseaction.js new file mode 100644 index 0000000000..e774390dff --- /dev/null +++ b/anrui-riskcenter-ui/src/api/caseaction/caseaction.js @@ -0,0 +1,122 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + getListPage: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/loanContractListPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + saveOrUpdate: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/saveLawsuit', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + init: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/lawsuitInit', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + fetchBySid: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/details', + method: 'get', + params: data + }) + }, + deleteBySids: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/deleteBySids', + method: 'DELETE', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 提交流程 + submit: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/submit', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(同意) + complete: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/complete', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(加签) + delegate: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/delegate', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(驳回) + reject: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/reject', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(终止) + breakProcess: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/breakProcess', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 流程审批(撤回) + revokeProcess: function(params) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/revokeProcess', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 审批流程(同意)获取下一环节 + getNextNodesForSubmit: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/getNextNodesForSubmit', + method: 'get', + params: data + }) + }, + // 审批流程(驳回)获取上一环节 + getPreviousNodesForReject: function(data) { + return request({ + url: '/riskcenter/v1/LoanLawsuitApply/getPreviousNodesForReject', + method: 'get', + params: data + }) + } +} diff --git a/anrui-riskcenter-ui/src/router/index.js b/anrui-riskcenter-ui/src/router/index.js index 5db5ff81da..8652f2cc4b 100644 --- a/anrui-riskcenter-ui/src/router/index.js +++ b/anrui-riskcenter-ui/src/router/index.js @@ -743,6 +743,22 @@ export const constantRoutes = [ } ] }, + { + path: '/caseaction', + component: Layout, + redirect: '/caseaction', + meta: { + title: '案件诉讼管理' + }, + children: [ + { + path: '/caseaction/caseaction', + component: () => import('@/views/caseaction/caseaction.vue'), + name: 'CaseAction', + meta: { title: '案件诉讼管理', noCache: true } + } + ] + }, // 流程审批 // 金融产品政策报备--编辑 @@ -1251,6 +1267,27 @@ export const constantRoutes = [ component: () => import('@/views/workFlow/huigouFlow/buybackYiBan.vue'), name: 'BuyBackYiBan' + }, + // 案件诉讼管理--编辑 + { + path: '/susongFlow/caseactionEdit', + component: () => + import('@/views/workFlow/susongFlow/caseactionEdit.vue'), + name: 'CaseActionEdit' + }, + // 案件诉讼管理--待办 + { + path: '/susongFlow/caseactionDaiBan', + component: () => + import('@/views/workFlow/susongFlow/caseactionDaiBan.vue'), + name: 'CaseActionDaiBan' + }, + // 案件诉讼管理--已办 + { + path: '/susongFlow/caseactionYiBan', + component: () => + import('@/views/workFlow/susongFlow/caseactionYiBan.vue'), + name: 'CaseActionYiBan' }, // 404 page must be placed at the end !!! // { path: '*', redirect: '/404', hidden: true } diff --git a/anrui-riskcenter-ui/src/views/caseaction/caseaction.vue b/anrui-riskcenter-ui/src/views/caseaction/caseaction.vue new file mode 100644 index 0000000000..4af7a846df --- /dev/null +++ b/anrui-riskcenter-ui/src/views/caseaction/caseaction.vue @@ -0,0 +1,371 @@ + + + + diff --git a/anrui-riskcenter-ui/src/views/caseaction/caseactionAdd.vue b/anrui-riskcenter-ui/src/views/caseaction/caseactionAdd.vue new file mode 100644 index 0000000000..e4da597e5c --- /dev/null +++ b/anrui-riskcenter-ui/src/views/caseaction/caseactionAdd.vue @@ -0,0 +1,279 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/caseaction/caseactionInfo.vue b/anrui-riskcenter-ui/src/views/caseaction/caseactionInfo.vue new file mode 100644 index 0000000000..9c28db50dc --- /dev/null +++ b/anrui-riskcenter-ui/src/views/caseaction/caseactionInfo.vue @@ -0,0 +1,187 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/caseaction/relation/selectContract.vue b/anrui-riskcenter-ui/src/views/caseaction/relation/selectContract.vue new file mode 100644 index 0000000000..683593a7a3 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/caseaction/relation/selectContract.vue @@ -0,0 +1,148 @@ + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionDaiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionDaiBan.vue new file mode 100644 index 0000000000..54a2df5b33 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionDaiBan.vue @@ -0,0 +1,444 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionEdit.vue b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionEdit.vue new file mode 100644 index 0000000000..63d8931cd4 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionEdit.vue @@ -0,0 +1,271 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionYiBan.vue b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionYiBan.vue new file mode 100644 index 0000000000..5cb9289034 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/caseactionYiBan.vue @@ -0,0 +1,230 @@ + + + + + diff --git a/anrui-riskcenter-ui/src/views/workFlow/susongFlow/relation/selectContract.vue b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/relation/selectContract.vue new file mode 100644 index 0000000000..0147bbc8d8 --- /dev/null +++ b/anrui-riskcenter-ui/src/views/workFlow/susongFlow/relation/selectContract.vue @@ -0,0 +1,148 @@ + + + +