mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 09:16:43 +08:00
Merge branch 'feature/FCRS-1048投保流程优化需求' into dev-new
This commit is contained in:
@@ -1219,6 +1219,8 @@ export default {
|
||||
}).then(() => {
|
||||
this.isNoWXInsureReadClick(val)
|
||||
})
|
||||
} else {
|
||||
this.isNoWXInsureReadClick(val)
|
||||
}
|
||||
// 若被保险人为未成年人时,非微信环境点击【立即阅读签名】按钮进行弹窗提示 结束
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<!--文件导航 结束-->
|
||||
|
||||
<!-- 顶部提示 开始 -->
|
||||
<p v-if='branchType != "14"' class="xxx-notice-bar" ref="xxx2">文件滑动至底部完成阅读</p>
|
||||
<p v-if='branchType != "14" && !isPreview' class="xxx-notice-bar" ref="xxx2">文件滑动至底部完成阅读</p>
|
||||
<!-- 顶部提示 结束 -->
|
||||
|
||||
<!-- 一键置底 开始 -->
|
||||
@@ -22,14 +22,14 @@
|
||||
<!-- 一键置底 结束 -->
|
||||
|
||||
<!--文件内容 开始-->
|
||||
<div id="pdf" ref="scrollableContent" @scroll="updateScrollProgress">
|
||||
<div id="pdf" :class="[isPreview ? 'active' : '']" ref="scrollableContent" @scroll="updateScrollProgress">
|
||||
<div ref="xxx8" id="pdfH5ID"></div>
|
||||
<div ref="activeButtonEle"></div>
|
||||
</div>
|
||||
<!--文件内容 结束-->
|
||||
|
||||
<!--底部提示和按钮 开始-->
|
||||
<div class="xxx-bottom">
|
||||
<div class="xxx-bottom" v-if="!isPreview">
|
||||
<p class="xxx-isread" ref="xxx3">
|
||||
本人已阅读确认,理解并同意<span>{{documentName}}</span>各项内容
|
||||
</p>
|
||||
@@ -47,7 +47,7 @@
|
||||
</div>
|
||||
<!--底部提示和按钮 结束-->
|
||||
<!--关怀标准切换 开始-->
|
||||
<oldVersionSwitch @onFloatBtnClicked="onFloatBtnClicked" />
|
||||
<oldVersionSwitch v-if="!isPreview" @onFloatBtnClicked="onFloatBtnClicked" />
|
||||
<!--关怀标准切换 结束-->
|
||||
</div>
|
||||
</template>
|
||||
@@ -117,6 +117,7 @@
|
||||
})
|
||||
}, 100)
|
||||
window.appCallBack = this.appCallBack
|
||||
console.log(this.isPreview)
|
||||
},
|
||||
mounted() {
|
||||
document.body.style.backgroundColor = '#fff'
|
||||
@@ -674,6 +675,10 @@
|
||||
height: calc(100vh - 170px) !important;
|
||||
position: relative;
|
||||
top: 66px;
|
||||
&.active{
|
||||
height: 100vh !important;
|
||||
top: 0;
|
||||
}
|
||||
//
|
||||
}
|
||||
.xxx-bottom{
|
||||
@@ -711,6 +716,10 @@
|
||||
#pdf{
|
||||
height: calc(100vh - 240px) !important;
|
||||
top: 84px;
|
||||
&.active{
|
||||
height: 100vh;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
.xxx-isread{
|
||||
font-size: 18px;
|
||||
|
||||
Reference in New Issue
Block a user