| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <div class="navigate">
- <div class="partOne">
- <div class="inner">
- <div class="navLeft">
- <div class="navIndex">
- <NuxtLink :to="'/'" title="首页">首页</NuxtLink>
- </div>
- <div class="navClass">
- <div>
- 商城类
- </div>
- <div>
- 资讯类
- </div>
- </div>
- </div>
- <ul class="navigationOne">
- <li v-for="(item, index) in navigation1" :key="index">
- <NuxtLink :href="getLinkPath(item)" :title="item.alias" v-if="index <= 23"
- :target="item.is_url == 1 ? '_blank' : '_self'">
- {{ item.alias }}
- </NuxtLink>
- </li>
- </ul>
- </div>
- </div>
- <!-- 深度服务 -->
- <div class="deepServer">
- <div class="inner">
- <div class="deepServer_left">
- <div class="serverTitle">
- 深度服务
- </div>
- <ul class="contentList">
- <li v-for="(item, index) in navigation2" :key="index">
- <NuxtLink :href="getLinkPath(item)" :title="item.alias"
- :target="item.is_url == 1 ? '_blank' : '_self'">
- {{ item.alias }}
- </NuxtLink>
- </li>
- </ul>
- </div>
- <div class="deepServer_right">
- <div class="serverTitle_right">
- 站内搜索:
- </div>
- <div class="searchRole">
- <el-select v-model="selectValue" placeholder="请选择.." size="large" style="width: 100px">
- <el-option v-for="(item, index) in selectOptions" :key="index" :label="item.name"
- :value="item.id" />
- </el-select>
- <i></i>
- <input type="text" v-model="inputValue" placeholder="输入关键词" class="ipt">
- <em @click="goToPrimary"></em>
- </div>
- </div>
- </div>
- </div>
- <div class="phone_nav pc_none">
- <div class="phone_nav_in">
- <NuxtLink
-
- to="/" title="首页"
- class="phone_nav_index"
- :class="{ 'phone_nav_index_only': $route.path === '/' }"
- >
- 首页
- </NuxtLink>
-
- <div class="phone_nav_a_box">
-
- <NuxtLink
- v-for="(item, index) in navigation1" :key="index"
- :href="getLinkPath(item)"
- :title="item.alias"
- :target="item.is_url == 1 ? '_blank' : '_self'">
- {{ item.alias }}
- </NuxtLink>
- </div>
-
- </div>
- </div>
- </div>
- </template>
- <script setup>
- //1.获取导航菜单 start ---------------------------------------->
- //第一行导航菜单 10个
- const navigation1 = ref([]);
- //两行的导航菜单 20个
- const navigation2 = ref([]);
- //获取导航菜单1
- async function getNavigation1() {
- const mkdata = await requestDataPromise('/web/getWebsiteModelCategory', {
- method: 'GET',
- query: {
- 'pid': 0,
- 'num': 20,
- 'placeid': 1
- },
- });
- navigation1.value = mkdata.data;
- console.log("导航菜单1", navigation1.value);
- }
- getNavigation1();
- //获取导航菜单2
- async function getNavigation2() {
- const mkdata = await requestDataPromise('/web/getWebsiteModelCategory', {
- method: 'GET',
- query: {
- 'pid': 0,
- 'num': 4,
- 'placeid': 21
- },
- });
- navigation2.value = mkdata.data;
- }
- getNavigation2();
- //1.获取导航菜单 end ---------------------------------------->
- //2.搜索 start ---------------------------------------->
- import { ElSelect, ElOption, ElMessage } from 'element-plus'
- let selectOptions = [ //下拉框选项
- { name: '资讯', id: 1 },
- { name: '商城', id: 2 },
- { name: '招聘', id: 4 },
- { name: '求职', id: 5 },
- ]
- const selectValue = ref("") //搜索左侧下拉选择的值
- const inputValue = ref("") //搜索右侧框输入的值
- //2.1跳转到搜索页面
- let goToPrimary = async () => {
- if (selectValue.value == "") {
- ElMessage.error('搜索项类型不能为空!')
- } else {
- const route = `/search/search?type=${selectValue.value}&keyword=${inputValue.value}`;
- window.location.href = route;
- }
- }
- //2.搜索 end ---------------------------------------->
- </script>
- <style lang="less" scoped>
- @import url('@/assets/css/public/nav.less');
- </style>
- <style lang="less" scoped>
-
- @media screen and (min-width:801px){/*pc*/
-
-
- .pc_none{display:none;}
- }
- @media screen and (max-width:800px){/*ipad_phone*/
- .phone_nav{
- width:100%;margin:10px auto 0;
- height:44px;background:#255590;
- }
-
- .phone_nav_in{height:44px;width:92%;margin:0px auto;}
- .phone_nav_index{height:44px;line-height:44px;font-size:16px;float:left;
- color:rgba(255, 255, 255,.6);;margin-right:20px;}
- .phone_nav_a_box{height:44px;
- overflow-x:auto;overflow-y:hidden;word-break: keep-all; white-space: nowrap;
- }
- .phone_nav_a_box::-webkit-scrollbar{height:0px;}
- .phone_nav_a_box a{display:inline-block;height:44px;line-height:44px;font-size:16px;margin:0 10px;
- color:rgba(255, 255, 255,.6);}
- .phone_nav_a_box a:nth-of-type(1){margin-left:0px;}
- .phone_nav_index_only{ color:#fff; font-weight:bold;}
- .phone_nav_a_box a.router-link-exact-active{color:#fff;font-weight:bold;}
- .partOne{display:none;}
- .deepServer{display:none;}
- .littleNav{display:none;}
- .phone_none{display:none;}
- }
- </style>
|