|
|
- <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> -->
-
- <addressSpot
- :address="item.address"
- :latitude="item.latitude"
- :longitude="item.longitude"
- />
-
- <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>
|