diff --git a/src/api/ebiz/preserve/preserve.js b/src/api/ebiz/preserve/preserve.js index d8e450daa..2ed62741f 100644 --- a/src/api/ebiz/preserve/preserve.js +++ b/src/api/ebiz/preserve/preserve.js @@ -8,6 +8,14 @@ export function edorChange(data) { data }) } +//搜索客户 +export function customerList(data) { + return request({ + url: getUrl('/edor/customer/customerList', 1), + method: 'post', + data + }) +} export function edorSignSave(data) { return request({ @@ -15,4 +23,13 @@ export function edorSignSave(data) { method: 'post', data }) -} \ No newline at end of file +} + +//客户详情 +export function customerInfo(data) { + return request({ + url: getUrl('/edor/customer/customerInfo', 1), + method: 'post', + data + }) +} diff --git a/src/router/ebiz/preserve.js b/src/router/ebiz/preserve.js index 35babc828..2a5a9b295 100644 --- a/src/router/ebiz/preserve.js +++ b/src/router/ebiz/preserve.js @@ -13,6 +13,7 @@ const beneficiaryInfo = () => import('@/views/ebiz/preserve/BeneficiaryInfo') const beneficiaryConfirmation = () => import('@/views/ebiz/preserve/BeneficiaryConfirmation') const surrenderInfo = () => import('@/views/ebiz/preserve/SurrenderInfo') const surrenderConfirmation = () => import('@/views/ebiz/preserve/SurrenderConfirmation') +const autopayAuthorization = () => import('@/views/ebiz/preserve/AutopayAuthorization') export default [ { @@ -132,6 +133,15 @@ export default [ index: 12 } }, + { + path: '/preserve/autopayAuthorization', + name: 'autopayAuthorization', + component: autopayAuthorization, + meta: { + title: '签署自动转账授权书', + index: 12 + } + }, { path: '/preserve/submitResult', name: 'submitResult', diff --git a/src/views/ebiz/preserve/AutopayAuthorization.vue b/src/views/ebiz/preserve/AutopayAuthorization.vue new file mode 100644 index 000000000..f95338a4f --- /dev/null +++ b/src/views/ebiz/preserve/AutopayAuthorization.vue @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/src/views/ebiz/preserve/Search.vue b/src/views/ebiz/preserve/Search.vue index d9c4e5ae2..8352a4477 100644 --- a/src/views/ebiz/preserve/Search.vue +++ b/src/views/ebiz/preserve/Search.vue @@ -1,3 +1,205 @@ + + + +