提交 5b09b1c68baecb3323685a8973be6c8bd21fd0a0

作者 wangyu
1 个父辈 a37bbaa7

优化聊天相关UI

... ... @@ -124,7 +124,7 @@
124 124 </view>
125 125 <view style='height:70rpx'>
126 126 <text class='text_999_28 ' style='line-height:70rpx'>发证机关:</text>
127   - <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>{{item.certification_no}}</text>
  127 + <text class='text_333_28 ' style='line-height:70rpx;margin-left:20rpx'>{{item.certification_autority}}</text>
128 128 </view>
129 129 <view style='height:70rpx'>
130 130 <text class='text_999_28 ' style='line-height:70rpx'>扣除方式:</text>
... ...
... ... @@ -42,14 +42,14 @@
42 42 </block>
43 43 </view> -->
44 44
45   - <view style='width:100%;display:flex;flex-direction:column;max-height:450rpx;align-items:center;'>
  45 + <view style='width:100%;display:flex;flex-direction:column;max-height:486rpx;'>
46 46 <view wx:for="{{comlist}}" wx:for-index="idx" bindtap='goselect' id="{{idx}}">
47   - <view wx:if="{{idx==choosed_index}}" >
48   - <text class='text_item_blue float_left'>{{item.name}}</text>
  47 + <view wx:if="{{idx==choosed_index}}" style='padding:30rpx;display:flex;flex-direction:row;' >
  48 + <view class='text_item_blue float_left' >{{item.name}}</view>
49 49 <image class='icon_choosed' src="/images/icon_chat_choosed.png"></image>
50 50 </view>
51   - <view wx:else >
52   - <view class='text_item_black float_left'>{{item.name}}</view>
  51 + <view wx:else style='padding:30rpx;display:flex;' >
  52 + <text class='text_item_black float_left' >{{item.name}}</text>
53 53 </view>
54 54 <view class='divide_line_f5f5f5'></view>
55 55 </view>
... ...
... ... @@ -39,7 +39,7 @@
39 39 .icon_choosed {
40 40 width: 24rpx;
41 41 height: 26rpx;
42   - margin-top: 30rpx;
  42 + margin-top: 10rpx;
43 43 margin-right: 20rpx;
44 44 float: right;
45 45 }
... ... @@ -50,7 +50,14 @@
50 50 color: #108ee9;
51 51 letter-spacing: 0;
52 52 line-height: 18px;
53   - padding: 30rpx;
  53 + width: 500rpx;
  54 +
  55 + text-align:center;
  56 + overflow:hidden;
  57 +text-overflow:ellipsis;
  58 +white-space:nowrap;
  59 +
  60 +
54 61 }
55 62
56 63 .text_item_black {
... ... @@ -59,7 +66,12 @@
59 66 color: #333;
60 67 letter-spacing: 0;
61 68 line-height: 18px;
62   - padding: 30rpx;
  69 + width: 500rpx;
  70 +
  71 + text-align:center;
  72 + overflow:hidden;
  73 +text-overflow:ellipsis;
  74 +white-space:nowrap;
63 75 }
64 76
65 77 .text_cancel {
... ...
注册登录 后发表评论