layout.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <div>
  3. <div class="tabBox">
  4. <div class="main">
  5. <img src="../assets/image/56454@2x.png" alt="" class="logo">
  6. <el-menu
  7. :router="true"
  8. :default-active="activeIndex"
  9. class="el-menu"
  10. mode="horizontal"
  11. :ellipsis="false"
  12. text-color="#666666"
  13. active-text-color="#16542D"
  14. @select="handleSelect"
  15. >
  16. <el-menu-item index="index">首页</el-menu-item>
  17. <el-menu-item index="special">专题</el-menu-item>
  18. <el-menu-item index="meal">数据套餐</el-menu-item>
  19. <el-menu-item index="about">关于我们</el-menu-item>
  20. <el-menu-item :index="item.url" v-for="(item,index) in navList" :key="index">{{item.title}}</el-menu-item>
  21. </el-menu>
  22. <div class="login" @click="dialogTableVisible=true" v-if="!isLogin">
  23. 注册/登录
  24. </div>
  25. <div class="login" v-else>
  26. <img :src="info.headimg" alt="">
  27. <el-dropdown trigger="click" @command="changeDropdown">
  28. <span class="el-dropdown-link">
  29. {{info.name}}<el-icon class="imgPosition"><CaretBottom /></el-icon>
  30. </span>
  31. <template #dropdown>
  32. <el-dropdown-menu>
  33. <el-dropdown-item :icon="UserFilled" command="1">
  34. 个人中心
  35. </el-dropdown-item>
  36. <el-dropdown-item :icon="SwitchButton" command="2">退出登录</el-dropdown-item>
  37. </el-dropdown-menu>
  38. </template>
  39. </el-dropdown>
  40. </div>
  41. </div>
  42. </div>
  43. <LoginBox @toMent="toMent" :openid="openid" @getInfo="getInfo" v-model="dialogTableVisible"/>
  44. <router-view v-slot="{ Component }">
  45. <keep-alive>
  46. <component :is="Component" v-if="router.currentRoute.value.meta.keepAlive" :key="router.currentRoute.value.name"/>
  47. </keep-alive>
  48. <component :is="Component" v-if="!router.currentRoute.value.meta.keepAlive" :key="router.currentRoute.value.name"/>
  49. </router-view>
  50. <div class="message u-flex u-col-center" v-if="router.currentRoute.value.name!='profile'" @click="toMessage">
  51. <img src="../assets/image/message.png" alt="">
  52. <span>留言板</span>
  53. </div>
  54. <img :src="advList[0].logo" @click="toAdv(0)" class="slide slideLeft" alt="" v-show="activeIndex=='index'" v-if="advList.length>0">
  55. <div class="slide slideRight" v-show="activeIndex=='index'">
  56. <img :src="advList[1].logo" @click="toAdv(1)" alt="" v-if="advList.length>1">
  57. <img :src="advList[2].logo" @click="toAdv(2)" alt="" v-if="advList.length>2">
  58. </div>
  59. <div class="bottom">
  60. <div class="content">
  61. <div class="contact">
  62. <span style="margin-right: 40px;">联系我们:{{baseInfo.phone}}</span> 公司地址:{{baseInfo.address}}
  63. </div>
  64. <div class="copyright">
  65. {{configInfo.archival_information}}
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </template>
  71. <script setup>
  72. import {useRouter } from "vue-router"
  73. import {onMounted ,ref,provide, watch} from "vue"
  74. import LoginBox from '../components/LoginBox.vue'
  75. import { member_info,WeChat_login,config_info,adv_list,about_us,navigation_list} from "@/utils/api";
  76. import { ElMessage, ElMessageBox } from 'element-plus'
  77. import {
  78. UserFilled,
  79. SwitchButton,CaretBottom,CircleCloseFilled
  80. } from '@element-plus/icons-vue'
  81. const router=useRouter()
  82. let configInfo=ref({})
  83. let info=ref({})
  84. let openid=ref('')
  85. let advList=ref([])
  86. let baseInfo=ref({})
  87. const activeIndex = ref('/')
  88. watch(()=>router.currentRoute.value.name,(newVal,oldVal)=>{
  89. activeIndex.value=newVal
  90. },{ immediate: true })
  91. onMounted(()=>{
  92. console.log('getQueryString',getQueryString());
  93. let obj=getQueryString()
  94. if(obj.code){
  95. WeChat_login({code:obj.code}).then(res=>{
  96. if(res.data.openid){
  97. openid.value=res.data.openid
  98. dialogTableVisible.value=true
  99. }
  100. if(res.data.token){
  101. localStorage.setItem('token',res.data.token)
  102. window.location.href='https://zhitq.hdlkeji.com/dist'
  103. }
  104. })
  105. }
  106. about_us().then(res=>{
  107. baseInfo.value=res.data
  108. })
  109. getNavigation()
  110. getAdvList()
  111. getConfig()
  112. if(localStorage.getItem('token')){
  113. getInfo()
  114. }
  115. activeIndex.value=router.currentRoute.value.name
  116. })
  117. function getQueryString() {
  118. let data = {};
  119. let src = window.location.href;
  120. let index = src.indexOf("?");
  121. if (index === -1) {
  122. return data;
  123. }
  124. let dataStr = src.substring(src.indexOf("?") + 1);
  125. let dataArray = dataStr.split("&");
  126. dataArray.forEach((str)=>{
  127. let param =str.split("=");
  128. data[param[0]] = param[1];
  129. })
  130. return data;
  131. }
  132. let navList=ref([])
  133. let getNavigation=()=>{
  134. navigation_list().then(res=>{
  135. navList.value=res.data
  136. })
  137. }
  138. let toAdv=(index)=>{
  139. window.location.href=advList.value[index].url
  140. }
  141. let getAdvList=()=>{
  142. adv_list().then(res=>{
  143. advList.value=res.data
  144. })
  145. }
  146. let getConfig=()=>{
  147. config_info().then(res=>{
  148. configInfo.value=res.data
  149. })
  150. }
  151. let toMessage=()=>{
  152. if(!isLogin.value){
  153. // ElMessage.error('请先登录')
  154. dialogTableVisible.value=true
  155. return
  156. }
  157. router.push('/profile?current=2')
  158. }
  159. provide('provideData',{
  160. toLogin:()=>{
  161. dialogTableVisible.value=true
  162. }
  163. })
  164. let getInfo=()=>{
  165. member_info().then(res=>{
  166. console.log('res',res);
  167. info.value=res.data
  168. isLogin.value=true
  169. dialogTableVisible.value=false
  170. })
  171. }
  172. let toMent=()=>{
  173. dialogTableVisible.value=false
  174. router.push('text')
  175. }
  176. let isLogin=ref(false)
  177. let dialogTableVisible=ref(false)
  178. const handleSelect = (key, keyPath) => {
  179. console.log(key, keyPath)
  180. if(key.length>=8){
  181. activeIndex.value='index'
  182. // window.location.href=key
  183. window.open(key, '_blank');
  184. }
  185. }
  186. let changeDropdown=(e)=>{
  187. if(e==1){
  188. router.push('/profile')
  189. }
  190. if(e==2){
  191. ElMessageBox.confirm(
  192. '确定要退出登录吗?',
  193. '提示',
  194. {
  195. confirmButtonText: '确定',
  196. cancelButtonText: '取消',
  197. type: 'warning',
  198. }
  199. )
  200. .then(() => {
  201. localStorage.removeItem('token')
  202. isLogin.value=false
  203. ElMessage({
  204. type: 'success',
  205. message: '已成功退出',
  206. })
  207. })
  208. .catch(() => {
  209. })
  210. }
  211. }
  212. const goSearch=()=>{
  213. router.push('/search')
  214. }
  215. const goLogin=()=>{
  216. router.push('/login')
  217. }
  218. const goEntrust=()=>{
  219. router.push('/entrust')
  220. }
  221. </script>
  222. <style lang="scss" scoped>
  223. .login{
  224. display: flex;
  225. align-items: center;
  226. img{
  227. width: 48px;
  228. height: 48px;
  229. margin-right: 12px;
  230. border-radius: 50%;
  231. }
  232. .imgPosition{
  233. margin-top: 5px;
  234. }
  235. }
  236. .slide{
  237. z-index: 999;
  238. position: fixed;
  239. top: 590px;
  240. }
  241. .slideLeft{
  242. left: 20px;
  243. width: 210px;
  244. height: 440px;
  245. border-radius: 10px;
  246. }
  247. .slideRight{
  248. display: flex;
  249. flex-direction: column;
  250. right: 20px;
  251. img{
  252. width: 210px;
  253. height: 210px;
  254. border-radius: 10px;
  255. margin-bottom: 10px;
  256. }
  257. }
  258. .message{
  259. position: fixed;
  260. top: 460px;
  261. right: 30px;
  262. padding-top: 10px;
  263. font-size: 14px;
  264. font-weight: bold;
  265. width: 80px;
  266. height: 110px;
  267. background: #FFFFFF;
  268. border-radius: 10px;
  269. img{
  270. width:60px;
  271. height: 60px;
  272. margin-bottom: 9px;
  273. }
  274. }
  275. .bottom{
  276. // position: fixed;
  277. // z-index: 1000;
  278. // bottom: 0;
  279. width: 100%;
  280. height: 224px;
  281. background: #494949;
  282. .content{
  283. color: #fff;
  284. width: 1200px;
  285. margin: 0 auto;
  286. .contact{
  287. line-height: 140px;
  288. border-bottom: 1px solid #fff;
  289. }
  290. .copyright{
  291. line-height: 82px;
  292. }
  293. }
  294. }
  295. .tabBox{
  296. width: 100%;
  297. height: 80px;
  298. background: #FFFFFF;
  299. .main{
  300. height: 80px;
  301. display: flex;
  302. align-items: center;
  303. justify-content: space-between;
  304. width:1200px;
  305. margin: 0 auto;
  306. .logo{
  307. line-height: 80px;
  308. width: 101px;
  309. height: 47px;
  310. }
  311. .el-menu{
  312. height:80px;
  313. }
  314. }
  315. }
  316. </style>