jiangchengfeiyi-xiaochengxu/pages/login/login.vue
2025-02-19 12:06:34 +08:00

162 lines
3.5 KiB
Vue

<template>
<view class="flex-col items-start relative page">
<view class="section_2"></view>
<image
class="image"
src="https://ide.code.fun/api/image?token=6784b7164ae84d0012235720&name=4f57dc3a50dc99c58860b6ef6a6aafb0.png"
/>
<text class="font pos_2"></text>
<text class="font pos_4"></text>
<view class="section_3 pos_5"></view>
<view class="flex-col justify-start items-center text-wrapper pos_6" @click="login">
<text class="text">微信登陆</text>
</view>
</view>
<!-- </view> -->
</template>
<script setup>
import { ref } from 'vue'
import { baseUrl, testUrl , suiUrl} from '@/api/request';
import { onMounted } from 'vue';
onMounted(()=>{
getFonts() //获取字体
})
const login = () => {
uni.login({
provider: 'weixin', //使用微信登录
success: function (loginRes) {
if (loginRes.code !== null) {
console.log("获取code:" + loginRes.code)
loginUser(loginRes.code);
} else {
console.log("code为空");
}
}
})
}
//非遗
const loginUser = async ( code ) =>{
const res = await uni.request({
url: baseUrl + '/user/login/wx_open',
method: 'GET',
data: {
code: code
}
})
console.log('loginUser后台返回的==>',res.header['Set-Cookie']);
uni.removeStorageSync('cookie');
uni.setStorageSync("cookie",res.header['Set-Cookie']); //保存setStorageSync到
if(res.data.code == 1) {
uni.showToast({
title: '登录成功',
duration: 2000 //提示两秒
})
uni.setStorageSync('userInfo',res.data.data);
uni.switchTab({
url: '/pages/home/home'
})
} else {
uni.showToast({
icon: 'error',
title: "登录失败,请重试"
})
return;
}
}
const getFonts =()=>{ //获取字体
uni.loadFontFace({
family: 'FangZhengXiaoZhuan',
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengXiaoZhuan.ttf")`,
success:(res) =>{
console.log('success',res);
},
fail:(err) => {
console.log('err',err);
}
})
uni.loadFontFace({
family: 'FangZhengFonts',
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
success:(res) =>{
console.log('success',res);
},
fail:(err) => {
console.log('err',err);
}
})
}
</script>
<style lang="scss" scoped>
.page {
padding-left: 118.13rpx;
background-image: url('https://ide.code.fun/api/image?token=6784b7164ae84d0012235720&name=748c723c0b3ea17eb04647d0879f9b81.png');
background-size: 100% 100%;
background-repeat: no-repeat;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
.section_2 {
margin-left: 256.88rpx;
background-color: #9d2624;
width: 1.88rpx;
height: 388.13rpx;
}
.image {
margin-top: 136.88rpx;
opacity: 0.35;
width: 631.88rpx;
height: 907.5rpx;
}
.font {
font-size: 240rpx;
font-family: FangZhengXiaoZhuan;
line-height: 288.75rpx;
color: #9d2624;
}
.pos_2 {
position: absolute;
right: 257.56rpx;
top: 462.19rpx;
}
.pos_4 {
position: absolute;
left: 50%;
bottom: 414.38rpx;
transform: translateX(-50%);
}
.section_3 {
background-color: #9d2624;
width: 1.88rpx;
height: 418.13rpx;
}
.pos_5 {
position: absolute;
left: 50%;
top: 1014.38rpx;
transform: translateX(-50%);
}
.text-wrapper {
padding: 27.54rpx 0 28.82rpx;
background-color: #ffffff;
border-radius: 37.5rpx 0 0 37.5rpx;
width: 204rpx;
}
.pos_6 {
position: absolute;
right: 0;
top: 1348.13rpx;
}
.text {
color: #000000;
font-size: 30rpx;
font-family: FangZhengFonts;
line-height: 28.01rpx;
text-transform: capitalize;
}
@import url(../../common/css/global.css);
</style>