瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

76 lines
1.2 KiB

<template>
<view class="item" @click="$emit('click')">
<image :src="item.titleImage"
@click.stop="previewImage([item.titleImage])"
mode="aspectFill"></image>
<view class="text">
<view class="title">
{{ item.name }}
</view>
<view>
</view>
<view class="createBy">
{{ item.address }}
</view>
<view class="createTime">
{{ $dayjs(item.createTime).format('YYYY-MM-DD') }}
</view>
</view>
</view>
</template>
<script>
export default {
props: ['item'],
data() {
return {
};
}
}
</script>
<style lang="scss" scoped>
.item {
height: 220rpx;
width: 100%;
background-color: #fff;
overflow: hidden;
border-radius: 10rpx;
color: #777;
display: flex;
font-size: 24rpx;
margin: 30rpx 0;
image {
width: 50%;
height: 100%;
}
.text {
display: flex;
flex-direction: column;
padding: 16rpx;
width: 50%;
.title {
font-size: 30rpx;
font-weight: 600;
color: #000;
}
.createBy {
display: flex;
margin-top: auto;
margin-bottom: 10rpx;
justify-content: space-between;
&>view {
display: flex;
align-items: center;
justify-content: center;
}
}
}
}
</style>