diff --git a/anrui-riskcenter-ui/src/api/Common/dictcommons.js b/anrui-riskcenter-ui/src/api/Common/dictcommons.js index d97882485e..210e52f890 100644 --- a/anrui-riskcenter-ui/src/api/Common/dictcommons.js +++ b/anrui-riskcenter-ui/src/api/Common/dictcommons.js @@ -42,3 +42,31 @@ export function selectListByOrgPath(data) { params: data }) } + +// 根据当前登录用户的分公司sid获取本分公司下的车型信息 +export function selModelByUseOrgSid(data) { + return request({ + url: '/base/basevehmodelconfig/selModelByUseOrgSid', + method: 'post', + params: data + }) +} + +// 根据当前登录用户的全路径sidPath、用户sid、客户类型(01个人、02企业)等获取客户信息 +export function selectCustomerList(data) { + return request({ + url: '/crm/v1/crmcustomertemp/selectCustomerList', + method: 'get', + params: data + }) +} + +// 当前用户创建申请时判断该用户是否有该菜单的操作权限 +export function selectHaveMessage(data) { + return request({ + url: '/portal/v1/sysuser/selectHaveMessage ', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) +} diff --git a/anrui-riskcenter-ui/src/router/index.js b/anrui-riskcenter-ui/src/router/index.js index 63a8f6c3f4..ffb4c7a714 100644 --- a/anrui-riskcenter-ui/src/router/index.js +++ b/anrui-riskcenter-ui/src/router/index.js @@ -91,6 +91,54 @@ export const constantRoutes = [ } ] }, + { + path: '/otherfinancialproductsreport', + component: Layout, + redirect: '/otherfinancialproductsreport', + meta: { + title: '其它融产品报备' + }, + children: [ + { + path: '/otherfinancialproductsreport/otherfinancialproductsreport', + component: () => import('@/views/otherfinancialproductsreport/otherfinancialproductsreport.vue'), + name: 'OtherFinancialProductsReport', + meta: { title: '其它融产品报备', noCache: true } + } + ] + }, + { + path: '/creditauditmanagement', + component: Layout, + redirect: '/creditauditmanagement', + meta: { + title: '贷前信用审核管理' + }, + children: [ + { + path: '/creditauditmanagement/creditauditmanagement', + component: () => import('@/views/creditauditmanagement/creditauditmanagement.vue'), + name: 'CreditAuditManagement', + meta: { title: '贷前信用审核管理', noCache: true } + } + ] + }, + { + path: '/financialclerkbycreditvetting', + component: Layout, + redirect: '/financialclerkbycreditvetting', + meta: { + title: '金融内勤信用审核管理' + }, + children: [ + { + path: '/financialclerkbycreditvetting/financialclerkbycreditvetting', + component: () => import('@/views/financialclerkbycreditvetting/financialclerkbycreditvetting.vue'), + name: 'FinancialClerkByCreditVetting', + meta: { title: '金融内勤信用审核管理', noCache: true } + } + ] + }, // 流程审批 // 金融产品政策报备--编辑 @@ -120,6 +168,36 @@ export const constantRoutes = [ component: () => import('@/views/workFlow/jinrongzhengceFlow/financialpolicyreportingYiBanInfo.vue'), name: 'FinancialPolicyReportingYiBanInfo' + }, + + // 流程审批 + // 其它融产品报备--编辑 + { + path: '/qitarongchanpinFlow/otherfinancialproductsreportEdit', + component: () => + import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportEdit.vue'), + name: 'OtherFinancialProductsReportEdit' + }, + // 其它融产品报备--待办 + { + path: '/qitarongchanpinFlow/otherfinancialproductsreportDaiBan', + component: () => + import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportDaiBan.vue'), + name: 'OtherFinancialProductsReportDaiBan' + }, + // 其它融产品报备--待办--总经理跳转风控中心 + { + path: '/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate', + component: () => + import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportByDivisionOperate.vue'), + name: 'OtherFinancialProductsReportByDivisionOperate' + }, + // 其它融产品报备--已办 + { + path: '/qitarongchanpinFlow/otherfinancialproductsreportYiBan', + component: () => + import('@/views/workFlow/qitarongchanpinFlow/otherfinancialproductsreportYiBan.vue'), + name: 'OtherFinancialProductsReportYiBan' } // 404 page must be placed at the end !!! // { path: '*', redirect: '/404', hidden: true }