mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 15:46:43 +08:00
Merge branch 'feature/GFRS-1624【系统开发】-投保单详情、保单详情证件手机号脱敏-前端' into release/0807
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
<van-cell title="业务员姓名" :value="userInfo.name" />
|
||||
<van-cell title="性别" :value="userInfo.sex === '1' ? '女' : '男'" />
|
||||
<van-cell title="证件类型" :value="userInfo.cardType" />
|
||||
<van-cell title="证件号码" :value="userInfo.cardNo" />
|
||||
<van-cell title="证件号码" :value="userInfo.cardNoStart" />
|
||||
<van-cell title="营销服务部" :value="userInfo.saleArea" />
|
||||
<van-cell title="所属公司" :value="userInfo.company" />
|
||||
</van-cell-group>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<van-cell title="性别" :value="appntDTO.sex" />
|
||||
<van-cell title="证件类型" :value="appntDTO.idType" />
|
||||
<van-cell title="证件号码" :value="appntDTO.idNo" />
|
||||
<van-cell title="联系电话" :value="appntDTO.mobile" />
|
||||
<van-cell title="联系电话" :value="appntDTO.mobileStar" />
|
||||
</van-cell-group>
|
||||
</van-collapse-item>
|
||||
|
||||
@@ -128,7 +128,8 @@ export default {
|
||||
getPolicyDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
desensitizType: this.$route.query.type ? 0 : 1
|
||||
// orderNo: '8186270000000806'
|
||||
}
|
||||
getDetail(data).then(res => {
|
||||
|
||||
@@ -214,7 +214,8 @@ export default {
|
||||
pageNum: this.currentPage,
|
||||
pageSize: this.pageSize,
|
||||
orderType: this.active,
|
||||
name: this.searchName
|
||||
name: this.searchName,
|
||||
desensitizType: this.active === 'uncommit' ? 1 : 0
|
||||
}
|
||||
this.getOrderList(pageInfo)
|
||||
},
|
||||
@@ -308,9 +309,14 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/detail'
|
||||
url: location.origin + '/#/sale/detail?type=1'
|
||||
},
|
||||
routerInfo: { path: '/sale/detail' }
|
||||
routerInfo: {
|
||||
path: '/sale/detail',
|
||||
query: {
|
||||
type: 1
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
//初始化保单列表
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
<van-cell title="性别" :value="appntDTO.sexText" />
|
||||
<van-cell title="证件类型" :value="appntDTO.idTypeText" />
|
||||
<van-cell title="证件号码" :value="appntDTO.idNo" />
|
||||
<van-cell title="联系电话" :value="appntDTO.mobile" />
|
||||
<van-cell title="联系电话" :value="appntDTO.mobileStar" />
|
||||
</van-cell-group>
|
||||
</van-collapse-item>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user