Merge branch 'feature/GFRS-1624【系统开发】-投保单详情、保单详情证件手机号脱敏-前端' into release/0807

This commit is contained in:
heweijie
2020-08-07 18:25:26 +08:00
4 changed files with 14 additions and 7 deletions

View File

@@ -7,7 +7,7 @@
<van-cell title="业务员姓名" :value="userInfo.name" /> <van-cell title="业务员姓名" :value="userInfo.name" />
<van-cell title="性别" :value="userInfo.sex === '1' ? '女' : '男'" /> <van-cell title="性别" :value="userInfo.sex === '1' ? '女' : '男'" />
<van-cell title="证件类型" :value="userInfo.cardType" /> <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.saleArea" />
<van-cell title="所属公司" :value="userInfo.company" /> <van-cell title="所属公司" :value="userInfo.company" />
</van-cell-group> </van-cell-group>

View File

@@ -16,7 +16,7 @@
<van-cell title="性别" :value="appntDTO.sex" /> <van-cell title="性别" :value="appntDTO.sex" />
<van-cell title="证件类型" :value="appntDTO.idType" /> <van-cell title="证件类型" :value="appntDTO.idType" />
<van-cell title="证件号码" :value="appntDTO.idNo" /> <van-cell title="证件号码" :value="appntDTO.idNo" />
<van-cell title="联系电话" :value="appntDTO.mobile" /> <van-cell title="联系电话" :value="appntDTO.mobileStar" />
</van-cell-group> </van-cell-group>
</van-collapse-item> </van-collapse-item>
@@ -128,7 +128,8 @@ export default {
getPolicyDetail() { getPolicyDetail() {
let that = this let that = this
let data = { let data = {
orderNo: window.localStorage.getItem('orderNo') orderNo: window.localStorage.getItem('orderNo'),
desensitizType: this.$route.query.type ? 0 : 1
// orderNo: '8186270000000806' // orderNo: '8186270000000806'
} }
getDetail(data).then(res => { getDetail(data).then(res => {

View File

@@ -214,7 +214,8 @@ export default {
pageNum: this.currentPage, pageNum: this.currentPage,
pageSize: this.pageSize, pageSize: this.pageSize,
orderType: this.active, orderType: this.active,
name: this.searchName name: this.searchName,
desensitizType: this.active === 'uncommit' ? 1 : 0
} }
this.getOrderList(pageInfo) this.getOrderList(pageInfo)
}, },
@@ -308,9 +309,14 @@ export default {
this.$jump({ this.$jump({
flag: 'h5', flag: 'h5',
extra: { extra: {
url: location.origin + '/#/sale/detail' url: location.origin + '/#/sale/detail?type=1'
}, },
routerInfo: { path: '/sale/detail' } routerInfo: {
path: '/sale/detail',
query: {
type: 1
}
}
}) })
}, },
//初始化保单列表 //初始化保单列表

View File

@@ -19,7 +19,7 @@
<van-cell title="性别" :value="appntDTO.sexText" /> <van-cell title="性别" :value="appntDTO.sexText" />
<van-cell title="证件类型" :value="appntDTO.idTypeText" /> <van-cell title="证件类型" :value="appntDTO.idTypeText" />
<van-cell title="证件号码" :value="appntDTO.idNo" /> <van-cell title="证件号码" :value="appntDTO.idNo" />
<van-cell title="联系电话" :value="appntDTO.mobile" /> <van-cell title="联系电话" :value="appntDTO.mobileStar" />
</van-cell-group> </van-cell-group>
</van-collapse-item> </van-collapse-item>