You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
477 B
34 lines
477 B
2 months ago
|
<template>
|
||
|
<view class="view">
|
||
|
<slot></slot>
|
||
|
<view class="safe" v-if="isFit"></view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'cs-bottom-wrapper',
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {
|
||
|
isFit() {
|
||
|
return uni.getStorageSync('SYSTEM').includes('iOS')
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.view {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
background-color: #fff;
|
||
|
.safe {
|
||
|
height: 25px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|