deming/pageB/components/search/shop.vue

53 lines
1.0 KiB
Vue
Raw Normal View History

2020-06-03 09:17:05 +00:00
<template>
<view class="shop">
<image></image>
<view class="info">
<text class="title">这是标题</text>
<text class="profile u-line-2">这是简介</text>
</view>
</view>
</template>
<script>
export default {
name:"shop",
data(){
return {
}
2020-06-04 00:42:04 +00:00
}
2020-06-03 09:17:05 +00:00
}
</script>
<style lang="scss" scoped>
.shop{
display: flex;
width: 690rpx;
height: 170rpx;
margin: 0 auto;
margin-bottom: 30rpx;
border-radius: 5rpx;
overflow: hidden;
>image{
width: 220rpx;
height: 170rpx;
flex-shrink: 0;
}
.info{
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
background-color: #f5f5f5;
padding: 30rpx;
>text:first-child{
font-size: 30rpx;
color:#333;
}
>text:last-child{
font-size: 28rpx;
color: #666;
margin-top: 20rpx;
}
}
}
</style>