diff --git a/src/api/GBC/GBC.js b/src/api/GBC/GBC.js index d0ffadc0e..d8f49760e 100644 --- a/src/api/GBC/GBC.js +++ b/src/api/GBC/GBC.js @@ -88,4 +88,22 @@ export function getGBCappntConnectSave(data) { method: 'post', data }) +} + +// 获取GBC一级产品 +export function getGBCRiskList(data) { + return request({ + url: getUrl('/sale/product/getGBCRiskList ', 1), + method: 'post', + data + }) +} + +// GBC一级产品校验 +export function gbcAppntCheckProdect(data) { + return request({ + url: getUrl('/sale/gbc/appnt/checkProdect ', 1), + method: 'post', + data + }) } \ No newline at end of file diff --git a/src/assets/images/GBC/submitResult.png b/src/assets/images/GBC/submitResult.png new file mode 100644 index 000000000..10377406a Binary files /dev/null and b/src/assets/images/GBC/submitResult.png differ diff --git a/src/router/GBC/index.js b/src/router/GBC/index.js index 63214df73..0e001428e 100644 --- a/src/router/GBC/index.js +++ b/src/router/GBC/index.js @@ -4,6 +4,7 @@ const GBC_projectList = () => import('@/views/GBC/projectList') const GBC_projectDetail = () => import('@/views/GBC/projectDetail') const GBC_customerDetail = () => import('@/views/GBC/customerDetail') const GBC_InsuredInfo = () => import('@/views/GBC/InsuredInfo') +const GBC_submitResult = () => import('@/views/GBC/submitResult') export default [ { @@ -51,4 +52,13 @@ export default [ index: 1 } }, + { + path: '/GBC/submitResult', + name: 'GBC_submitResult', + component: GBC_submitResult, + meta: { + title: '提交结果', + index: 1 + } + }, ] diff --git a/src/views/GBC/InsuredInfo.vue b/src/views/GBC/InsuredInfo.vue index deff30d82..6f06cbb6e 100644 --- a/src/views/GBC/InsuredInfo.vue +++ b/src/views/GBC/InsuredInfo.vue @@ -1,7 +1,7 @@