master
lemon橪 2021-06-18 18:19:18 +08:00
commit e9739cacf5
2 changed files with 19 additions and 20 deletions

View File

@ -2,8 +2,8 @@
"name" : "lili商城", "name" : "lili商城",
"appid" : "__UNI__C100675", "appid" : "__UNI__C100675",
"description" : "", "description" : "",
"versionName" : "4.0.18", "versionName" : "4.0.19",
"versionCode" : 4000018, "versionCode" : 4000019,
"transformPx" : false, "transformPx" : false,
"app-plus" : { "app-plus" : {
"compatible" : { "compatible" : {

View File

@ -5,7 +5,6 @@
<!-- 循环出当前可使用的第三方登录模式 --> <!-- 循环出当前可使用的第三方登录模式 -->
<div class="login-item" v-for="(item,index) in loginList" :key="index"> <div class="login-item" v-for="(item,index) in loginList" :key="index">
<u-icon :color="item.color" size="80" :name="item.icon" @click="navigateLogin(item)"></u-icon> <u-icon :color="item.color" size="80" :name="item.icon" @click="navigateLogin(item)"></u-icon>
<div>{{item.title}}</div>
</div> </div>
</div> </div>
<view class="text-tips cell" @click="clickCodeLogin"></view> <view class="text-tips cell" @click="clickCodeLogin"></view>
@ -118,23 +117,23 @@ export default {
methods: { methods: {
/** 根据参数显示登录模块 */ /** 根据参数显示登录模块 */
methodFilter(code) { methodFilter(code) {
let way = []; // let way = [];
this.loginList.forEach((item) => { // this.loginList.forEach((item) => {
if (code.length != 0) { // if (code.length != 0) {
code.forEach((val) => { // code.forEach((val) => {
if (item.code == val) { // if (item.code == val) {
way.push(item); // way.push(item);
} // }
}); // });
} else { // } else {
uni.showToast({ // uni.showToast({
title: '配置有误请联系管理员', // title: '',
duration: 2000, // duration: 2000,
icon:"none" // icon:"none"
}); // });
} // }
}); // });
this.loginList = way; // this.loginList = way;
}, },
/**跳转到登录页面 */ /**跳转到登录页面 */
navigateLogin(connectLogin) { navigateLogin(connectLogin) {