guhongwei 2 lat temu
rodzic
commit
6e1c614143

+ 4 - 1
commpents/pagesMatchs/match/match-5.less

@@ -14,7 +14,10 @@
             border-bottom: 1px solid var(--whiteColor);
 
             .name {
-                font-size: var(--font16Size);
+                text {
+                    font-size: var(--font16Size);
+                    padding: 0 2vw 0 0;
+                }
             }
 
         }

+ 2 - 1
commpents/pagesMatchs/match/match-5.wxml

@@ -4,7 +4,8 @@
             <view class="one">
                 <view class="list" wx:for="{{achieveList}}" wx:key="item" bindtap="toAchieve" data-item="{{item}}">
                     <view class="name">
-                        {{item.name}}({{item.age}}岁)
+                        <text>{{item.group_id_name}}</text>
+                        <text>{{item.name}}</text>
                     </view>
                     <view class="icon">
                         <text class="iconfont icon-jiantou_liebiaoxiangyou"></text>

+ 2 - 1
commpents/pagesMatchs/match/match-5.wxss

@@ -11,8 +11,9 @@
   background-color: var(--f1Color);
   border-bottom: 1px solid var(--whiteColor);
 }
-.main .one .list .name {
+.main .one .list .name text {
   font-size: var(--font16Size);
+  padding: 0 2vw 0 0;
 }
 .scroll-view {
   position: absolute;

+ 1 - 1
commpents/tabs/index.less

@@ -10,7 +10,7 @@
 
         .list_1 {
             padding: 3vw 0;
-            font-size: var(--font16Size);
+            font-size: var(--font15Size);
 
         }
     }

+ 1 - 1
commpents/tabs/index.wxss

@@ -10,7 +10,7 @@
 }
 .main .list .list_1 {
   padding: 3vw 0;
-  font-size: var(--font16Size);
+  font-size: var(--font15Size);
 }
 .main .active {
   border-bottom: 2px solid var(--blackColor);

+ 1 - 0
pagesMatch/match/info.js

@@ -223,6 +223,7 @@ Page({
                 }
                 // 成绩册列表
                 arr = await app.$get(`/matchProject`, { match_id: that.data.info._id }, 'race');
+                console.log(arr.data);
                 if (arr.errcode == '0') { that.setData({ achieveList: arr.data }) }
 
             },