123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- <template>
- <div class="common-layout">
- <div class="top">
- <el-row :gutter="20" align="middle">
- <el-col :span="6" class="top_1">
- <el-image
- class="image"
- v-if="configInfo && configInfo.logoUrl && configInfo.logoUrl.length > 0"
- :src="configInfo.logoUrl[0].url"
- fit="fill"
- />
- <el-image class="image" v-else :src="siteInfo.logoUrl" fit="fill" />
- <div class="content">
- <text class="title">{{ configInfo.zhTitle || siteInfo.zhTitle }}</text>
- <!-- <text class="english">{{ siteInfo.zhBrief }}</text> -->
- </div>
- </el-col>
- <el-col :span="13">
- <el-menu :default-active="current" mode="horizontal" @select="selectMenu">
- <template v-for="item in data" :key="item._id">
- <template v-if="item.type === '0'">
- <el-sub-menu :index="item._id" :class="[current == item.href ? 'current' : '']">
- <template #title>
- <span @click="selectMenu(item.href)">{{ item.title }}</span>
- </template>
- <el-menu-item v-for="tag in item.children" :key="tag._id" :index="tag.href">{{
- tag.title
- }}</el-menu-item>
- </el-sub-menu>
- </template>
- <template v-else-if="item.type === '1'">
- <el-menu-item :index="item.href"> {{ item.title }}</el-menu-item>
- </template>
- </template>
- </el-menu>
- </el-col>
- <el-col :span="5">
- <el-row :gutter="20">
- <el-col :span="6" class="top_2">
- <el-button :icon="Search" size="small" @click="toSearch('search')">搜索</el-button>
- </el-col>
- <el-col :span="6" class="top_2">
- <el-dropdown>
- <el-button size="small" :icon="Edit">发布</el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item @click="toRelease('demand')">我的需求</el-dropdown-item>
- <el-dropdown-item @click="toRelease('project')">我的项目</el-dropdown-item>
- <el-dropdown-item @click="toRelease('match')">我的赛事</el-dropdown-item>
- <el-dropdown-item @click="toRelease('achievement')">我的成果</el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </el-col>
- <el-col :span="6" class="top_2" v-if="user && user._id">
- <el-button :icon="Bell" size="small" @click="toCommon(1)">消息</el-button>
- </el-col>
- <el-col :span="6" v-if="user && user._id" class="top_3">
- <el-dropdown>
- <el-button size="small" :icon="User" type="primary">
- {{ user.nick_name || '游客' }}
- </el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item @click="toOpen">管理中心</el-dropdown-item>
- <el-dropdown-item @click="toCommon(2)">个人中心</el-dropdown-item>
- <el-dropdown-item @click="toSearch('collection')">我的收藏</el-dropdown-item>
- <el-dropdown-item @click="toCommon(3)">我的报名</el-dropdown-item>
- <el-dropdown-item @click="toLogout">注销</el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </el-col>
- <el-col :span="10" v-else class="top_3">
- <el-button @click="toLogin(1)" type="primary" size="small">登录</el-button>
- <el-button @click="toLogin(2)" type="primary" size="small">注册</el-button>
- </el-col>
- </el-row>
- </el-col>
- </el-row>
- </div>
- <div class="center">
- <el-col :span="24" class="container">
- <router-view :style="viewStyle"></router-view>
- </el-col>
- </div>
- <div class="bottom">
- <div class="w_1200 footflex">
- <el-image
- class="image"
- v-if="foot && foot.Unit && foot.Unit.length > 0"
- :src="foot.Unit[0].url"
- fit="fill"
- />
- <el-image class="image" v-else :src="footInfo.Unit" fit="fill" />
- <el-col :span="12" class="foot_1">
- <div class="footTitle">
- <span>业务洽谈:{{ foot.Phone || footInfo.Phone }}</span>
-
- <span>企业邮箱:{{ foot.Email || footInfo.Email }}</span>
- </div>
- <div class="footTitle">地 址:{{ foot.Address || footInfo.Address }}</div>
- <div class="footTitle">版权所有:{{ foot.Copyright || footInfo.Copyright }}</div>
- <div class="footTitle">技术支持:{{ foot.Company || footInfo.Company }}</div>
- </el-col>
- <el-col :span="3" class="foot_2">
- <div class="footTop">关于我们</div>
- <div class="footTitle footflex1">
- <span class="footSpan" @click="toHelp('1')">关于我们</span>
- <span class="footSpan" @click="toHelp('3')">联系我们</span>
- <!-- <span class="footSpan" @click="toHelp('2')">意见反馈</span> -->
- </div>
- <!-- <div class="footTitle footflex1">
- <span class="footSpan" @click="toHelp('3')">联系我们</span>
- <span class="footSpan" @click="toHelp('4')">法律条款</span>
- </div> -->
- </el-col>
- <el-col :span="4" class="foot_3 footflex">
- <el-image
- class="image"
- v-if="foot && foot.Code && foot.Code.length > 0"
- :src="foot.Code[0].url"
- fit="fill"
- />
- <el-image class="image" v-else :src="footInfo.Code" fit="fill" />
- <el-image
- class="image"
- v-if="foot && foot.Code && foot.Code.length > 0"
- :src="foot.Code[0].url"
- fit="fill"
- />
- <el-image class="image" v-else :src="footInfo.Code" fit="fill" />
- </el-col>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { siteInfo, footInfo, menuList } from '@/layout/site'
- import { Search, Edit, User, Bell } from '@element-plus/icons-vue'
- // 接口
- import { TagsStore } from '@/store/api/system/tags'
- const store = TagsStore()
- import { DesignStore } from '@/store/api/platform/design'
- const designStore = DesignStore()
- const router = useRouter()
- const route = useRoute()
- const current = ref(route.name || 'home')
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- const data = ref([])
- const configInfo = ref({ logoUrl: [], Unit: [], Code: [] })
- const foot = ref({})
- // 请求
- onMounted(async () => {
- await search()
- })
- const search = async () => {
- const res = await store.query({ is_use: '0' })
- if (res.errcode == '0' && res.total > 0) data.value = res.data
- else data.value = menuList
- // 基础设置
- const result = await designStore.query({})
- if (res.errcode == '0' && res.total > 0) {
- configInfo.value = result.data[0] || {}
- foot.value = result.data[0].footInfo || {}
- }
- }
- const selectMenu = (item) => {
- current.value = item
- router.push({ path: `/${item}` })
- }
- // 登录|注册
- const toLogin = (status) => {
- if (status === 1) router.push({ path: '/login' })
- else router.push({ path: '/register' })
- }
- // 帮助中心
- const toHelp = (type) => {
- router.push({ path: '/help', query: { type } })
- }
- // 打开管理端
- const toOpen = async () => {
- window.location.href = import.meta.env.VITE_APP_HOME
- }
- // 基础跳转
- const toCommon = (type) => {
- if (type == '1') router.push('/chat')
- else if (type == '2') router.push('/center')
- else if (type == '3') router.push('/sign')
- }
- // 收藏搜索
- const toSearch = (type) => {
- router.push({ path: '/search', query: { type } })
- }
- // 发布
- const toRelease = (type) => {
- router.push({ path: '/release', query: { type } })
- }
- // 退出登录
- const toLogout = () => {
- userStore.logOut()
- router.push('/login')
- }
- watch(
- route,
- (newVal) => {
- if (newVal && newVal.name) selectMenu(newVal.name)
- },
- {
- immediate: true //初始化立即执行
- }
- )
- // provide
- provide('selectMenu', selectMenu)
- </script>
- <style scoped lang="scss">
- .common-layout {
- height: 100%;
- width: 100%;
- .top {
- position: sticky;
- top: 0;
- z-index: 100;
- padding: 10px 80px;
- background: #ffffff;
- .current {
- border-bottom: 2px solid #409eff;
- background-color: #ecf5ff;
- :deep(.el-sub-menu__title) {
- color: #409eff !important;
- }
- }
- .top_1 {
- display: flex;
- align-items: center;
- .image {
- height: 45px;
- width: 45px;
- margin: 0 5px 0 0;
- }
- .content {
- margin: 0 0 0 5px;
- .title {
- margin: 0 0 5px 0;
- font-size: 23px;
- font-weight: bold;
- }
- .english {
- margin: 0 0 0 5px;
- font-size: 12px;
- opacity: 0.8;
- color: #1c66e7;
- }
- }
- }
- :deep(.ant-tabs-nav) {
- margin: 0 !important;
- }
- :deep(.ant-tabs-nav::before) {
- border: 0 !important;
- }
- :deep(.el-menu) {
- border: none !important;
- }
- .top_3 {
- display: flex;
- .example-showcase .el-dropdown-link {
- cursor: pointer;
- color: #1c66e7;
- display: flex;
- align-items: center;
- }
- }
- }
- .center {
- min-height: 77vh;
- }
- .bottom {
- width: 100%;
- padding: 7px 0;
- font-size: 14px;
- background-color: #2e3546;
- color: #f0f2f5;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
- 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
- 'Noto Color Emoji';
- font-variant: tabular-nums;
- line-height: 1.5715;
- font-feature-settings: 'tnum', 'tnum';
- .image {
- width: 78px;
- height: 78px;
- }
- .footTitle {
- margin: 5px 0 0 0;
- .footSpan {
- margin-bottom: 3px;
- }
- }
- .footTop {
- font-size: 18px;
- margin-bottom: 12px;
- }
- }
- .footflex {
- display: flex;
- align-items: center;
- justify-content: space-evenly;
- }
- .footflex1 {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- </style>
|