xiaozhiyong 1 year ago
parent 99d4c7ed15
commit 23c2f5cf91
  1. 26
      components/site-item/site-item.vue

@ -10,7 +10,7 @@
<!-- <my-icon iconName="sy-der-icon.png" class="padding-right-xs text-sm"></my-icon> --> <!-- <my-icon iconName="sy-der-icon.png" class="padding-right-xs text-sm"></my-icon> -->
<!-- {{siteItem.juli|distanceFilter}} --> <!-- {{siteItem.juli|distanceFilter}} -->
<text v-if="!location">暂无信息</text> <text v-if="!location">暂无信息</text>
<text v-else >{{siteInfo.juli|distanceFilter}}</text> <text v-else>{{siteItem.juli|distanceFilter}}</text>
</view> </view>
</view> </view>
<view> <view>
@ -72,9 +72,9 @@
<script> <script>
export default { export default {
props: { props: {
location:{ location: {
type:Object, type: Object,
default:()=>null default: () => null
}, },
siteItem: { siteItem: {
type: Object, type: Object,
@ -147,23 +147,26 @@
align-items: flex-start !important; align-items: flex-start !important;
padding: 25rpx; padding: 25rpx;
// margin-bottom: 1.8rem; // margin-bottom: 1.8rem;
line-height:1.5rem; line-height: 1.5rem;
.content { .content {
flex:1; flex: 1;
overflow: hidden; overflow: hidden;
.action { .action {
position: absolute; position: absolute;
right: 35rpx; right: 35rpx;
top: 24rpx; top: 24rpx;
} }
} }
>.radius { >.radius {
margin-right: 30rpx; margin-right: 30rpx;
width: 96rpx; width: 96rpx;
height: 96rpx; height: 96rpx;
font-size: 2em; font-size: 2em;
background-size: 100% 100%; background-size: 100% 100%;
} }
} }
@ -187,22 +190,23 @@
.text-xl { .text-xl {
font-size: 30rpx; font-size: 30rpx;
} }
.activity { .activity {
display: flex; display: flex;
width: 85%; width: 85%;
// padding: 10rpx 20rpx; // padding: 10rpx 20rpx;
border:2rpx solid #1890FF ; border: 2rpx solid #1890FF;
border-radius: 10rpx; border-radius: 10rpx;
.title { .title {
width: 20%; width: 20%;
padding: 10rpx 0; padding: 10rpx 0;
line-height: 36rpx; line-height: 36rpx;
text-align: center; text-align: center;
color: #1890FF ; color: #1890FF;
background: #1890FF30; background: #1890FF30;
} }
.content { .content {
flex: 1; flex: 1;
padding: 10rpx 20rpx; padding: 10rpx 20rpx;

Loading…
Cancel
Save