合并代码
This commit is contained in:
parent
c7f8afcde4
commit
29e82bd8a4
|
@ -190,7 +190,6 @@ const util = {
|
|||
...params.header,
|
||||
}
|
||||
|
||||
console.log('token', token)
|
||||
if (token) params.header["Authorization"] = `Bearer ${token}`
|
||||
|
||||
// console.log('request url', url)
|
||||
|
|
|
@ -158,7 +158,10 @@
|
|||
<view class="li mtb30" v-for="(item,index) in team.sonUser" :key="item.id">
|
||||
<view class="menber df aic">
|
||||
<view class="count mr20 plr10 cfff br10" v-if="item.isShop == 1">商</view>
|
||||
<view class="c333 f32">{{item.userNickname}}</view>
|
||||
<view class="c333 f32">
|
||||
<text class="name" :class="{'auth': item.isRealName}">{{item.userNickname}}</text>
|
||||
<text class="ml20" v-if="item.sonList.length != 0">{{item.sonList.length}}</text>
|
||||
</view>
|
||||
<template v-if="item.sonList[0]">
|
||||
<uni-icons @click="lowTeam(item)" type="up" color="#A45EFF" size="28rpx"
|
||||
v-if="item.showSecond" />
|
||||
|
@ -180,8 +183,9 @@
|
|||
<view class="line"></view>
|
||||
<view class="ml10 df aic c999 f28">
|
||||
<view class="count mr20 plr10 cfff br10" v-if="secItem.isShop == 1">商</view>
|
||||
<view class="name">{{secItem.userNickname}}</view>
|
||||
<view class="label ml10">{{secItem.count}}</view>
|
||||
<text class="name"
|
||||
:class="{'auth': secItem.isRealName}">{{secItem.userNickname}}</text>
|
||||
<view class="label ml20" v-if="secItem.count != 0">{{secItem.count}}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -228,6 +232,15 @@
|
|||
background-image: linear-gradient(114deg, #27EFE2 0%, #A45EFF 43%, #FF004F 100%);
|
||||
}
|
||||
|
||||
// 实名
|
||||
.name {
|
||||
color: #FF8400;
|
||||
|
||||
&.auth {
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
|
||||
// 二级列表
|
||||
.list {
|
||||
padding-left: .5em;
|
||||
|
|
Loading…
Reference in New Issue