Files
procar/src/components/index/index-select.vue
2019-12-24 09:48:33 +08:00

38 lines
719 B
Vue

<template>
<view class="index-select">
<view class="bag">大保养</view>
<view class="sm">小保养</view>
</view>
</template>
<style lang="scss" scoped>
.index-select {
width: 100%;
height: 103upx;
display: flex;
align-items: center;
border-bottom: 1upx solid #dcdcdc;
box-shadow:0px 1upx 1upx 0px rgba(49,49,49,0.19);
.bag {
width: 50%;
height: 64upx;
text-align: center;
line-height: 64upx;
border-right: 1upx solid #f1f1f1;
}
.sm {
width: 50%;
height: 64upx;
text-align: center;
line-height: 64upx;
}
}
</style>
<script>
name: "select";
export default {
data() {
return {};
},
props: []
};
</script>