Merge branch 'dev' of 112.124.100.131:GFRS/ebiz-h5 into dev

This commit is contained in:
邓晓坤
2019-10-12 10:02:37 +08:00
3 changed files with 9 additions and 15 deletions

View File

@@ -479,7 +479,7 @@ export default {
break break
} }
if (this.isWeixin) { if (this.isWeixin) {
this.toAirSign('1', '签收日期', '-150') this.toAirSign('1', '投保人签字', '-150')
} else { } else {
EWebBridge.webCallAppInJs('ca_sign', { EWebBridge.webCallAppInJs('ca_sign', {
//身份证号码 //身份证号码
@@ -487,11 +487,11 @@ export default {
//姓名 //姓名
name: that.saleInsuredInfo.name, name: that.saleInsuredInfo.name,
type: that.saleInsuredInfo.idType, type: that.saleInsuredInfo.idType,
keyword: '签收日期', keyword: '投保人签字',
pageNo: '1', pageNo: '1',
index: '1', index: '1',
offset: '-150', offset: '20',
pos: '3' pos: '3' //设置偏移量 3表示右侧
}).then(data => { }).then(data => {
console.log(`--签名返回val:${val},this.detailJump:${this.detailJump},this.relationToAppnt:${this.relationToAppnt}`, JSON.stringify(data)) console.log(`--签名返回val:${val},this.detailJump:${this.detailJump},this.relationToAppnt:${this.relationToAppnt}`, JSON.stringify(data))
this.$toast.clear() this.$toast.clear()

View File

@@ -35,7 +35,7 @@
<van-cell title="联系电话" :value="item.mobile" /> <van-cell title="联系电话" :value="item.mobile" />
</van-cell-group> </van-cell-group>
</van-collapse-item> </van-collapse-item>
<div v-for="(itm, i) in item.bnfDTOs" :key="itm.name" class="pb10"> <div v-for="(itm, i) in item.bnfDTOs" :key="i" class="pb10">
<!-- 受益人信息 --> <!-- 受益人信息 -->
<van-collapse-item title="受益人信息" :name="i + 81"> <van-collapse-item title="受益人信息" :name="i + 81">
<van-cell-group> <van-cell-group>

View File

@@ -109,19 +109,13 @@ export default {
methods: { methods: {
// 获取保单列表 // 获取保单列表
getpolicyListAgent() { getpolicyListAgent() {
let that = this
let data = {} let data = {}
getpolicyListAgent(data).then(res => { getpolicyListAgent(data).then(res => {
// console.log(res) //orderStatus 1 承保 0 核保 4终止
if (res.result == '0') { if (res.result == '0') {
res.policyListDTOList.map(item => { //过滤掉 核保状态的数据 只展示承保和终止的保单
if (item.orderStatus == '1') { this.policyListDTOList = res.policyListDTOList.filter(item => item.orderStatus != '0')
item.orderStatus = '有效' console.log(this.policyListDTOList)
} else {
item.orderStatus = '无效'
}
})
that.policyListDTOList = res.policyListDTOList
} else { } else {
this.isShow = true this.isShow = true
} }