123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <template>
- <div id="c-layout">
- <div class="header">
- <el-col :span="24" class="header_1">
- <div class="left">
- <el-image class="image" v-if="configInfo && configInfo.logoUrl && configInfo.logoUrl.length > 0" :src="getUrl(configInfo.logoUrl)" fit="fill" />
- <el-image class="image" v-else :src="siteInfo.logoUrl" fit="fill" />
- <div class="content">
- <text class="title">{{ configInfo.zhTitle || siteInfo.zhTitle }}</text>
- </div>
- </div>
- <div class="right">
- <div class="right_1" v-if="user && user.id">
- <el-dropdown>
- <span class="el-dropdown-link">
- {{ user.nick_name || '暂无昵称' }}
- <el-icon class="el-icon--right">
- <arrow-down />
- </el-icon>
- </span>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item> 个人中心 </el-dropdown-item>
- <el-dropdown-item @click="toOut"> 退出登录 </el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- <div class="right_1" v-else>
- <span @click="toLogin('0')">注册</span>
- <span>|</span>
- <span @click="toLogin('1')">登录</span>
- </div>
- <div class="right_2" @click="toChat">
- <el-icon><Bell /></el-icon>
- <span>消息</span>
- </div>
- </div>
- </el-col>
- <el-col :span="24" class="header_2">
- <el-col :span="24" class="list">
- <div
- class="text"
- v-for="(item, index) in data"
- @click="selectMenu(item.route)"
- :style="{
- backgroundColor: item.hover ? '#1073ff' : 'transparent',
- color: item.hover ? '#ffffff' : ''
- }"
- :key="index"
- @mouseover="handleMouseOver(index)"
- @mouseout="handleMousOut(index)"
- >
- <span>{{ item.title }}</span>
- </div>
- </el-col>
- <el-col :span="24" class="info">
- <!-- <div class="info_1" v-if="info.key == '3'">
- <el-col :span="12" class="list_1" v-for="(agg, index) in info.children" :key="index">
- <div class="title">{{ agg.title }}</div>
- <div class="list_1_1">
- <div v-for="(tag, indexs) in agg.children" :key="indexs" class="title1" @click="selectMenu(tag.route)">
- {{ tag.title }}
- </div>
- </div>
- </el-col>
- </div> -->
- <div class="info_2" v-if="info.key == '10'">
- <el-col :span="24" class="list_2">
- <div v-for="(tag, indexs) in info.children" :key="indexs" class="title1" @click="selectMenu(tag.route)">
- {{ tag.title }}
- </div>
- </el-col>
- </div>
- </el-col>
- </el-col>
- </div>
- <div class="main">
- <slot></slot>
- </div>
- <div class="footer" v-if="is_foot">
- <div class="footer_1">
- <div class="left">
- <el-image class="image" v-if="footInfos && footInfos.Logo && footInfos.Logo.length > 0" :src="getUrl(footInfos.Logo)" fit="fill" />
- <el-image class="image" v-else :src="footInfo.Logo" fit="fill" />
- <div class="title">电话:{{ footInfos.Phone || footInfo.Phone }}</div>
- <div class="title">邮箱:{{ footInfos.Email || footInfo.Email }}</div>
- <div class="title">地址:{{ footInfos.Address || footInfo.Address }}</div>
- </div>
- <div class="right">
- <el-image class="image" v-if="footInfos && footInfos.Code && footInfos.Code.length > 0" :src="getUrl(footInfos.Code)" fit="fill" />
- <el-image class="image" v-else :src="footInfo.Code" fit="fill" />
- <div class="title" @click="toHelp">关于我们</div>
- </div>
- </div>
- <div class="footer_2">
- {{ footInfo.Copyright }}
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ArrowDown } from '@element-plus/icons-vue'
- import { siteInfo, footInfo, menuList } from '@/layout/site'
- // 接口
- import { DesignStore } from '@/store/api/platform/design'
- const designStore = DesignStore()
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- const router = useRouter()
- const route = useRoute()
- const $checkRes = inject('$checkRes')
- const props = defineProps({
- is_foot: { type: Boolean, default: () => true }
- })
- const configInfo = ref({})
- const footInfos = ref({})
- const data = ref([])
- const info = ref({})
- // 请求
- onMounted(async () => {
- search()
- })
- const search = async () => {
- for (const val of menuList) {
- if (route.name === val.route) val.hover = true
- else val.hover = false
- }
- data.value = menuList
- // 基础设置
- const result = await designStore.query({})
- if ($checkRes(result)) {
- configInfo.value = result.data[0] || {}
- footInfo.value = result.data[0].footInfo || {}
- }
- }
- // 登录|注册
- const toLogin = (status) => {
- router.push({ path: '/login', query: { status } })
- }
- const selectMenu = (item, query) => {
- for (const val of data.value) {
- if (route.name === val.route) val.hover = true
- else val.hover = false
- }
- if (item == 'brain') window.open(`/cxyyWeb/brain`)
- else router.push({ path: `/${item}`, query })
- }
- // 关于我们
- const toHelp = () => {
- router.push({ path: `/help` })
- }
- // 消息
- const toChat = () => {
- router.push({ path: `/chat` })
- }
- const handleMouseOver = (index) => {
- data.value[index].hover = true
- info.value = data.value[index]
- }
- const handleMousOut = (index) => {
- data.value[index].hover = false
- const arr = data.value.every((i) => i.hover === false)
- if (arr) {
- for (const val of data.value) {
- if (route.name === val.route) val.hover = true
- else val.hover = false
- }
- }
- }
- const getUrl = (item) => {
- if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
- }
- // 退出登录
- const toOut = () => {
- userStore.logOut()
- router.push('/login')
- }
- </script>
- <style lang="scss" scoped>
- #c-layout {
- .header {
- padding: 0;
- position: sticky;
- top: 0;
- z-index: 1000;
- padding: 5px 0;
- background: $global-color-fff;
- .header_1 {
- display: flex;
- justify-content: space-between;
- .left {
- display: flex;
- .image {
- height: 60px;
- width: 240px;
- margin: 0 5px 0 0;
- }
- .content {
- padding: 10px 0 0 0;
- font-size: $global-font-size-34;
- font-family: 'Comic Sans MS', cursive;
- }
- }
- .right {
- display: flex;
- font-size: $global-font-size-18;
- cursor: pointer; /* 改变鼠标样式为手形 */
- .right_1 {
- display: flex;
- align-items: center;
- color: $global-color-107;
- margin: 0 10px 0 0;
- span {
- margin: 0 5px;
- }
- .el-dropdown-link {
- font-size: $global-font-size-18;
- cursor: pointer;
- color: #409eff;
- display: flex;
- align-items: center;
- }
- }
- .right_2 {
- display: flex;
- align-items: center;
- margin: 0 5px;
- span {
- margin: 0 0 0 5px;
- }
- }
- }
- }
- .header_2 {
- .list {
- display: flex;
- justify-content: space-around;
- .text {
- text-align: center;
- padding: 0 10px;
- height: 58px;
- line-height: 58px;
- font-family: Microsoft YaHei;
- font-size: $global-font-size-24;
- color: #333333;
- cursor: pointer; /* 改变鼠标样式为手形 */
- }
- }
- .info {
- display: none;
- .info_1 {
- position: absolute;
- left: 0;
- top: 128px;
- display: flex;
- padding: 10px 0;
- background: $global-color-107;
- width: 700px;
- .list_1 {
- margin: 0 10px 0 0;
- .title {
- margin: 5px 0;
- font-size: $global-font-size-20;
- font-weight: 600;
- text-align: center;
- color: #fff;
- cursor: pointer; /* 改变鼠标样式为手形 */
- }
- .list_1_1 {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- margin: 5px 0;
- .title1 {
- width: 120px;
- margin: 5px;
- padding: 5px;
- text-align: center;
- color: #ffffff;
- font-size: $global-font-size-18;
- cursor: pointer; /* 改变鼠标样式为手形 */
- }
- }
- }
- }
- .info_2 {
- position: absolute;
- left: 68.1%;
- top: 128px;
- display: flex;
- padding: 10px 0;
- background: $global-color-107;
- width: 145px;
- .list_2 {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 5px 0;
- .title1 {
- width: 110px;
- margin: 5px;
- padding: 5px;
- text-align: center;
- color: #ffffff;
- font-size: $global-font-size-18;
- cursor: pointer; /* 改变鼠标样式为手形 */
- }
- }
- }
- }
- }
- }
- .header:hover {
- .header_2 {
- .info {
- display: block !important;
- }
- }
- }
- .main {
- min-height: 62vh;
- }
- .footer {
- padding: 0 5px 10px 5px;
- background-color: $global-color-2D2;
- color: $global-color-fff;
- font-size: $global-font-size-18;
- .footer_1 {
- padding: 10px 0;
- display: flex;
- justify-content: space-between;
- border-bottom: 1px solid $global-color-bbb;
- .left {
- .image {
- width: 393px;
- height: 70px;
- }
- .title {
- margin: 5px 0 0 0;
- }
- }
- .right {
- text-align: center;
- .image {
- width: 130px;
- height: 130px;
- }
- .title {
- margin: 5px 0 0 0;
- }
- }
- }
- .footer_2 {
- padding: 10px 0 0 0;
- }
- }
- }
- @media screen and (max-width: 1280px) {
- #c-layout {
- min-width: 1920px;
- margin: 0 auto;
- }
- }
- @media screen and (min-width: 1921px) {
- #c-layout {
- max-width: 1920px;
- margin: 0 auto;
- }
- }
- </style>
|