|
@@ -18,40 +18,41 @@
|
|
|
<view class="content">
|
|
|
<text class="title">请登录</text>
|
|
|
|
|
|
- <!-- #ifdef APP-PLUS || H5 -->
|
|
|
+ <!-- #ifdef APP-PLUS -->
|
|
|
<view id="okay">首次账号登录请先配置服务器</view>
|
|
|
<!-- <u-icon class="icons" name="scan" color="gray" size="22"></u-icon> -->
|
|
|
<view class="setting" @tap="goSeverConfig"> 配置服务器 </view>
|
|
|
<!--#endif-->
|
|
|
</view>
|
|
|
|
|
|
- <view id="login-input" style="margin-top: 20px" v-if="switchText == '账号密码登录'">
|
|
|
+ <view id="login-input" v-if="switchText == '账号密码登录'">
|
|
|
<u-input v-model="phone" prefixIcon="phone" placeholder="请输入手机号码" />
|
|
|
</view>
|
|
|
|
|
|
- <view id="login-input" style="display: flex; margin-top: 20px" v-if="switchText == '账号密码登录'">
|
|
|
- <u-input style="width: 60%" v-model="verify" prefixIcon="email" placeholder="请输入验证码" />
|
|
|
-
|
|
|
- <u-button @click="getVerifyCode">{{ !codeTime ? "获取验证码" : codeTime + "s" }}</u-button>
|
|
|
+ <view id="login-input" v-if="switchText == '账号密码登录'">
|
|
|
+ <u-input v-model="verify" prefixIcon="email" placeholder="请输入验证码">
|
|
|
+ <template #suffix>
|
|
|
+ <u-button @click="getVerifyCode">{{ !codeTime ? "获取验证码" : codeTime + "s" }}</u-button>
|
|
|
+ </template>
|
|
|
+ </u-input>
|
|
|
</view>
|
|
|
|
|
|
- <view id="login-input" style="margin-top: 20px" v-if="switchText == '验证码登录'">
|
|
|
+ <view id="login-input" v-if="switchText == '验证码登录'">
|
|
|
<u-input type="text" v-model="username" prefixIcon="account" placeholder="请输入账号" />
|
|
|
|
|
|
- <u-input style="margin-top: 20px" v-model="password" prefixIcon="lock" placeholder="请输入密码" :password="inputIconBool">
|
|
|
+ <u-input v-model="password" prefixIcon="lock" placeholder="请输入密码" :password="inputIconBool">
|
|
|
<template #suffix>
|
|
|
- <text class="iconfont ucicon-eye" @click="inputIcon()" v-if="!inputIconBool"></text>
|
|
|
- <text class="iconfont ucicon-eye-close" @click="inputIcon()" v-if="inputIconBool"></text>
|
|
|
+ <text :class="!inputIconBool ? 'iconfont ucicon-eye' : 'iconfont ucicon-eye-close'" @click="inputIconBool = !inputIconBool"></text>
|
|
|
</template>
|
|
|
</u-input>
|
|
|
</view>
|
|
|
|
|
|
<!-- -->
|
|
|
+ <button class="submit" @click="submitRes">登 录</button>
|
|
|
|
|
|
<view class="switchText" @click="switchMode">
|
|
|
<text>{{ switchText }}</text>
|
|
|
</view>
|
|
|
- <button class="submit" @click="submitRes">登 录</button>
|
|
|
</view>
|
|
|
<view class="bottom">
|
|
|
<div class="title">{{ bottomTitle }}</div>
|
|
@@ -100,6 +101,7 @@ function goSeverConfig() {
|
|
|
url: "/pages/serveConfig",
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
/**登录方式切换 */
|
|
|
function switchMode() {
|
|
|
if (switchText.value == "验证码登录") {
|
|
@@ -108,32 +110,23 @@ function switchMode() {
|
|
|
switchText.value = "验证码登录";
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/** 点击发送验证码 */
|
|
|
function getVerifyCode() {
|
|
|
if (!phone.value) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入手机号码...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入手机号码");
|
|
|
return;
|
|
|
}
|
|
|
if (!/^1(?:3\d|4[4-9]|5[0-35-9]|6[67]|7[013-8]|8\d|9\d)\d{8}$/.test(phone.value)) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入正确的手机号码...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入正确的手机号码");
|
|
|
return;
|
|
|
}
|
|
|
verify.value = undefined;
|
|
|
getSendSms({
|
|
|
phone: phone.value,
|
|
|
});
|
|
|
- //
|
|
|
if (codeTime.value > 0) {
|
|
|
- uni.showToast({
|
|
|
- title: "不能重复获取",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("不能重复获取");
|
|
|
return;
|
|
|
} else {
|
|
|
codeTime.value = 60;
|
|
@@ -146,6 +139,7 @@ function getVerifyCode() {
|
|
|
}, 1000);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/** 获取验证码 */
|
|
|
async function getSendSms(params) {
|
|
|
getCodeImg(params).then((res) => {
|
|
@@ -204,34 +198,22 @@ async function submitRes() {
|
|
|
//#ifdef APP-PLUS
|
|
|
var linkUrl = newPublicStore.serveUrl;
|
|
|
if (!newPublicStore.serveUrl) {
|
|
|
- uni.showToast({
|
|
|
- title: "首次登录请先进行服务器配置...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("首次登录请先进行服务器配置");
|
|
|
return;
|
|
|
}
|
|
|
//#endif
|
|
|
|
|
|
if (switchText.value == "账号密码登录") {
|
|
|
if (!phone.value) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入手机号码...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入手机号码");
|
|
|
return;
|
|
|
}
|
|
|
if (!/^1(?:3\d|4[4-9]|5[0-35-9]|6[67]|7[013-8]|8\d|9\d)\d{8}$/.test(phone.value)) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入正确的手机号码...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入正确的手机号码");
|
|
|
return;
|
|
|
}
|
|
|
if (!verify.value) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入验证码...",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入验证码");
|
|
|
return;
|
|
|
}
|
|
|
login({
|
|
@@ -241,17 +223,11 @@ async function submitRes() {
|
|
|
});
|
|
|
} else {
|
|
|
if (!username.value) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入账户",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入账户");
|
|
|
return;
|
|
|
}
|
|
|
if (!password.value) {
|
|
|
- uni.showToast({
|
|
|
- title: "请输入密码",
|
|
|
- icon: "none",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("请输入密码");
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -265,7 +241,7 @@ async function submitRes() {
|
|
|
|
|
|
/** 获取登录数据 */
|
|
|
async function login(data) {
|
|
|
- // proxy.$modal.loading("登录中,请耐心等待...");
|
|
|
+ proxy.$modal.loading("登录中,请耐心等待...");
|
|
|
|
|
|
useStore.Login(data).then(() => {
|
|
|
info();
|
|
@@ -295,14 +271,6 @@ async function getMobileTenantConfigApi(params) {
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * @密码显示隐藏icon图标事件
|
|
|
- * @icon点击事件
|
|
|
- */
|
|
|
-function inputIcon() {
|
|
|
- inputIconBool.value = !inputIconBool.value;
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* @onLoad
|
|
|
*/
|
|
@@ -318,11 +286,6 @@ onLoad(() => {
|
|
|
}
|
|
|
});
|
|
|
</script>
|
|
|
-<style>
|
|
|
-.uni-input {
|
|
|
- color: red !important;
|
|
|
-}
|
|
|
-</style>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.section {
|
|
@@ -361,20 +324,17 @@ onLoad(() => {
|
|
|
border: 0 !important;
|
|
|
// border-color: #000 !important;
|
|
|
// border-color: gray !important;
|
|
|
- background-color: rgba(255, 255, 255, 0.1) !important;
|
|
|
+ // background-color: rgba(255, 255, 255, 0.1) !important;
|
|
|
background-color: #f5f6fa !important;
|
|
|
+ margin-bottom: 20px;
|
|
|
}
|
|
|
|
|
|
- :deep(.uni-input-wrapper) {
|
|
|
- font-size: 16px;
|
|
|
+ :deep(.input-placeholder) {
|
|
|
color: #a0a4af;
|
|
|
}
|
|
|
|
|
|
- :deep(uni-input) {
|
|
|
- color: #000 !important;
|
|
|
- background-color: rgba(255, 255, 255, 0) !important;
|
|
|
- border: 0px solid #ededed !important;
|
|
|
- padding-left: 0 !important;
|
|
|
+ :deep(.uni-input-wrapper) {
|
|
|
+ font-size: 16px;
|
|
|
}
|
|
|
|
|
|
:deep(.u-icon__icon) {
|
|
@@ -387,19 +347,6 @@ onLoad(() => {
|
|
|
color: gray !important;
|
|
|
}
|
|
|
|
|
|
- :deep(.u-button) {
|
|
|
- width: 35%;
|
|
|
- height: 45px;
|
|
|
- line-height: 45px;
|
|
|
- color: #2a98ff;
|
|
|
- border-radius: 24px;
|
|
|
- margin: 0 0 0 5%;
|
|
|
- font-size: 17px !important;
|
|
|
- white-space: nowrap;
|
|
|
- border-color: #2a98ff !important;
|
|
|
- background-color: rgba(255, 255, 255, 0.1) !important;
|
|
|
- }
|
|
|
-
|
|
|
:deep(:-webkit-autofill) {
|
|
|
caret-color: #a0a4af; // 设置光标颜色
|
|
|
// -webkit-text-fill-color: gray !important;
|
|
@@ -408,6 +355,19 @@ onLoad(() => {
|
|
|
background-image: none;
|
|
|
transition: background-color 50000s ease-in-out 0s; //背景色透明 生效时长 过渡效果 启用时延迟的时间
|
|
|
}
|
|
|
+
|
|
|
+ :deep(.u-button) {
|
|
|
+ color: #2a98ff;
|
|
|
+ font-size: 16px !important;
|
|
|
+ white-space: nowrap;
|
|
|
+ border: 0;
|
|
|
+ border-color: #2a98ff !important;
|
|
|
+ background-color: rgba(255, 255, 255, 0) !important;
|
|
|
+
|
|
|
+ &:before {
|
|
|
+ opacity: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.top {
|
|
@@ -433,14 +393,15 @@ onLoad(() => {
|
|
|
.content {
|
|
|
display: flex;
|
|
|
position: relative;
|
|
|
+ margin: 30px 0 30px 0;
|
|
|
.title {
|
|
|
margin: auto auto auto 0;
|
|
|
color: #000;
|
|
|
- font-size: 17px;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
|
|
|
.icons {
|
|
|
- margin: auto 5px 0 0;
|
|
|
+ margin: auto 5px auto 0;
|
|
|
}
|
|
|
|
|
|
.setting {
|
|
@@ -473,9 +434,9 @@ onLoad(() => {
|
|
|
|
|
|
.switchText {
|
|
|
color: #a0a4af;
|
|
|
- margin-top: 20px;
|
|
|
width: 100%;
|
|
|
display: block;
|
|
|
+ margin-top: 20px;
|
|
|
}
|
|
|
|
|
|
.submit {
|
|
@@ -484,7 +445,6 @@ onLoad(() => {
|
|
|
border-radius: 24px;
|
|
|
background: #2a98ff;
|
|
|
color: #fff;
|
|
|
- margin-top: 30px;
|
|
|
border: 0px;
|
|
|
}
|
|
|
}
|