26 lines
447 B
Vue
26 lines
447 B
Vue
<template>
|
|
<view>
|
|
<view class="tabbar-shadow"> </view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "tabbar-shadow",
|
|
data() {
|
|
return {};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tabbar-shadow {
|
|
position: fixed;
|
|
bottom: -14px;
|
|
z-index: 3333;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 12px;
|
|
background-color: #fff;
|
|
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2); // 根据需求自定义阴影颜色大小
|
|
}
|
|
</style> |