|
@@ -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">
|
|
|
+ 手机号码: {{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">
|
|
|
+ 绑定时间: {{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>
|