123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <template>
- <!-- 页面头部 -->
- <header>
- <!-- 顶部导航 -->
- <nav class="headerNav">
- <div class="inner">
- <div class="left">
- <span>中农兴业网团</span>
- <span>
- 农业百强网站(科技文化类10强)
- </span>
- </div>
- <div class="right">
- <div class="menu">
- <button class="reg" @click="goTopic">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/topicon1.png" alt="商圈">商圈
- </button>
- <button class="reg" @click="goAdvertising">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/topicon2.png" alt="广告服务">广告服务
- </button>
- </div>
- <div class="right-top-menu">
- <button class="reg" @click="goLogin" v-show="!showToken">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/topicon3.png" alt="登录">登录
- </button>
- <button class="reg" @click="goRegister" v-show="!showToken">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/topicon4.png" alt="注册">注册
- </button>
- <button class="reg" @click="userCenter" v-show="showToken">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/topicon3.png" alt="用户信息">{{ username }}
- </button>
- <button class="reg" @click="goSearch">
- <img src="http://img.bjzxtw.org.cn/master/bjzxtw/public/head/searchicon.png" alt="搜索">搜索
- </button>
- </div>
- <ul class="userInfo11" v-if="isShow">
- <li @click="gotosystem">个人中心</li>
- <li @click="exit">退出</li>
- </ul>
- </div>
- </div>
- </nav>
- <!-- 头部logo -->
- <div class="headerLogo">
- <div class="inner">
- <img :src="logo" :alt="webSiteName" class="left" @click="backHome">
- <div class="titlead" v-if="adImg">
- <a href="http://sannongdy.org.cn/" v-if="adImg.image_url==null" target="_blank" :title="adImg.place_name">
- <img :src="adImg.thumb" :alt="adImg.place_name" data-tag="imgurl.ad_tag">
- </a>
- <a :href="adImg.image_url" v-else :title="adImg.ad_name">
- <img :src="adImg.image_src" :alt="adImg.ad_name" data-tag="imgurl.ad_tag">
- </a>
- </div>
- </div>
- </div>
- <el-dialog v-model="dialogTableVisible" title="" width="800">
- <div class="tips">
- <p>
- <img src="../../public/topic/tips.png" alt="">
- 提示:注册请联系管理员操作!
- </p>
- <p>
- 联系电话:010-56019387
- </p>
- <p>
- QQ : 2909421493 、213552413
- </p>
- </div>
- </el-dialog>
- </header>
- </template>
- <script setup>
- //1.加载基本依赖 start ---------------------------------------->
- import { ref, watch, onMounted } from 'vue'
- import { ElDialog } from 'element-plus'
- import { getToken, setToken, removeToken } from '@/store/useCookieStore'
- import { setTicket, removeTicket } from '@/store/useticketStore'
- //网站地址
- const { $webUrl, $CwebUrl, $BwebUrl, $LoginWebUrl } = useNuxtApp()
- //1.加载基本依赖 end ---------------------------------------->
- //1.登录逻辑 start ---------------------------------------->
- let ticket = ref('')
- let token = ref('')
- let route = useRoute()
- //页面每次刷新先判断一下用户状态是否已经过期了
- //如果没有过期再储存token
- ticket.value = route.query.ticket
- token.value = route.query.admintoken
- if (ticket.value) {
- setTicket(ticket.value)
- }
- if (token.value) {
- setToken(token.value)
- }
- //搜索框
- let keyword = useState('keyword', () => '')
- //用户名
- let username = useState('username', () => '用户中心')
- //是否删除
- let isDel = useState('isDel', () => 1)
- //是否显示用户中心
- let isShow = useState('isShow', () => false)
- let token1 = useState("token1", () => '')
- let showToken = useState("showToken", () => '')
- token1.value = getToken()
- //检测登录状态
- let tokenStatus = ref('');
- tokenStatus.value = getToken()
- if (tokenStatus.value == undefined) {
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- console.log('错误:未获取到用户token,如果在本地测试请忽略!');
- console.log("SSR waring ---------- SSR waring ---------- SSR waring ---------->")
- } else {
- console.log(tokenStatus.value);
- }
- //点击登录按钮
- let goLogin = () => {
- //开启线上登录模式 start---------------------------------------->
- isDel.value = 0
- token1.value = getToken()
- //王鹏
- window.open($BwebUrl + "/auth/login.php?backurl=" + $CwebUrl, '_blank');
- //刘佳伟
- //window.open($LoginWebUrl + "/api/goLogin?backurl=" + $CwebUrl, '_blank');
- //开启线上登录模式 end---------------------------------------->
- //开启本地登录模式 start---------------------------------------->
- // window.location.href = $BwebUrl + "/auth/login.php?backurl=" + $CwebUrl;
- //"http://adminpre.bjzxtw.org.cn/auth/login.php?backurl=http://nwpre.bjzxtw.org.cn";
- //开启本地登录模式 end---------------------------------------->
- }
- let dialogTableVisible = ref(false)
- //点击注册按钮
- let goRegister = () => {
- dialogTableVisible.value = true
- }
- //点击用户中心
- let userCenter = () => {
- if (isShow.value) {
- isShow.value = false
- return
- } else {
- isShow.value = true
- return
- }
- }
- //2.登录逻辑 end ---------------------------------------->
- //3.跳转菜单逻辑 start ---------------------------------------->
- let gotosystem = () => {
- let url = $BwebUrl + '/#/login?userurl=' + $CwebUrl;
- //window.location.href = url;
- window.open(url, '_blank');
- }
- //点击退出按钮
- let exit = () => {
- window.location.href = $CwebUrl;
- isDel.value = 1
- token1.value = getToken()
- let tokendata = getToken()
- console.log("用户退出登录======token为:", tokendata)
- //王鹏
- //let url = $BwebUrl + '/auth/logout.php?backurl=' + $CwebUrl + '&admintoken=' + tokendata;
- //刘佳伟
- let url = $LoginWebUrl + '/api/logout?backurl=' + $CwebUrl + '&admintoken=' + tokendata;
- window.location.href = url;
- removeToken()
- removeTicket()
- }
- //点击返回首页
- let backHome = () => {
- window.location.href = $CwebUrl;
- }
- //点击搜索按钮
- let goSearch = () => {
- const route = `/search/search?keyword=${keyword.value}`;
- window.location.href = route;
- }
- // 点击广告服务
- let goAdvertising = () => {
- //本地启动广告服务
- //window.open('/advertising?activeName=1', '_blank');
- //线上启动
- if (getToken()) {
- window.open($CwebUrl + '/advertising?activeName=1', '_blank');
- } else {
- goLogin()
- }
- }
- //点击商圈
- let goTopic = () => {
- if (getToken()) {
- window.open($CwebUrl + '/topic', '_blank');
- } else {
- goLogin()
- }
- }
- //监听token状态
- watch(token1, (newval, oldval) => {
- //console.log(newval, oldval);
- showToken.value = newval
- }, {
- deep: true,
- immediate: true,
- })
- //获得网站logo
- const logo = ref("")
- const webSiteName = ref("")
- let getLogo = async () => {
- const responseStatus = await requestDataPromise('/web/getWebsiteHead', {
- method: 'GET',
- query: {},
- });
- logo.value = responseStatus.data.logo;
- webSiteName.value = responseStatus.data.website_name;
- }
- getLogo();
- //3.跳转菜单逻辑 end ---------------------------------------->
- //4.获取广告 start ---------------------------------------->
- let adImg = ref({})
- //4.获取广告 end ---------------------------------------->
- //5.获取登录状态 start ---------------------------------------->
- onMounted(async () => {
- //从客户端获取登录状态
- //从客户端阶段开始 持续查询登录状态
- let getLoginStatus = async () => {
- const { $webUrl, $CwebUrl } = useNuxtApp();
- const queryParams = new URLSearchParams({
- token: getToken()
- });
- let url = `${$webUrl}/api/loginStatus?${queryParams.toString()}`
- const responseStatus = await fetch(url, {
- method: 'GET',
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- //'token': getToken(),
- 'Origin': $CwebUrl
- }
- });
- const result = await responseStatus.json();
- console.log(result)
- if (result.code == 200) {
- if (result.data.isLogin == true) {
- console.log("用户已经登录!");
- showToken.value = true;
- } else {
- console.log("用户未登录!");
- showToken.value = false;
- //退出登录
- isShow.value = false;
- removeToken();
- removeTicket();
- }
- } else {
- console.log("用户已退出登录!");
- //退出登录
- isShow.value = false;
- showToken.value = false;
- removeToken();
- removeTicket();
- }
- }
- getLoginStatus();
- setInterval(getLoginStatus, 3000);
- //从客户端获取广告
- //从客户端获取行政职能部门 加快打开速度
- const { $webUrl, $CwebUrl } = useNuxtApp();
- //广告1
- let url = `${$webUrl}/web/getWebsiteAdvertisement?ad_tag=snzxw_top`
- const responseAd1 = await fetch(url, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const resultAd1 = await responseAd1.json();
- adImg.value = resultAd1.data[0];
- //从客户端获取用户名
- let userInfoUrl = `${$webUrl}/user/getUserInfo`
- const userInfoResponse = await fetch(userInfoUrl, {
- headers: {
- 'Content-Type': 'application/json',
- 'Userurl': $CwebUrl,
- 'Origin': $CwebUrl
- }
- });
- const userInfo = await userInfoResponse.json();
- if (userInfo.code == 200) {
- username.value = userInfo.data.nickname
- }
- })
- //5.获取登录状态 end ---------------------------------------->
- </script>
- <style lang="less" scoped>
- @import url('@/assets/css/public/head.less');
- </style>
|