parent
fcb8a108a1
commit
100ede565e
@ -1,73 +1,73 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="lottie-bg">
|
<view class="lottie-bg">
|
||||||
<view id="lottie">
|
<view id="lottie">
|
||||||
<image src="/static/img/live-logo.gif" rel="preload" />
|
<!-- <image src="/static/img/live-logo.gif" rel="preload" /> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import wechat from "@/libs/wechat";
|
import wechat from "@/libs/wechat";
|
||||||
import {
|
import {
|
||||||
getUserInfo
|
getUserInfo
|
||||||
} from "@/api/user";
|
} from "@/api/user";
|
||||||
export default {
|
export default {
|
||||||
name: "Auth",
|
name: "Auth",
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
||||||
},
|
},
|
||||||
onLoad(option) {
|
onLoad(option) {
|
||||||
let that = this
|
let that = this
|
||||||
const {
|
const {
|
||||||
code,
|
code,
|
||||||
state
|
state
|
||||||
} = option;
|
} = option;
|
||||||
wechat.auth(code, state)
|
wechat.auth(code, state)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
getUserInfo().then(res => {
|
getUserInfo().then(res => {
|
||||||
location.href = decodeURIComponent(
|
location.href = decodeURIComponent(
|
||||||
decodeURIComponent(option.back_url)
|
decodeURIComponent(option.back_url)
|
||||||
);
|
);
|
||||||
}).catch(res => {
|
}).catch(res => {
|
||||||
console.log('getUserInfo错误='+res);
|
console.log('getUserInfo错误=' + res);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
console.log('auth错误='+err);
|
console.log('auth错误=' + err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.lottie-bg {
|
.lottie-bg {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#lottie {
|
#lottie {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
transform: translate3d(0, 0, 0);
|
transform: translate3d(0, 0, 0);
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
||||||
image {
|
image {
|
||||||
width: 200rpx;
|
width: 200rpx;
|
||||||
height: 200rpx;
|
height: 200rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,59 +1,60 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang=zh-CN>
|
<html lang=zh-CN>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1">
|
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1,minimum-scale=1">
|
||||||
<title>CRMEB</title>
|
<title>甄味馆</title>
|
||||||
<meta name="Copyright" content="helang">
|
<meta name="Copyright" content="helang">
|
||||||
<!-- <link rel="shortcut icon" type="image/png" href="/uniapp-extend/static/logo.png"> -->
|
<!-- <link rel="shortcut icon" type="image/png" href="/uniapp-extend/static/logo.png"> -->
|
||||||
<meta name="keywords" content="CRMEB">
|
<meta name="keywords" content="甄味馆">
|
||||||
<meta name="description" content="CRMEB">
|
<meta name="description" content="甄味馆">
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
body{
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
iframe{
|
|
||||||
width: 375px;
|
iframe {
|
||||||
height: 667px;
|
width: 375px;
|
||||||
background-color: #fff;
|
height: 667px;
|
||||||
/* box-sizing: content-box; */
|
background-color: #fff;
|
||||||
box-sizing: border-box;
|
/* box-sizing: content-box; */
|
||||||
border: none;
|
box-sizing: border-box;
|
||||||
}
|
border: none;
|
||||||
|
}
|
||||||
@media screen and (min-width: 450px) {
|
|
||||||
iframe {
|
@media screen and (min-width: 450px) {
|
||||||
position: fixed;
|
iframe {
|
||||||
top: 0;
|
position: fixed;
|
||||||
right: 0;
|
top: 0;
|
||||||
bottom: 0;
|
right: 0;
|
||||||
left: 0;
|
bottom: 0;
|
||||||
margin: auto;
|
left: 0;
|
||||||
border: 1px solid #f5f5f5;
|
margin: auto;
|
||||||
border-radius: 4px;
|
border: 1px solid #f5f5f5;
|
||||||
}
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
</style>
|
}
|
||||||
<script type="text/javascript">
|
</style>
|
||||||
window.isPC = true;
|
<script type="text/javascript">
|
||||||
window.onload = function(){
|
window.isPC = true;
|
||||||
/* 监听电脑浏览器窗口尺寸改变 */
|
window.onload = function() {
|
||||||
if(window.innerWidth <= 420){
|
/* 监听电脑浏览器窗口尺寸改变 */
|
||||||
window.location.pathname = '/';
|
if (window.innerWidth <= 420) {
|
||||||
}
|
window.location.pathname = '/';
|
||||||
}
|
}
|
||||||
</script>
|
}
|
||||||
</head>
|
</script>
|
||||||
<body>
|
</head>
|
||||||
<!-- <iframe src="https://java.crmeb.net/"></iframe> -->
|
<body>
|
||||||
<!--若你的项目未设置根目录(默认为 / 时),则使用下方代码-->
|
<!-- <iframe src="https://java.crmeb.net/"></iframe> -->
|
||||||
<iframe src="/" id="iframe"></iframe>
|
<!--若你的项目未设置根目录(默认为 / 时),则使用下方代码-->
|
||||||
<script src="https://pv.sohu.com/cityjson?ie=utf-8"></script>
|
<iframe src="/" id="iframe"></iframe>
|
||||||
<script type="text/javascript">
|
<script src="https://pv.sohu.com/cityjson?ie=utf-8"></script>
|
||||||
var Ip=returnCitySN['cip']
|
<script type="text/javascript">
|
||||||
localStorage.setItem('Ip', Ip)
|
var Ip = returnCitySN['cip']
|
||||||
</script>
|
localStorage.setItem('Ip', Ip)
|
||||||
</body>
|
</script>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 89 KiB |
Loading…
Reference in new issue