123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <template>
- <view class="normal-login-container">
- <view class="logo-content align-center justify-center flex">
- <image style="width: 100rpx;height: 100rpx;" :src="globalConfig.appInfo.logo" mode="widthFix">
- </image>
- <text class="title">CMC智联云枢办公系统</text>
- </view>
- <view class="login-form-content">
- <view class="input-item flex align-center">
- <view class="iconfont icon-user icon"></view>
- <input v-model="loginForm.username" class="input" type="text" placeholder="请输入账号" maxlength="30" />
- </view>
- <view class="input-item flex align-center">
- <view class="iconfont icon-password icon"></view>
- <input v-model="loginForm.password" type="password" class="input" placeholder="请输入密码" maxlength="20" />
- </view>
- <!-- <view class="input-item flex align-center" style="width: 60%;margin: 0px;" v-if="captchaEnabled">
- <view class="iconfont icon-code icon"></view>
- <input v-model="loginForm.code" type="number" class="input" placeholder="请输入验证码" maxlength="4" />
- <view class="login-code">
- <image :src="codeUrl" @click="getCode" class="login-code-img"></image>
- </view >
- </view> -->
- <view class="action-btn">
- <button @click="handleLogin" class="login-btn cu-btn block bg-blue lg round">登录</button>
- </view>
- </view>
-
- <!-- <view class="xieyi text-center">
- <text class="text-grey1">登录即代表同意</text>
- <text @click="handleUserAgrement" class="text-blue">《用户协议》</text>
- <text @click="handlePrivacy" class="text-blue">《隐私协议》</text>
- </view> -->
- <view class="copyright-info">©2025 CMC智联云枢办公系统 版权所有</view>
- </view>
- </template>
-
- <script>
- import { getCodeImg } from '@/api/login'
-
- export default {
- data() {
- return {
- codeUrl: "",
- captchaEnabled: true,
- globalConfig: getApp().globalData.config,
- loginForm: {
- username: "",
- password: "",
- code: "",
- uuid: ''
- }
- }
- },
- created() {
- this.getCode()
- },
- methods: {
- // 隐私协议
- 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) {
- // this.$modal.msgError("请输入验证码")
- // }
- else {
- this.$modal.loading("登录中,请耐心等待...")
- this.pwdLogin()
- }
- },
- // 密码登录
- async pwdLogin() {
- this.$store.dispatch('Login', this.loginForm).then(() => {
- this.$modal.closeLoading()
- this.loginSuccess()
- }).catch(() => {
- if (this.captchaEnabled) {
- this.getCode()
- }
- })
- },
- // 登录成功后,处理函数
- loginSuccess(result) {
- // 设置用户信息
- this.$store.dispatch('GetInfo').then(res => {
- this.$tab.reLaunch('/pages/message/index')
- })
- }
- }
- }
- </script>
-
- <style lang="scss">
- page {
- background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
- min-height: 100vh;
- position: relative;
- overflow: hidden;
-
- &::before,
- &::after {
- content: '';
- position: absolute;
- width: 300px;
- height: 300px;
- border-radius: 50%;
- z-index: 0;
- }
-
- &::before {
- background: linear-gradient(45deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.1));
- top: -100px;
- right: -100px;
- animation: float 6s ease-in-out infinite;
- }
-
- &::after {
- background: linear-gradient(45deg, rgba(33, 150, 243, 0.08), rgba(25, 118, 210, 0.08));
- bottom: -150px;
- left: -150px;
- animation: float 8s ease-in-out infinite reverse;
- }
- }
-
- .normal-login-container {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- position: relative;
- z-index: 1;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
-
- &::before {
- content: '';
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 600px;
- height: 600px;
- background: radial-gradient(circle, rgba(33, 150, 243, 0.03) 0%, rgba(33, 150, 243, 0) 70%);
- z-index: -1;
- }
-
- .logo-content {
- width: 100%;
- font-size: 21px;
- text-align: center;
- padding-top: 25%;
- animation: fadeInDown 0.8s ease-out;
-
- image {
- border-radius: 12px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- transition: transform 0.3s ease;
-
- &:hover {
- transform: scale(1.05);
- }
- }
-
- .title {
- margin-left: 10px;
- background: linear-gradient(45deg, #2196F3, #1976D2);
- -webkit-background-clip: text;
- color: transparent;
- font-weight: 600;
- }
- }
-
- .login-form-content {
- text-align: center;
- margin: 20px auto;
- margin-top: 10%;
- width: 90%;
- animation: fadeInUp 0.8s ease-out;
-
- .input-item {
- margin: 20px auto;
- background-color: rgba(255, 255, 255, 0.9);
- height: 45px;
- border-radius: 25px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
- transition: all 0.3s ease;
- border: 1px solid transparent;
-
- &:focus-within {
- border-color: #2196F3;
- box-shadow: 0 2px 12px rgba(33, 150, 243, 0.1);
- }
-
- .icon {
- font-size: 38rpx;
- margin-left: 20px;
- color: #2196F3;
- }
-
- .input {
- width: 100%;
- font-size: 14px;
- line-height: 20px;
- text-align: left;
- padding-left: 15px;
- color: #333;
-
- &::placeholder {
- color: #999;
- }
- }
- }
-
- .login-btn {
- margin-top: 40px;
- height: 45px;
- background: linear-gradient(45deg, #2196F3, #1976D2);
- border: none;
- font-weight: 600;
- letter-spacing: 1px;
- transition: all 0.3s ease;
- box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
-
- &:active {
- transform: translateY(2px);
- box-shadow: 0 2px 6px rgba(33, 150, 243, 0.2);
- }
- }
- }
- }
-
- .copyright-info {
- width: 100%;
- text-align: center;
- position: fixed;
- left: 0;
- bottom: 30rpx;
- color: #666;
- font-size: 22rpx;
- letter-spacing: 1rpx;
- z-index: 1;
- opacity: 0.8;
- }
-
- @keyframes float {
- 0%, 100% {
- transform: translateY(0) rotate(0deg);
- }
- 50% {
- transform: translateY(-20px) rotate(5deg);
- }
- }
-
- @keyframes fadeInDown {
- from {
- opacity: 0;
- transform: translateY(-20px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
-
- @keyframes fadeInUp {
- from {
- opacity: 0;
- transform: translateY(20px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- </style>
|