@@ -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;
+ }
}
@@ -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>
@@ -11,8 +11,9 @@
background-color: var(--f1Color);
-.main .one .list .name {
+.main .one .list .name text {
font-size: var(--font16Size);
.scroll-view {
position: absolute;
@@ -10,7 +10,7 @@
.list_1 {
padding: 3vw 0;
+ font-size: var(--font15Size);
.main .list .list_1 {
.main .active {
border-bottom: 2px solid var(--blackColor);
@@ -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 }) }
},