integrated_traffic_uniapp/components/mask.vue

24 lines
280 B
Vue
Raw Normal View History

2024-01-16 17:24:49 +08:00
<template>
<view>
<view class="cpt-mask">
</view>
</view>
</template>
<script>
export default {}
</script>
<style>
.cpt-mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
opacity: 0.5;
z-index: 99;
}
</style>