登录页

This commit is contained in:
binbin_pan 2025-01-02 14:28:03 +08:00
parent 5413b1a310
commit 647f257a07
17 changed files with 313 additions and 155 deletions

View File

@ -10,7 +10,7 @@ module.exports = {
// 应用信息 // 应用信息
appInfo: { appInfo: {
// 应用名称 // 应用名称
name: "gz_safety_app", name: "dining_hall_app",
// 应用版本 // 应用版本
version: "1.1.0", version: "1.1.0",
// 应用logo // 应用logo

View File

@ -25,7 +25,7 @@
{ {
"path": "pages/work/index", "path": "pages/work/index",
"style": { "style": {
"navigationBarTitleText": "工作台" "navigationBarTitleText": "订单"
} }
}, },
{ {
@ -153,11 +153,23 @@
"style": { "style": {
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path": "pages/amendPassword",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/system",
"style": {
"navigationBarTitleText": "皖送e餐"
}
} }
], ],
"tabBar": { "tabBar": {
"color": "#000000", "color": "#000000",
"selectedColor": "#000000", "selectedColor": "#ED7234",
"borderStyle": "white", "borderStyle": "white",
"backgroundColor": "#ffffff", "backgroundColor": "#ffffff",
"list": [ "list": [
@ -171,7 +183,7 @@
"pagePath": "pages/work/index", "pagePath": "pages/work/index",
"iconPath": "static/images/tabbar/work.png", "iconPath": "static/images/tabbar/work.png",
"selectedIconPath": "static/images/tabbar/work_.png", "selectedIconPath": "static/images/tabbar/work_.png",
"text": "工作台" "text": "订单"
}, },
{ {
"pagePath": "pages/mine/index", "pagePath": "pages/mine/index",
@ -183,7 +195,7 @@
}, },
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"navigationBarTitleText": "贵州安全工机具", "navigationBarTitleText": "绿智食堂",
"navigationBarBackgroundColor": "#FFFFFF" "navigationBarBackgroundColor": "#FFFFFF"
} }
} }

19
pages/amendPassword.vue Normal file
View File

@ -0,0 +1,19 @@
<template>
<view>
忘记密码
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
</style>

View File

@ -1,18 +1,34 @@
<template> <template>
<view class="normal-login-container"> <view class="normal-login-container">
<view class="logo-content align-center justify-center flex"> <div class="logo">
<image style="width: 100rpx;height: 100rpx;" :src="globalConfig.appInfo.logo" mode="widthFix"> <u-image src="../static/images/login/logo.jpg" width="120px" height="120px" />
</image> </div>
<text class="title">若依移动端登录</text>
</view>
<view class="login-form-content"> <view class="login-form-content">
<view class="input-item flex align-center"> <view class="input-item">
<view class="iconfont icon-user icon"></view> <div style="color: #777">手机号</div>
<input v-model="loginForm.username" class="input" type="text" placeholder="请输入账号" maxlength="30" /> <!-- <u-input
v-model="loginForm.username"
type="number"
placeholder="请输入手机号"
border="none"
maxlength="11"
></u-input> -->
<u-input
v-model="loginForm.username"
placeholder="请输入手机号"
border="none"
maxlength="11"
></u-input>
</view> </view>
<view class="input-item flex align-center"> <view class="input-item flex align-center">
<view class="iconfont icon-password icon"></view> <div style="color: #777">密码</div>
<input v-model="loginForm.password" type="password" class="input" placeholder="请输入密码" maxlength="20" /> <u-input
v-model="loginForm.password"
type="password"
placeholder="请输入密码"
border="none"
maxlength="99"
></u-input>
</view> </view>
<!-- <view class="input-item flex align-center" style="width: 60%;margin: 0px;" v-if="captchaEnabled"> <!-- <view class="input-item flex align-center" style="width: 60%;margin: 0px;" v-if="captchaEnabled">
<view class="iconfont icon-code icon"></view> <view class="iconfont icon-code icon"></view>
@ -21,182 +37,225 @@
<image :src="codeUrl" @click="getCode" class="login-code-img"></image> <image :src="codeUrl" @click="getCode" class="login-code-img"></image>
</view> </view>
</view> --> </view> -->
<!-- <u-radio-group v-model="remember" style="margin-bottom: 20px" @change="rememberPassword">
<u-radio label="记住密码" :name="rememberName"></u-radio>
</u-radio-group> -->
<u-checkbox-group v-model="remember" shape="circle" @change="rememberPassword" style="margin-bottom: 20px">
<u-checkbox label="记住密码" name="remember"></u-checkbox>
</u-checkbox-group>
<view class="action-btn"> <view class="action-btn">
<button @click="handleLogin" class="login-btn cu-btn block bg-blue lg round">登录</button> <u-button text="登录" shape="circle" color="#FF6F25" size="small" @click="handleLogin"></u-button>
<div class="forget" @click="amendPassword">忘记密码?去修改</div>
</view> </view>
<view class="reg text-center" v-if="register"> <!-- <view class="reg text-center" v-if="register">
<text class="text-grey1">没有账号</text> <text class="text-grey1">没有账号</text>
<text @click="handleUserRegister" class="text-blue">立即注册</text> <text @click="handleUserRegister" class="text-blue">立即注册</text>
</view> </view> -->
<view class="xieyi text-center"> <!-- <view class="xieyi text-center">
<text class="text-grey1">登录即代表同意</text> <text class="text-grey1">登录即代表同意</text>
<text @click="handleUserAgrement" class="text-blue">用户协议</text> <text @click="handleUserAgrement" class="text-blue">用户协议</text>
<text @click="handlePrivacy" class="text-blue">隐私协议</text> <text @click="handlePrivacy" class="text-blue">隐私协议</text>
</view> </view> -->
</view> </view>
</view> </view>
</template> </template>
<script> <script>
import { getCodeImg } from '@/api/login' import { getCodeImg } from '@/api/login'
export default { export default {
data() { data() {
return { return {
codeUrl: "", codeUrl: '',
captchaEnabled: true, captchaEnabled: true,
// //
register: false, register: false,
globalConfig: getApp().globalData.config, globalConfig: getApp().globalData.config,
loginForm: { loginForm: {
username: "bns", // admin - admin123 username: uni.getStorageSync('remember') ? uni.getStorageSync('remember').username : 'bns', //
password: "1769fb2837e10e9d22c1c25add76355a", // bns - 1769fb2837e10e9d22c1c25add76355a password: uni.getStorageSync('remember') ? uni.getStorageSync('remember').password : '1769fb2837e10e9d22c1c25add76355a', // 1769fb2837e10e9d22c1c25add76355a', // bns - 1769fb2837e10e9d22c1c25add76355a
code: "", code: '',
uuid: '' uuid: ''
},
remember: uni.getStorageSync('remember') ? uni.getStorageSync('remember').remember : []
}
},
created() {
// this.getCode()
},
methods: {
//
handleUserRegister() {
this.$tab.redirectTo(`/pages/register`)
},
//
handlePrivacy() {
let site = this.globalConfig.appInfo.agreements[0]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
},
//
handleUserAgrement() {
let site = this.globalConfig.appInfo.agreements[1]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
},
//
getCode() {
getCodeImg().then(res => {
this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled
if (this.captchaEnabled) {
this.codeUrl = 'data:image/gif;base64,' + res.img
this.loginForm.uuid = res.uuid
} }
} })
}, },
created() { //
// this.getCode() async handleLogin() {
}, if (this.loginForm.username === '') {
methods: { this.$modal.msgError('请输入您的账号')
// } else if (this.loginForm.password === '') {
handleUserRegister() { this.$modal.msgError('请输入您的密码')
this.$tab.redirectTo(`/pages/register`)
},
//
handlePrivacy() {
let site = this.globalConfig.appInfo.agreements[0]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
},
//
handleUserAgrement() {
let site = this.globalConfig.appInfo.agreements[1]
this.$tab.navigateTo(`/pages/common/webview/index?title=${site.title}&url=${site.url}`)
},
//
getCode() {
getCodeImg().then(res => {
this.captchaEnabled = res.captchaEnabled === undefined ? true : res.captchaEnabled
if (this.captchaEnabled) {
this.codeUrl = 'data:image/gif;base64,' + res.img
this.loginForm.uuid = res.uuid
}
})
},
//
async handleLogin() {
if (this.loginForm.username === "") {
this.$modal.msgError("请输入您的账号")
} else if (this.loginForm.password === "") {
this.$modal.msgError("请输入您的密码")
// } else if (this.loginForm.code === "" && this.captchaEnabled) { // } else if (this.loginForm.code === "" && this.captchaEnabled) {
// this.$modal.msgError("") // this.$modal.msgError("")
} else { } else {
this.$modal.loading("登录中,请耐心等待...") this.$modal.loading('登录中,请耐心等待...')
this.pwdLogin() this.pwdLogin()
} }
}, },
// //
async pwdLogin() { async pwdLogin() {
this.$store.dispatch('Login', this.loginForm).then(() => { this.$store
.dispatch('Login', this.loginForm)
.then(() => {
this.$modal.closeLoading() // this.$modal.closeLoading() //
this.loginSuccess() this.loginSuccess()
}).catch(() => { })
.catch(() => {
// if (this.captchaEnabled) { // if (this.captchaEnabled) {
// this.getCode() // this.getCode()
// } // }
}) })
}, },
// //
loginSuccess(result) { loginSuccess(result) {
// //
this.$store.dispatch('GetInfo').then(res => { this.$tab.reLaunch('/pages/system')
this.$tab.reLaunch('/pages/index') // this.$store.dispatch('GetInfo').then(res => {
// this.$tab.reLaunch('/pages/system2')
// })
},
//
rememberPassword(e) {
console.log(e)
if (e.length > 0) {
uni.setStorageSync('remember', {
username: this.loginForm.username,
password: this.loginForm.password,
remember: e
}) })
} else {
uni.removeStorageSync('remember')
} }
},
//
amendPassword() {
uni.navigateTo({
url: '/pages/amendPassword'
})
} }
} }
}
</script> </script>
<style lang="scss"> <style lang="scss">
page { page {
background-color: #ffffff; background-color: #ffffff;
} }
.normal-login-container { .logo {
margin-top: 119px;
display: flex;
justify-content: center;
align-items: center;
}
.forget {
margin-top: 20px;
color: $u-primary;
}
.normal-login-container {
width: 100%;
.logo-content {
width: 100%; width: 100%;
font-size: 21px;
text-align: center;
padding-top: 15%;
.logo-content { image {
width: 100%; border-radius: 4px;
font-size: 21px;
text-align: center;
padding-top: 15%;
image {
border-radius: 4px;
}
.title {
margin-left: 10px;
}
} }
.login-form-content { .title {
text-align: center; margin-left: 10px;
margin: 20px auto;
margin-top: 15%;
width: 80%;
.input-item {
margin: 20px auto;
background-color: #f5f6f7;
height: 45px;
border-radius: 20px;
.icon {
font-size: 38rpx;
margin-left: 10px;
color: #999;
}
.input {
width: 100%;
font-size: 14px;
line-height: 20px;
text-align: left;
padding-left: 15px;
}
}
.login-btn {
margin-top: 40px;
height: 45px;
}
.reg {
margin-top: 15px;
}
.xieyi {
color: #333;
margin-top: 20px;
}
.login-code {
height: 38px;
float: right;
.login-code-img {
height: 38px;
position: absolute;
margin-left: 10px;
width: 200rpx;
}
}
} }
} }
.login-form-content {
text-align: center;
margin: 0 auto;
width: 80%;
.input-item {
margin: 0 auto 20px;
padding: 8px 15px;
background-color: #f5f6f7;
/* height: 45px; */
border-radius: 3px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
.icon {
font-size: 38rpx;
margin-left: 10px;
color: #999;
}
.input {
width: 100%;
font-size: 14px;
line-height: 20px;
text-align: left;
padding-left: 15px;
}
}
.login-btn {
margin-top: 40px;
height: 45px;
}
.reg {
margin-top: 15px;
}
.xieyi {
color: #333;
margin-top: 20px;
}
.login-code {
height: 38px;
float: right;
.login-code-img {
height: 38px;
position: absolute;
margin-left: 10px;
width: 200rpx;
}
}
}
}
</style> </style>

68
pages/system.vue Normal file
View File

@ -0,0 +1,68 @@
<template>
<view class="system">
<div class="top-img">
<u-image src="../static/images/system/top.png" width="351px" height="146px" />
</div>
<div class="cont-img">
<div class="item" @click="handleItem(1)">
<u-icon name="../static/images/system/1.png" size="38"></u-icon>
<div>就餐服务</div>
</div>
<div class="item">
<u-icon name="../static/images/system/2.png" size="38"></u-icon>
<div>志愿者服务</div>
</div>
<div class="item">
<u-icon name="../static/images/system/3.png" size="38"></u-icon>
<div>驿站服务</div>
</div>
</div>
</view>
</template>
<script>
export default {
data() {
return {}
},
methods: {
handleItem(index) {
if (index === 1) {
this.$tab.reLaunch('/pages/index')
}
}
}
}
</script>
<style lang="scss">
page {
min-height: 100vh;
background-image: url("../static/images/system/bg.png");
}
.system {
padding: 18px;
.top-img {
display: flex;
justify-content: center;
}
.cont-img {
display: flex;
justify-content: space-between;
margin-top: 15px;
.item {
padding: 15px 0;
width: 109px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 10px;
div {
margin-top: 10px;
}
}
}
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

BIN
static/images/system/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

BIN
static/images/system/2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
static/images/system/3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

BIN
static/images/system/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 718 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 339 B