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

This commit is contained in:
邓晓坤
2019-10-17 09:36:06 +08:00
3 changed files with 9 additions and 9 deletions

View File

@@ -43,8 +43,8 @@
<div v-if="itm.bnfType == '1'">
<van-cell title="姓名" :value="itm.name" />
<van-cell title="性别" :value="itm.sexText" />
<van-cell title="是被保人的" :value="itm.relationText" />
<van-cell title="受益比例" :value="`${itm.bnfLot}%`" v-if="itm.bnfLot != null" />
<!-- <van-cell title="是被保人的" :value="itm.relationText" /> -->
<van-cell title="受益比例" :value="`${itm.bnfLot * 100}%`" v-if="itm.bnfLot != null" />
<van-cell title="证件类型" :value="itm.idTypeText" />
<van-cell title="证件号码" :value="itm.idNo" />
</div>

View File

@@ -82,9 +82,8 @@ export default {
}
},
created() {
let that = this
// 获取表单列表
that.getpolicyListAgent()
this.getpolicyListAgent()
},
mounted() {
if (this.isShow == true) {
@@ -116,7 +115,8 @@ export default {
//orderStatus 1 承保 0 核保 4终止
if (res.result == '0') {
//过滤掉 核保状态的数据 只展示承保和终止的保单
this.policyListDTOList = res.policyListDTOList.filter(item => item.orderStatus != '0')
this.policyListDTOList = res.policyListDTOList
// this.policyListDTOList = res.policyListDTOList.filter(item => item.orderStatus != '0')
console.log(this.policyListDTOList)
} else {
this.isShow = true

View File

@@ -40,11 +40,11 @@
<van-col span="12" class="text-right fwb" style="color: red">{{ `${item.amount}.00` }}</van-col>
</van-row>
<div class="pt15" style="border-top:1px solid #dadada">
<div>
<div class="flex justify-content-s">
<div class="w120 inline-b">
<van-tag plain color="#999999">保单生效日期</van-tag>
</div>
<span class="fs14 c-gray-dark">{{ item.effectDate }}</span>
<span class="fs14 c-gray-dark">{{ item.cvaliDate }}</span>
</div>
</div>
<div class="mt10 flex justify-content-fe">
@@ -95,11 +95,11 @@
<van-col span="12" class="text-right fwb" style="color: red">{{ `${item.amount}.00` }}</van-col>
</van-row>
<div class="pt15" style="border-top:1px solid #dadada">
<div>
<div class="flex justify-content-s">
<div class="w120 inline-b">
<van-tag plain color="#999999">保单生效日期</van-tag>
</div>
<span class="fs14 c-gray-dark">{{ item.effectDate }}</span>
<span class="fs14 c-gray-dark">{{ item.cvaliDate }}</span>
</div>
</div>