| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <template>
- <view class="content">
- <uni-icons class="setting" type="gear" @click="handleServerSettings" size="50" color="#fff"></uni-icons>
- <view class="login_logo">
- <image :src="logo || 'https://img.picgo.net/2024/04/18/login_logo45cb6a5eb95c8c1c.png'"></image>
- </view>
- <view class="login-title">
- <label>智慧工厂信息化系统</label>
- <text>{{ companyName }}</text>
- </view>
- <view>
- <view class="login-content">
- <view>
- <view class="form">
- <view class="login-input">
- <label class="icon-lable"></label>
- <input name="input" v-model="userInfo.username" placeholder="请输入账号" />
- </view>
- <view class="login-input">
- <label class="icon-lable2"></label>
- <input class="" name="input" password v-model="userInfo.passwd" placeholder="请输入密码" />
- </view>
- <button @click="submit">登录</button>
- <view class="password-memo">
- <checkbox-group @change="checkboxChange">
- <label>
- <checkbox value="1" :checked="isMemo" />
- 记住密码
- </label>
- </checkbox-group>
- </view>
- </view>
- </view>
- </view>
- </view>
- <ServerSetting ref="serverSettingRef" @setServerStatus="setServerStatus" />
- </view>
- </template>
- <script>
- import { postJ } from '@/utils/api.js'
- import { login, usName } from '@/api/common.js'
- import { getResourcesTree } from '@/api/pda/common.js'
- import { setMemo, isMemo, removeMemo, setPassword, getPassword } from '@/utils/passwordMemo.js'
- import ServerSetting from '@/components/ServerSetting/index'
- export default {
- components: {
- ServerSetting
- },
- data() {
- return {
- userInfo: {
- username: '',
- passwd: ''
- },
- isMemo: isMemo(),
- loginDisabled: false,
- companyName: null,
- logo: null
- }
- },
- onLoad() {
- if (this.isMemo) {
- const userInfo = getPassword()
- if (userInfo?.username) this.userInfo = userInfo
- }
- this.getUsName()
- },
- mounted() {
- // #ifdef APP-PLUS
- this.$nextTick(() => {
- this.$refs.serverSettingRef && this.$refs.serverSettingRef.serverCheck()
- })
- // #endif
- // uni.reLaunch({
- // url: "/pages/home/home",
- // });
- },
- methods: {
- getUsName() {
- usName().then(res => {
- this.companyName = res.companyName
- this.logo = res.logo
- })
- },
- setServerStatus(val) {
- this.loginDisabled = !val
- },
- //登录
- // submit() {
- // // #ifdef APP-PLUS
- // if (!this.apiUrl) {
- // this.$refs.serverSettingRef.open();
- // return;
- // }
- // // #endif
- // const params = {
- // loginName: this.userInfo.username,
- // loginPwd: this.userInfo.passwd,
- // };
- // login(params)
- // .then((res) => {
- // if (this.isMemo) {
- // setPassword(this.userInfo);
- // }
- // let data = res.data;
- // uni.setStorageSync("token", data.token);
- // uni.setStorageSync("userInfo", data);
- // uni.showToast({
- // title: "登录成功",
- // icon: "success",
- // duration: 2000,
- // });
- // setTimeout(() => {
- // uni.reLaunch({
- // url: "/pages/home/home",
- // });
- // }, 2000);
- // })
- // .catch((err) => {
- // console.log(err, 222);
- // uni.showToast({
- // title: err.message || err,
- // icon: "none",
- // duration: 2000,
- // });
- // });
- // },
- //登录
- submit() {
- // #ifdef APP-PLUS
- if (!this.apiUrl) {
- this.$refs.serverSettingRef.open()
- return
- }
- // #endif
- let param = {
- loginName: this.userInfo.username,
- loginPwd: this.userInfo.passwd
- }
- postJ(this.apiUrl + '/main/user/login', param)
- .then(res => {
- if (this.isMemo) {
- setPassword(this.userInfo)
- }
- console.log(res)
- let data = res.data
- uni.setStorageSync('token', data.token)
- uni.setStorageSync("userInfo", data);
- uni.showToast({
- title: '登录成功',
- icon: 'success',
- duration: 2000
- })
- this.getTree()
- setTimeout(() => {
- uni.reLaunch({
- url: '/pages/home/home'
- })
- }, 2000)
- })
- .catch(err => {
- uni.showToast({
- title: err.message,
- icon: 'none',
- duration: 2000
- })
- })
- },
- handleServerSettings() {
- this.$refs.serverSettingRef.open()
- },
- checkboxChange(e) {
- this.isMemo = e.detail.value[0] === '1'
- if (this.isMemo) {
- setMemo()
- } else {
- removeMemo()
- }
- },
- getTree() {
- getResourcesTree().then(res => {
- console.log(res)
- if (res.length == 0) {
- uni.showToast({
- title: '您还未配置权限',
- icon: 'none'
- })
- }
- let List = JSON.stringify(res || [])
- uni.setStorageSync('treeList', List)
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import 'login.scss';
- </style>
|