diff --git a/src/views/GBC/customerDetail.vue b/src/views/GBC/customerDetail.vue index 6d500a467..25f942b87 100644 --- a/src/views/GBC/customerDetail.vue +++ b/src/views/GBC/customerDetail.vue @@ -9,16 +9,20 @@
- {{infoContent.contSize}}份 + {{infoContent.contSize}} + - {{infoContent.members.length}}人 + {{infoContent.members.length}} + - {{infoContent.totalAmt}} + {{infoContent.totalAmt}} + 万元 - {{infoContent.totalPrem}} + {{infoContent.totalPrem}} + 万元
@@ -131,22 +135,22 @@
-

投保人:

+

投保人:

{{item.appntName}}

被保险人:

-

{{item.insuredName}}

+

{{item.insuredName}}

-

保额(元):

-

{{item.amt}}

+

保额(元):

+

{{item.amt.toFixed(2)}}

保费(元):

-

{{item.prem}}

+

{{item.prem.toFixed(2)}}

-

交费期间:

+

交费期间:

{{item.paymentPeriod}}

保险期间:

-

{{item.insuredPeriod}}

+

{{item.insuredPeriod}}

保险生效日期:

@@ -230,6 +234,7 @@ export default { }, mounted(){ + this.infoContent.activeAppntId = this.$route.query.appntId this.getGBCappntDetail() }, methods: { @@ -237,14 +242,16 @@ export default { this.activeMembersIndex = thisIndex this.infoContent.appntName = thisData.name this.infoContent.age = thisData.age + this.infoContent.activeAppntId = thisData.appntId this.infoContent.gender = thisData.gender this.infoContent.mobile = thisData.mobile this.infoContent.departmentName = thisData.departmentName + this.getGBCappntDetail() }, getGBCappntDetail() { let params = { "projectCode": this.$route.query.projectCode, - "appntId": this.$route.query.appntId + "appntId": this.infoContent.activeAppntId } getGBCappntDetail(params).then(res => { if(res.result == 0) { @@ -257,7 +264,7 @@ export default { getGBCappntConnectSave(){ let params = { "projectCode": this.$route.query.projectCode, - "appntId": this.$route.query.projectCode, + "appntId": this.infoContent.activeAppntId, "connectContent": this.connectContent } getGBCappntConnectSave(params).then(res=>{ @@ -275,7 +282,7 @@ export default { this.infoContent.appntType = value.id let params = { "projectCode": this.$route.query.projectCode, - "appntId": this.$route.query.appntId, + "appntId": this.infoContent.activeAppntId, "appntType": this.infoContent.appntType } getGBCappntTypeSave(params).then(res=>{ diff --git a/src/views/GBC/projectDetail.vue b/src/views/GBC/projectDetail.vue index 038efde53..aacc87660 100644 --- a/src/views/GBC/projectDetail.vue +++ b/src/views/GBC/projectDetail.vue @@ -98,26 +98,69 @@

项目数据统计

数据截止日期:2024-03-30

-
- 小组 - 组长 - 获客人数 - 获客率 -
-
-
- 项目合并 - 890 - 89% -
-
-
-
- {{item.name}} - {{item.role}} - {{item.value1}} - {{item.value2}} -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
小组组长获客人数获客率筛客人数筛客率累计标保(元)承保人数承保件数(件)件均(元)面谈转化率受理承保率受理标保(元)受理件数重疾险件数重疾标保(元)重疾件均(元)
项目合并.00.00.00.00.00.00.00.00.00.00.00.00.00.00.00
{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}{{item.name}}
@@ -206,6 +249,7 @@ export default { }, mounted(){ + document.title = this.$route.query.projectName this.getGBCappntlist() this.getProductList() }, @@ -373,4 +417,23 @@ export default { /deep/ [data-v-3f765cce] .van-dropdown-item__content{ box-shadow: 0px 0px 5px 5px #f5f5f5; } + .theadClass{ + th{ + white-space: nowrap; + padding: 0px 10px; + font-size: 14px; + font-weight: 400; + line-height: 30px; + } + } + .tbodyClass{ + background: rgba(251, 235, 230, 0.44); + line-height: 30px; + margin-bottom: 1px; + font-size: 13px; + /*color: #fff;*/ + td{ + text-align: center; + } + } diff --git a/src/views/GBC/projectList.vue b/src/views/GBC/projectList.vue index 622a43b17..02abb8274 100644 --- a/src/views/GBC/projectList.vue +++ b/src/views/GBC/projectList.vue @@ -62,7 +62,8 @@ export default { this.$router.push({ path:'/GBC/projectDetail', query:{ - projectCode:data.projectCode + projectCode:data.projectCode, + projectName:data.projectName }, }) },