H5-ThreeDoorder/components/jb30/jb30.vue

38 lines
558 B
Vue

<template>
<view>
<view class="jianbian">
<view v-if="showRadius" class="mt-30 yj-box"></view>
</view>
</view>
</template>
<script>
export default {
name:"jb30",
props:{
showRadius:{
type:Boolean,
default:true
}
},
data() {
return {
};
}
}
</script>
<style>
.jianbian{
height: 30rpx;
background: linear-gradient(#FE8D3D, #ffffff);
}
.yj-box{
height: 30rpx;
border-top-left-radius: 20rpx;
border-top-right-radius: 20rpx;
background-color: #FFFFFF;
}
</style>