mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 04:36:44 +08:00
GFRS-454【0326】 建议书优化2.0 --页面调整1、条款显示,2、颜色调整 --提交人:阳华祥
This commit is contained in:
@@ -4,7 +4,6 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { makePdf } from '@/api/ebiz/proposal/proposal.js'
|
||||
import { Toast } from 'vant'
|
||||
import config from '@/config'
|
||||
import dataDictionary from '@/assets/js/utils/data-dictionary' //使用数据字典中的险种类型
|
||||
@@ -27,7 +26,7 @@ export default {
|
||||
mounted() {},
|
||||
methods: {
|
||||
async init() {
|
||||
let pdfUrl = location.showCaluePDFUrl
|
||||
let pdfUrl = localStorage.showCaluePDFUrl
|
||||
this.pdfUrl = location.origin + '/pdfjs/web/viewer.html?file=' + pdfUrl
|
||||
},
|
||||
// 分享按钮
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
<div class="line_gray"></div>
|
||||
<div class="text-center">
|
||||
<label class="fs14 color_3A81F6 fw600 lh24">投保人</label><br />
|
||||
<label class="fs13 color_666666 lh20">{{ pageShowInfo.appntDTO.sex == '1' ? '男' : '女' }} {{ pageShowInfo.appntDTO.age }}周岁</label>
|
||||
<label class="fs13 color_666666 lh20">{{ pageShowInfo.appntDTO.sex == '0' ? '男' : '女' }} {{ pageShowInfo.appntDTO.age }}周岁</label>
|
||||
</div>
|
||||
<div class="line_gray"></div>
|
||||
<div class="text-center">
|
||||
@@ -57,7 +57,7 @@
|
||||
<div class="flex justify-content-c align-items-c pl7 pr7 pt7 pb7 table_border">首年保费(元)</div>
|
||||
</div>
|
||||
<div
|
||||
class="risk_body flex text-center bg-green-base c-gray-darker table bg_F5FBFF"
|
||||
class="risk_body flex text-center bg-green-base c-gray-darker table bg_f7fbff"
|
||||
v-for="(riskItem, index) in pageShowInfo.showInsuredDTO.riskDTOLst"
|
||||
:key="index"
|
||||
>
|
||||
@@ -149,9 +149,15 @@
|
||||
<div class="fs16 color_3A81F6 lh24 fw600">产品总利益演示</div>
|
||||
<div class="line_C8DBFB"></div>
|
||||
<div class="mt15 ml15 mr15">
|
||||
<div class="flex justify-content-s align-items-c fs14 lh_30" v-for="(moneyItem, index) in pageShowInfo.showInsuredDTO.demoLabel" :key="index">
|
||||
<span>{{ moneyItem.contentLabel }}</span>
|
||||
<div>
|
||||
<div
|
||||
class="flex justify-content-s align-items-c fs14 div_last"
|
||||
v-for="(moneyItem, index) in pageShowInfo.showInsuredDTO.demoLabel"
|
||||
:key="index"
|
||||
>
|
||||
<div class="text-left" style="width: 75%;">
|
||||
<span>{{ moneyItem.contentLabel }}</span>
|
||||
</div>
|
||||
<div class="text-right">
|
||||
<span class="color_3A81F6">{{ moneyItem.value }}</span
|
||||
>{{ moneyItem.content | productRateUnit }}
|
||||
</div>
|
||||
@@ -446,12 +452,7 @@ export default {
|
||||
extra: {
|
||||
title: this.wxTitle,
|
||||
content: '国富为您量身定制的保险产品,请查收',
|
||||
url:
|
||||
location.origin +
|
||||
'/#/proposal/proposalInfo?proposalNo=' +
|
||||
encodeURI(localStorage.orderNo) +
|
||||
'&token=' +
|
||||
encodeURI(localStorage.token),
|
||||
url: location.origin + '/#/proposal/proposalInfo?proposalNo=' + encodeURI(localStorage.orderNo) + '&token=' + encodeURI(localStorage.token),
|
||||
// url: 'http://47.96.143.111/#/proposal/proposalInfo?proposalNo=' + localStorage.orderNo + '&token=' + localStorage.token,
|
||||
img: this.$assetsUrl + 'images/logo.png'
|
||||
}
|
||||
@@ -464,12 +465,7 @@ export default {
|
||||
extra: {
|
||||
title: this.wxTitle,
|
||||
content: '国富为您量身定制的保险产品,请查收',
|
||||
url:
|
||||
location.origin +
|
||||
'/#/proposal/proposalInfo?proposalNo=' +
|
||||
encodeURI(localStorage.orderNo) +
|
||||
'&token=' +
|
||||
encodeURI(localStorage.token),
|
||||
url: location.origin + '/#/proposal/proposalInfo?proposalNo=' + encodeURI(localStorage.orderNo) + '&token=' + encodeURI(localStorage.token),
|
||||
// url: 'http://47.96.143.111/#/proposal/proposalInfo?proposalNo=' + localStorage.orderNo + '&token=' + localStorage.token,
|
||||
img: this.$assetsUrl + 'images/logo.png'
|
||||
}
|
||||
@@ -660,7 +656,7 @@ export default {
|
||||
},
|
||||
// 条款PDF
|
||||
async goCaluePDF(riskItem) {
|
||||
location.showCaluePDFUrl = riskItem.url
|
||||
localStorage.showCaluePDFUrl = riskItem.url
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
@@ -1096,7 +1092,7 @@ export default {
|
||||
width: 67px;
|
||||
height: 105px;
|
||||
}
|
||||
.bg_F5FBFF {
|
||||
.bg_f7fbff {
|
||||
background-color: #f5fbff;
|
||||
}
|
||||
.bg_DBEFFE {
|
||||
@@ -1157,4 +1153,7 @@ export default {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
}
|
||||
.div_last{
|
||||
line-height: 20px;margin: 5px 0px;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user