diff --git a/src/components/ebiz/billingDetail/tableDetail.vue b/src/components/ebiz/billingDetail/tableDetail.vue new file mode 100644 index 000000000..46600d71e --- /dev/null +++ b/src/components/ebiz/billingDetail/tableDetail.vue @@ -0,0 +1,101 @@ + + + + + + {{item}} + + + + + {{item.convokeOrgCn}} + {{item.splan}} + {{item.estimatePeople}} + {{item.estimatePremium}} + {{item.rplan}} + {{item.realityPeople}} + {{item.estimateGetPremium}} + + + + + + + + + \ No newline at end of file diff --git a/src/router/ebiz/billingDetail.js b/src/router/ebiz/billingDetail.js new file mode 100644 index 000000000..fd4d9b255 --- /dev/null +++ b/src/router/ebiz/billingDetail.js @@ -0,0 +1,14 @@ +const billingDetail = () => import('@/views/ebiz/billingDetail/billingDetail') + + +export default [ + { + path: '/billingDetail', + name: 'billingDetail', + component: billingDetail, + meta: { + title: '出单详情', + index: 1 + } + } + ] \ No newline at end of file diff --git a/src/router/ebiz/index.js b/src/router/ebiz/index.js index 673fc44bd..599dc34bf 100644 --- a/src/router/ebiz/index.js +++ b/src/router/ebiz/index.js @@ -35,6 +35,9 @@ import insureAgain from './insureAgain' // 产说会 import productionSay from './productionSay' +// 出单详情 +import billingDetail from './billingDetail' + export default [ ...proposal, ...sale, @@ -66,4 +69,5 @@ export default [ ...eqiVisit, ...insureAgain, ...productionSay, + ...billingDetail ] //根据需要进行删减 diff --git a/src/views/ebiz/billingDetail/billingDetail.vue b/src/views/ebiz/billingDetail/billingDetail.vue new file mode 100644 index 000000000..2efb673c9 --- /dev/null +++ b/src/views/ebiz/billingDetail/billingDetail.vue @@ -0,0 +1,224 @@ + + + + 机构名称: + + {{ OrgLv2Name }} + + + + + {{ OrgLv4Name }} + + + + {{ OrgLv3Name }} + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file