d9b1f529 by zhangmeng

首页

1 parent 861fec54
......@@ -209,6 +209,8 @@ li.el-select-dropdown__item {
}
}
//字体设置;
@media (max-width: 1600px) {
.el-menu--horizontal > .el-menu-item {
padding: 0 15px;
......
......@@ -2,7 +2,11 @@
<div class="topNav">
<router-link to="/">
<!-- <img class="logo" src="@/assets/v1/nav_logo.png">-->
<img class="logo" src="/img/logo.png">
<!-- <img class="logo" src="/img/logo.png">-->
<div style="display: flex;">
<img class="logo" src="@/assets/pc/bottom_logo.png">
<img class="logo" src="@/assets/pc/logo2.png">
</div>
</router-link>
<div class="home-menu forPc">
......
......@@ -7,7 +7,7 @@
append-to-body
class="searchpp"
destroy-on-close
style="padding-top: 10px"
style="padding-top: 50px"
title="搜索"
top="80px"
width="80vw"
......
<template>
<el-dialog
v-model="show" class="searchpp" width="80vw" append-to-body title="SEARCH"
v-model="show"
:close-on-click-modal="true"
:modal="false"
:show-close="true"
append-to-body
class="searchpp"
destroy-on-close
style="padding-top: 50px"
title="SEARCH"
top="80px"
destroy-on-close :show-close="true" :close-on-click-modal="true" :modal="false"
width="80vw"
>
<div class="searchBody">
<div class="searchline">
<el-input v-model="query.name" placeholder="Search entire site" @change="search" />
<el-button :icon="Search" @click="search">search</el-button>
<el-input v-model="query.name" placeholder="Search entire site" @change="search"/>
<el-button icon="Search" @click="search">search</el-button>
</div>
</div>
......@@ -15,11 +23,12 @@
</template>
<script setup>
import { onMounted, ref } from 'vue'
import { Search } from '@element-plus/icons-vue'
import {onMounted, ref} from 'vue'
import {Search} from '@element-plus/icons-vue'
const router = useRouter()
import { getHottest } from '@/apiPc/webSite'
import { useRouter } from 'vue-router'
import {getHottest} from '@/apiPc/webSite'
import {useRouter} from 'vue-router'
const show = ref(false)
const query = ref({})
......@@ -47,6 +56,7 @@ function search() {
}
})
}
const goDetail = (n) => {
show.value = false
if (n.isOut == '1') {
......@@ -59,7 +69,7 @@ const goDetail = (n) => {
}
</script>
<style scoped lang="scss">
<style lang="scss" scoped>
h2 {
font-size: 24px;
margin: 30px 0 15px;
......
......@@ -43,7 +43,7 @@
<el-option :label="language==0?'TE/PU(外办)邀请函':'TE/PU letter'" value="2"/>
</el-select>
</el-form-item>
<el-form-item label="Proof of Employment" prop="invitationFileArr" required>
<el-form-item v-if="form.invitationType==2" label="Proof of Employment" prop="invitationFileArr" required>
<div class="red">Proof of employment is required for TE/PU letter letters.</div>
<div class="red">
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!