user.vue
3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!-- 用户密码登录 -->
<template>
<!-- 公用nav -->
<view class="navBox"><uni-nav-bar title="地利物流" :border="false" /></view>
<!-- end -->
<view class="loginBox">
<view class="tit">
<text>账号登录</text>
<text class="text" @click="goLogin">
手机号登录
<icon></icon>
</text>
</view>
<!-- 登录表单 -->
<view class="loginMain">
<uni-forms ref="customForm" :rules="customRules" :modelValue="fromInfo">
<uni-forms-item name="account"><uni-easyinput class="item" v-model="fromInfo.account" placeholder="请输入账号" /></uni-forms-item>
<uni-forms-item name="password">
<uni-easyinput class="item" :type="showPassword ? 'text' : 'password'" v-model="fromInfo.password" placeholder="请输入密码" />
</uni-forms-item>
</uni-forms>
<!-- 按钮 -->
<view class="btnBox" style="padding-top:100rpx;">
<text class="button"
:class="fromInfo.account.length === 0 || fromInfo.password.length === 0 ? 'buttonDis1' : 'button'"
@click="handleSubmit"
>登 录</text>
</view>
<!-- 更新请求Url - 教学需求 -->
<view class="setUrl" @click="inputDialogToggle">
配置请求url
</view>
<uni-popup ref="inputDialog" type="dialog">
<uni-popup-dialog ref="inputClose" mode="input" title="配置URL" :value="baseURL"
placeholder="请输入baseURL" @confirm="dialogInputConfirm"></uni-popup-dialog>
</uni-popup>
<!-- 更新请求Url - 教学需求 -->
<!-- end -->
</view>
<!-- end -->
</view>
</template>
<script setup>
import { ref, reactive, onMounted } from 'vue';
import { useStore } from 'vuex';
// 接口
import { userLogins, getUserInfo } from '../api/user.js';
// ------定义变量------
const store = useStore(); //vuex获取储存数据
const showPassword = ref(false); //控制密码右侧图标显示隐藏
const customForm = ref(); //表单校验
// 表单数据
const fromInfo = reactive({
account: 'hzsj', //账号
password: '123456' // 密码
});
// 表单校验
const customRules = reactive({
account: {
rules: [
{
required: true,
errorMessage: '请输入手机号'
}
]
},
password: {
rules: [
{
required: true,
errorMessage: '请输入验证码'
}
]
}
});
// ------声明周期------
onMounted(() => {
// 进入登录页面配置默认的请求url
// uni.setStorageSync('baseUrl', '')
// 处理定时上报位置的定时器
const positions = uni.getStorageSync('positions')
if(positions?.timer) {
clearInterval(uni.getStorageSync('positions').timer)
uni.setStorageSync('positions', null)
}
});
// ------定义方法------
// 登录
const handleSubmit = async () => {
// // 表单校验
const valid = await customForm.value.validate();
if (valid) {
// 网络慢的时候添加按钮loading
let times =
setTimeout(()=>{
uni.showLoading({
title: 'loading',
mask:true
});
},500)
// 登录接口
await userLogins(fromInfo)
.then(res => {
if (res.code === 200) {
// 操作成功后清除loading
setTimeout(function () {
uni.hideLoading();
}, 500);
clearTimeout(times)
store.commit('user/setToken', res.data);
// 通过vuex获取用户信息
store.dispatch('user/GetUsersInfo')
// 跳转到首页
uni.navigateTo({
url: '/pages/index/index'
});
} else {
return uni.showToast({
title: res.data.msg || '请求失败!',
duration: 1000,
icon: 'none'
});
}
})
.catch(err => {});
}
};
// 去手机登录页面
const goLogin = () => {
uni.navigateTo({
url: '/pages/login/index'
});
};
// 设置密码
const handlePwd = () => {
showPassword.value = !showPassword.value;
};
// 打开设置Url窗口
const baseURL = ref(uni.getStorageSync('baseUrl'))
const inputDialog = ref(null)
const inputDialogToggle = () => {
inputDialog.value.open()
}
// 报错配置的Url
const dialogInputConfirm = (val) => {
baseURL.value = val
uni.setStorageSync('baseUrl', val)
}
</script>
<style src="./index.scss" lang="scss" scoped></style>