修改login中第三方循环判断

master
lemon橪 2021-11-22 11:18:00 +08:00
parent 89dbd32351
commit 0c887a25e3
2 changed files with 8 additions and 4 deletions

View File

@ -2,8 +2,8 @@
"name" : "lili商城",
"appid" : "__UNI__C100675",
"description" : "",
"versionName" : "4.0.47",
"versionCode" : 4000047,
"versionName" : "4.0.48",
"versionCode" : 4000048,
"transformPx" : false,
"app-plus" : {
"compatible" : {

View File

@ -35,7 +35,7 @@
<!-- 循环出当前可使用的第三方登录模式 -->
<div class="flex login-list">
<div :style="{background:item.color}" class="login-item" v-for="(item,index) in loginList" :key="index">
<div v-if="item.code" :style="{background:item.color}" class="login-item" v-for="(item,index) in loginList" :key="index">
<u-icon v-if="item.title!='APPLE'" color="#fff" size="42" :name="item.icon" @click="navigateLogin(item)">
</u-icon>
<u-image v-else src="/static/appleidButton@2x.png" :lazy-load="false" @click="navigateLogin(item)" width="80"
@ -636,7 +636,8 @@ page {
position: absolute;
bottom: 20px;
align-items: center;
justify-content: space-around;
justify-content: center;
}
.login-item {
@ -647,5 +648,8 @@ page {
display: flex;
justify-content: center;
align-items: center;
margin: 0 20rpx;
}
</style>