瀏覽代碼

样式修改

zhanghui 1 年之前
父節點
當前提交
61c18d3bf7

+ 36 - 19
pages/groupbuying/distributionPerformance/module/mescrollUni-item.vue

@@ -9,15 +9,15 @@
 		:up="upOption" @up="upCallback" @emptyclick="emptyClick">
 		<!-- 数据列表 -->
 		<view class="myclient_list" v-for="(item,index) in list" :key="index">
-			<view class="myclient_list_name">
+			<view class="myclient_list_name" >
 				<view class="name-l">{{item.bindUserName}}</view>
 				<view class="name-r">+{{item.amount}}</view>
 			</view>
 			<view class="myclient_list_content">
 				<view class="time">
-					<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
-					<text>
-						时间:{{item.createTime}}
+					<image  class="image" referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
+					<text class="text">
+						时间:&nbsp;&nbsp;&nbsp;&nbsp;{{item.createTime}}
 					</text>
 				</view>
 			</view>
@@ -135,24 +135,41 @@
 
 <style lang="scss" scoped>
 
-	.u-slot-title {
-		line-height: 60rpx;
-
-		font-size: 28rpx;
+	.myclient_list{
+		background-color: white;
+		padding: 20rpx 0;
+		margin-top: 20rpx;
+	}
+	.text {
+		line-height: 50rpx;
+		font-size: 25rpx;
 		font-weight: 400;
-		color: #333333;
-
-	text {
+		color: rgba(153, 153, 153, 1);
 		vertical-align: text-bottom;
 	}
-
-	image {
-
-		margin-right: 20rpx;
-		transform: translateY(10rpx);
-		width: 60rpx;
-		height: 60rpx;
-
+	.name-r{
+		color: #1abb1d;
+		margin-right: 30rpx;
+	}
+	.image {
+		margin-right: 10rpx;
+		margin-left: 20rpx;
+		width: 34rpx;
+		height: 34rpx;
 	}
+
+	.myclient_list_name {
+		display: flex;
+		flex-direction: row;
+		justify-content: space-between;
+		overflow-wrap: break-word;
+		color: rgba(17, 17, 17, 1);
+		font-size: 28rpx;
+		font-family: PingFangSC-Medium;
+		font-weight: 500;
+		text-align: left;
+		white-space: nowrap;
+		line-height: 44rpx;
+		margin-left: 20rpx;
 	}
 </style>

+ 34 - 25
pages/groupbuying/myClient/module/mescrollUni-item.vue

@@ -9,21 +9,20 @@
 		:up="upOption" @up="upCallback" @emptyclick="emptyClick">
 		<!-- 数据列表 -->
 		<view class="myclient_list" v-for="(item,index) in list" :key="index">
-			<view class="myclient_list_name">
-				{{item.realName || item.name}}
+			<view>
+				<text class="myclient_list_name" >{{item.realName || item.name}}</text>
 			</view>
 			<view class="myclient_list_content">
-
 				<view class="phone">
-					<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/分期-手机@2x.png" />
-					<text>
-						手机号码:{{item.phone}}
+					<image class="image" referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/分期-手机@2x.png" />
+					<text class="text">
+						手机号码:  &nbsp;&nbsp;&nbsp;&nbsp; {{item.phone}}
 					</text>
 				</view>
 				<view class="time">
-					<image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
-					<text>
-						绑定时间:{{item.bindTime}}
+					<image class="image" referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
+					<text class="text">
+						绑定时间: &nbsp;&nbsp;&nbsp;&nbsp;  {{item.bindTime}}
 					</text>
 				</view>
 			</view>
@@ -141,24 +140,34 @@
 
 <style lang="scss" scoped>
 
-	.u-slot-title {
-		line-height: 60rpx;
-
-		font-size: 28rpx;
+.myclient_list{
+	background-color: white;
+	margin-top: 20rpx;
+	padding: 20rpx 0;
+}
+	.text {
+		line-height: 50rpx;
+		font-size: 25rpx;
 		font-weight: 400;
-		color: #333333;
-
-	text {
+		color: rgba(153, 153, 153, 1);
 		vertical-align: text-bottom;
 	}
-
-	image {
-
-		margin-right: 20rpx;
-		transform: translateY(10rpx);
-		width: 60rpx;
-		height: 60rpx;
-
-	}
+	.image {
+		margin-right: 10rpx;
+		margin-left: 20rpx;
+		width: 34rpx;
+		height: 34rpx;
 	}
+
+.myclient_list_name {
+	overflow-wrap: break-word;
+	color: rgba(17, 17, 17, 1);
+	font-size: 28rpx;
+	font-family: PingFangSC-Medium;
+	font-weight: 500;
+	text-align: left;
+	white-space: nowrap;
+	line-height: 44rpx;
+	margin-left: 20rpx;
+}
 </style>

+ 7 - 0
pages/groupbuying/promotion/index.vue

@@ -42,6 +42,8 @@
 					</u-cell>
 				</navigator>
 
+				<view class="line"></view>
+
 				<navigator url="/pages/groupbuying/myClient/index" hover-class="none">
 					<u-cell isLink>
 
@@ -501,4 +503,9 @@ export default {
 
 	}
 }
+
+	.line{
+		width: 100%;
+		border: 1px solid #F9F9F9;
+	}
 </style>