mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 02:16:44 +08:00
- 移除 CalculatePremium 组件容器的 pb100 类 - 修改红色指示条宽度从10px 到 5px - 为保费试算弹窗添加最大高度限制 (max-height:90vh)
30 lines
634 B
Vue
30 lines
634 B
Vue
<script>
|
|
export default {
|
|
name: 'DestroyablePopup',
|
|
data() {
|
|
return {
|
|
isPopupOpen: this.show, isDestroyPopup: false
|
|
}
|
|
},
|
|
watch: {
|
|
isPopupOpen(val) {
|
|
this.isPopupOpen = val
|
|
this.$emit('update:show', val)
|
|
},
|
|
show() {
|
|
if (this.show) this.isDestroyPopup = false
|
|
this.$nextTick(() => this.isPopupOpen = this.show)
|
|
}
|
|
},
|
|
props: ['show']
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="!isDestroyPopup" style="max-height: 90vh">
|
|
<van-popup v-model="isPopupOpen" round position="bottom" @closed="()=>{isDestroyPopup = true}">
|
|
<slot></slot>
|
|
</van-popup>
|
|
</div>
|
|
</template>
|