diff --git a/anrui-riskcenter-ui/src/api/returntheaccount/returntheaccount.js b/anrui-riskcenter-ui/src/api/returntheaccount/returntheaccount.js new file mode 100644 index 0000000000..084fd8bbe0 --- /dev/null +++ b/anrui-riskcenter-ui/src/api/returntheaccount/returntheaccount.js @@ -0,0 +1,21 @@ +import request from '@/utils/request' + +export default { + // 查询分页列表 + listPage: function(params) { + return request({ + url: '/riskcenter/v1/LoanReturnVehLedger/listPage', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + update: function(data) { + return request({ + url: '/riskcenter/v1/LoanReturnVehLedger/update', + 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 6a654f7f66..5881a07e3c 100644 --- a/anrui-riskcenter-ui/src/router/index.js +++ b/anrui-riskcenter-ui/src/router/index.js @@ -599,6 +599,22 @@ export const constantRoutes = [ } ] }, + { + path: '/returntheaccount', + component: Layout, + redirect: '/returntheaccount', + meta: { + title: '交回车辆台账' + }, + children: [ + { + path: '/returntheaccount/returntheaccount', + component: () => import('@/views/returntheaccount/returntheaccount.vue'), + name: 'ReturnTheAccount', + meta: { title: '交回车辆台账', noCache: true } + } + ] + }, { path: '/surrenderforredemption', component: Layout, diff --git a/anrui-riskcenter-ui/src/views/returntheaccount/returntheaccount.vue b/anrui-riskcenter-ui/src/views/returntheaccount/returntheaccount.vue new file mode 100644 index 0000000000..138b0f334b --- /dev/null +++ b/anrui-riskcenter-ui/src/views/returntheaccount/returntheaccount.vue @@ -0,0 +1,404 @@ + + + + +