d9b1f529 by zhangmeng

首页

1 parent 861fec54
...@@ -209,6 +209,8 @@ li.el-select-dropdown__item { ...@@ -209,6 +209,8 @@ li.el-select-dropdown__item {
209 } 209 }
210 } 210 }
211 211
212 //字体设置;
213
212 @media (max-width: 1600px) { 214 @media (max-width: 1600px) {
213 .el-menu--horizontal > .el-menu-item { 215 .el-menu--horizontal > .el-menu-item {
214 padding: 0 15px; 216 padding: 0 15px;
......
...@@ -2,7 +2,11 @@ ...@@ -2,7 +2,11 @@
2 <div class="topNav"> 2 <div class="topNav">
3 <router-link to="/"> 3 <router-link to="/">
4 <!-- <img class="logo" src="@/assets/v1/nav_logo.png">--> 4 <!-- <img class="logo" src="@/assets/v1/nav_logo.png">-->
5 <img class="logo" src="/img/logo.png"> 5 <!-- <img class="logo" src="/img/logo.png">-->
6 <div style="display: flex;">
7 <img class="logo" src="@/assets/pc/bottom_logo.png">
8 <img class="logo" src="@/assets/pc/logo2.png">
9 </div>
6 </router-link> 10 </router-link>
7 11
8 <div class="home-menu forPc"> 12 <div class="home-menu forPc">
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
7 append-to-body 7 append-to-body
8 class="searchpp" 8 class="searchpp"
9 destroy-on-close 9 destroy-on-close
10 style="padding-top: 10px" 10 style="padding-top: 50px"
11 title="搜索" 11 title="搜索"
12 top="80px" 12 top="80px"
13 width="80vw" 13 width="80vw"
......
1 <template> 1 <template>
2 <el-dialog 2 <el-dialog
3 v-model="show" class="searchpp" width="80vw" append-to-body title="SEARCH" 3 v-model="show"
4 :close-on-click-modal="true"
5 :modal="false"
6 :show-close="true"
7 append-to-body
8 class="searchpp"
9 destroy-on-close
10 style="padding-top: 50px"
11 title="SEARCH"
4 top="80px" 12 top="80px"
5 destroy-on-close :show-close="true" :close-on-click-modal="true" :modal="false" 13 width="80vw"
6 > 14 >
7 <div class="searchBody"> 15 <div class="searchBody">
8 <div class="searchline"> 16 <div class="searchline">
9 <el-input v-model="query.name" placeholder="Search entire site" @change="search" /> 17 <el-input v-model="query.name" placeholder="Search entire site" @change="search"/>
10 <el-button :icon="Search" @click="search">search</el-button> 18 <el-button icon="Search" @click="search">search</el-button>
11 </div> 19 </div>
12 20
13 </div> 21 </div>
...@@ -15,11 +23,12 @@ ...@@ -15,11 +23,12 @@
15 </template> 23 </template>
16 24
17 <script setup> 25 <script setup>
18 import { onMounted, ref } from 'vue' 26 import {onMounted, ref} from 'vue'
19 import { Search } from '@element-plus/icons-vue' 27 import {Search} from '@element-plus/icons-vue'
28
20 const router = useRouter() 29 const router = useRouter()
21 import { getHottest } from '@/apiPc/webSite' 30 import {getHottest} from '@/apiPc/webSite'
22 import { useRouter } from 'vue-router' 31 import {useRouter} from 'vue-router'
23 32
24 const show = ref(false) 33 const show = ref(false)
25 const query = ref({}) 34 const query = ref({})
...@@ -47,6 +56,7 @@ function search() { ...@@ -47,6 +56,7 @@ function search() {
47 } 56 }
48 }) 57 })
49 } 58 }
59
50 const goDetail = (n) => { 60 const goDetail = (n) => {
51 show.value = false 61 show.value = false
52 if (n.isOut == '1') { 62 if (n.isOut == '1') {
...@@ -59,7 +69,7 @@ const goDetail = (n) => { ...@@ -59,7 +69,7 @@ const goDetail = (n) => {
59 } 69 }
60 </script> 70 </script>
61 71
62 <style scoped lang="scss"> 72 <style lang="scss" scoped>
63 h2 { 73 h2 {
64 font-size: 24px; 74 font-size: 24px;
65 margin: 30px 0 15px; 75 margin: 30px 0 15px;
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
43 <el-option :label="language==0?'TE/PU(外办)邀请函':'TE/PU letter'" value="2"/> 43 <el-option :label="language==0?'TE/PU(外办)邀请函':'TE/PU letter'" value="2"/>
44 </el-select> 44 </el-select>
45 </el-form-item> 45 </el-form-item>
46 <el-form-item label="Proof of Employment" prop="invitationFileArr" required> 46 <el-form-item v-if="form.invitationType==2" label="Proof of Employment" prop="invitationFileArr" required>
47 <div class="red">Proof of employment is required for TE/PU letter letters.</div> 47 <div class="red">Proof of employment is required for TE/PU letter letters.</div>
48 <div class="red"> 48 <div class="red">
49 This document must be issued by the invitee's association and must bear an official stamp or signature. 49 This document must be issued by the invitee's association and must bear an official stamp or signature.
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!