修改页面样式

This commit is contained in:
zhouyanli
2026-04-21 18:25:00 +08:00
parent b8fcaff48c
commit 244048985a
9 changed files with 201 additions and 321 deletions

View File

@@ -67,7 +67,7 @@
<script setup>
import { ref, computed } from 'vue';
import {onLoad} from "@dcloudio/uni-app"
import {getLoginPassword} from '/pages/api/api.js'
import {getLoginPassword} from '../api/api.js'
// 响应式数据
const phoneNumber = ref('');
@@ -112,39 +112,41 @@ const handleLogin = () => {
uni.showToast({ title: '请勾选协议', icon: 'none' });
return;
}
uni.showLoading({ title: '登录中...', mask: true });
let params = {
username:phoneNumber.value,
password:password.value
}
getLoginPassword(params).then(res =>{
// console.log('33333',res)
if(res.code === 200){
uni.setStorageSync('token', res.token);
uni.hideLoading();
uni.showToast({ title: '登录成功', icon: 'success' });
setTimeout(() => {
uni.switchTab({ url: '/pages/index/index' });
}, 1500);
}else{
uni.showToast({ title: `${res.msg},请先注册账号`, icon: 'error' });
}
// uni.showLoading({ title: '登录中...', mask: true });
// let params = {
// username:phoneNumber.value,
// password:password.value
// }
// getLoginPassword(params).then(res =>{
// // console.log('33333',res)
// if(res.code === 200){
// uni.setStorageSync('token', res.token);
// uni.hideLoading();
// uni.showToast({ title: '登录成功', icon: 'success' });
// setTimeout(() => {
// uni.switchTab({ url: '/pages/index/index' });
// }, 1500);
// }else{
// uni.showToast({ title: `${res.msg},请先注册账号`, icon: 'error' });
// }
}).catch(err => {
// console.error('登录接口异常:', err);
uni.showToast({
title: '网络异常',
icon: 'error'
});
})
// }).catch(err => {
// // console.error('登录接口异常:', err);
// uni.showToast({
// title: '网络异常',
// icon: 'error'
// });
// })
// 测试
// uni.showLoading({
// title: '登录中...'
// });
// setTimeout(() => {
// uni.switchTab({ url: '/pages/index/index' });
// }, 1500);
uni.showLoading({
title: '登录中...',
mask:true
});
setTimeout(() => {
uni.switchTab({ url: '/pages/index/index' });
}, 1500);
uni.hideLoading()
};
</script>