Browse Source

协销机构画像

zhengjinyi 2 years ago
parent
commit
6d7273a3b3
1 changed files with 5 additions and 5 deletions
  1. 5 5
      pages/seller/club/club-visit-detail.vue

+ 5 - 5
pages/seller/club/club-visit-detail.vue

@@ -10,7 +10,7 @@
 		<template v-else>
 			<view class="visit-content clearfix">
 				<view class="info-title">{{ listQuery.accessDate }}</view>
-				<view class="info-main" v-for="(visit, index) in list" :key="index">
+				<view class="info-main" v-for="(visit, index) in list" :key="index" :class="index === list.length -1 ? 'none' : ''">
 					<view class="info-p">访问时间:<text>{{ visit.accessNewTime }}</text></view>
 					<view class="info-p">页面类型:<text>{{ visit.pageType ? visit.pageType : '--' }}</text></view>
 					<view class="info-p">页面标签:<text>{{ visit.pageLabel ? visit.pageLabel : '--' }}</text></view>
@@ -208,10 +208,7 @@ page {
 			height: auto;
 			padding: 20rpx 0;
 			margin-bottom: 24rpx;
-			border-bottom: 30rpx solid #f5f5f5;
-			&:last-child {
-				border-bottom: none;
-			}
+			border-bottom: 20rpx solid #f5f5f5;
 			.info-p {
 				width: 100%;
 				box-sizing: border-box;
@@ -241,6 +238,9 @@ page {
 					border: 1px dashed #e2e2e2;
 				}
 			}
+			&.none{
+				border-bottom: none;
+			}
 		}
 	}
 }