123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <view class=" normal-login-container my-page">
- <view class="logo-content align-center justify-center flex">
- <image class="my-image" style="width: 150rpx;height: 150rpx;" :src="(globalConfig['appInfo'] as UTSJSONObject)['logo'] as string" mode="widthFix">
- </image>
- <text class="title">系统登录</text>
- </view>
- <view class=" login-form-content">
- <view class=" input-item flex align-center uni-row">
- <view class=" icon"></view>
- <input v-model="loginForm.username" class="input" type="text" placeholder="请输入账号" maxlength="30" />
- </view>
- <view class=" input-item flex align-center uni-row">
- <view class="icon"></view>
- <input v-model="loginForm.password" type="password" class="input" placeholder="请输入密码" maxlength="20" />
- </view>
- <!--
- <view class="input-item flex align-center uni-row" style="width: 60%;margin-top: 10px;" 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 my-image"></image>
- </view>
- </view> -->
- <view>
- <button @click="handleLogin" class="login-btn block bg-blue lg round">登录</button>
- </view>
- <view class=" reg" v-if="register">
- <text class="text-grey1">没有账号?</text>
- <text @click="handleUserRegister" class="text-blue">立即注册</text>
- </view>
- <view class=" xieyi justify-center flex uni-row">
- <text class="text-grey1 font-14">登录即代表同意</text>
- <text @click="handleUserAgrement" class="text-blue font-14">《用户协议》</text>
- <text @click="handlePrivacy" class="text-blue font-14">《隐私协议》</text>
- </view>
- </view>
-
- </view>
- </template>
- <script lang="uts">
- import { GlobalConfig } from '../config'
- import { getCodeImg } from '@/api/login'
- import {Login,GetInfo} from '@/store'
-
- type LoginForm={
- username: string,
- password: string,
- code: string,
- uuid: string
- }
-
- export default {
- data() {
-
- return {
- codeUrl: "" as string,
- captchaEnabled: false as boolean,
- // 用户注册开关
- register: true as boolean,
- globalConfig: getApp().globalData.config as UTSJSONObject,
- loginForm: {
- username: "admin",
- password: "admin123",
- code: "",
- uuid: ''
- } as UTSJSONObject
- }
- },
- created() {
- //this.getCode()
- },
- methods: {
- // 用户注册
- handleUserRegister() {
- uni.redirectTo({
- url: '/pages/register'
- });
- },
- // 隐私协议
- handlePrivacy() {
- let appInfo = this.globalConfig['appInfo'] as UTSJSONObject;
- let agreements = appInfo['agreements'] as UTSJSONObject[];
- let site = agreements[0] as UTSJSONObject;
- uni.navigateTo({
- url: `/pages/common/webview/index?title=${site.title}&url=${site.url}`
- });
- },
- // 用户协议
- handleUserAgrement() {
- let appInfo = this.globalConfig['appInfo'] as UTSJSONObject;
- let agreements = appInfo['agreements'] as UTSJSONObject[];
- let site = agreements[1] as UTSJSONObject;
- uni.navigateTo({
- url: `/pages/common/webview/index?title=${site.title}&url=${site.url}`
- });
- },
-
- // getCode() {
- // getCodeImg().then((res:UTSJSONObject) => {
- // this.captchaEnabled = res['captchaEnabled'] != null ? res['captchaEnabled'] as boolean : true
- // if (this.captchaEnabled) {
- // this.codeUrl = 'data:image/gif;base64,' + res.img as string
- // this.loginForm.uuid = res.uuid as string
- // }
- // })
- //},
- // 登录方法
- async handleLogin() {
- if (this.loginForm.username === "") {
- uni.showToast({
- title: '请输入您的账号',
- icon: 'error',
- duration: 2000
- });
- } else if (this.loginForm.password === "") {
- uni.showToast({
- title: '请输入您的密码',
- icon: 'error',
- duration: 2000
- });
- }
- /*
- else if (this.loginForm.code === "" && this.captchaEnabled) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'error',
- duration: 2000
- });
- }
- */
- else {
- uni.showLoading({
- title: '登录中,请耐心等待...'
- });
- this.pwdLogin()
- }
- },
- // 密码登录
- async pwdLogin() {
- Login(this.loginForm).then(() => {
- uni.hideLoading();
- this.loginSuccess()
- }).catch((e) => {
- console.log(e)
- if (this.captchaEnabled) {
- //this.getCode()
- }
- })
- },
- // 登录成功后,处理函数
- loginSuccess() {
- // 设置用户信息
- GetInfo().then(() => {
- uni.reLaunch({
- url: '/pages/work/index'
- });
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .my-page {
- background-color: #ffffff;
- width: 100%;
- height: 100%;
- }
- .normal-login-container {
- width: 100%;
- align-items: center;
- justify-content: center;
- .logo-content {
- width: 100%;
- padding-top: 15%;
- .my-image {
- border-radius: 4px;
- }
- .title {
- text-align: center;
- margin-left: 10px;
- font-size: 21px;
- margin-top: 15rpx;
- }
- }
- .login-form-content {
- /* #ifdef APP-NVUE */
- text-align: center;
- /* #endif */
- margin: 20px auto;
- margin-top: 15%;
- width: 80%;
- .input-item {
- margin: 10px 0;
- background-color: #f5f6f7;
- height: 45px;
- border-radius: 20px;
- .icon {
- /* #ifdef APP-NVUE */
- font-size: 38rpx;
- color: #999;
- /* #endif */
- margin-left: 10px;
- }
- .input {
- width: 100%;
- font-size: 14px;
- /* #ifdef APP-NVUE */
- line-height: 20px;
- /* #endif */
- text-align: left;
- padding-left: 15px;
- }
- }
- .login-btn {
- margin-top: 30px;
- height: 45px;
- }
-
- .reg {
- margin-top: 15px;
- flex-direction: row;
- }
-
- .xieyi {
- /* #ifdef APP-NVUE */
- color: #333;
- /* #endif */
- margin-top: 20px;
-
- }
-
- .login-code {
- height: 38px;
- width: 200rpx;
- .login-code-img {
- height: 38px;
- position: fixed;
- margin-left: -20px;
- width: 200rpx;
- }
- }
- }
- }
- </style>
|