|
@@ -1,221 +0,0 @@
|
|
|
-<template>
|
|
|
- <custom-layout class="main">
|
|
|
- <el-col :span="24" class="one">
|
|
|
- <el-image class="image" :src="news" fit="fill" />
|
|
|
- </el-col>
|
|
|
- <el-col :span="24" class="two">
|
|
|
- <div class="w_1300 flex">
|
|
|
- <div class="flexList" @mouseover="handleMouseOver(index)" v-for="(item, index) in list" :key="index">
|
|
|
- <div class="two_1" :class="['list' + index]" v-if="is_show != index">
|
|
|
- <h5 class="title">{{ item.name || '暂无标题' }}</h5>
|
|
|
- <div class="brief textOne">{{ item.brief || '暂无简介' }}</div>
|
|
|
- </div>
|
|
|
- <div class="two_2" :class="['image' + index]" v-else>
|
|
|
- <div class="other_1">
|
|
|
- <div class="title">{{ item.name || '暂无标题' }}</div>
|
|
|
- <div class="more" @click="toView(item)">查看更多>></div>
|
|
|
- </div>
|
|
|
- <div class="other_2 textMore">
|
|
|
- {{ item.brief || '暂无简介' }}
|
|
|
- </div>
|
|
|
- <div class="other_3">
|
|
|
- <div class="other_list" v-for="(tag, indexs) in item.list" :key="indexs">
|
|
|
- <el-image class="image" :src="getUrl(tag.file)" fit="fill" />
|
|
|
- <div class="title textOne">{{ tag.name || '暂无标题' }}</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- </custom-layout>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script setup>
|
|
|
-// 图片引入
|
|
|
-import news from '/images/news.png'
|
|
|
-// 接口
|
|
|
-import { JournalStore } from '@/store/api/platform/journal'
|
|
|
-import { NotesStore } from '@/store/api/platform/notes'
|
|
|
-const store = JournalStore()
|
|
|
-const notesStore = NotesStore()
|
|
|
-// 路由
|
|
|
-const router = useRouter()
|
|
|
-// 加载中
|
|
|
-const loading = ref(false)
|
|
|
-const list = ref([])
|
|
|
-let skip = 0
|
|
|
-let limit = 8
|
|
|
-const total = ref(0)
|
|
|
-const is_show = ref(0)
|
|
|
-// 请求
|
|
|
-onMounted(async () => {
|
|
|
- loading.value = true
|
|
|
- await search({ skip, limit })
|
|
|
- loading.value = false
|
|
|
-})
|
|
|
-const search = async (query = { skip, limit }) => {
|
|
|
- skip = query.skip
|
|
|
- limit = query.limit
|
|
|
- const info = { skip: query.skip, limit: query.limit, status: '1', is_use: '0' }
|
|
|
- const res = await store.query(info)
|
|
|
- if (res.errcode == '0') {
|
|
|
- const data = { skip: 0, limit: 3, status: '1', is_use: '0' }
|
|
|
- for (const val of res.data) {
|
|
|
- data.journal = val.id
|
|
|
- const arr = await notesStore.query(data)
|
|
|
- if (arr.errcode == '0') val.list = arr.data
|
|
|
- }
|
|
|
- list.value = res.data
|
|
|
- total.value = res.total
|
|
|
- }
|
|
|
-}
|
|
|
-// 查看详情
|
|
|
-const toView = async (item) => {
|
|
|
- router.push({ path: '/thirteen/list', query: { id: item.id || item._id } })
|
|
|
-}
|
|
|
-const getUrl = (item) => {
|
|
|
- if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
|
|
|
-}
|
|
|
-const handleMouseOver = (index) => {
|
|
|
- is_show.value = index
|
|
|
-}
|
|
|
-</script>
|
|
|
-<style scoped lang="scss">
|
|
|
-.main {
|
|
|
- .one {
|
|
|
- .image {
|
|
|
- width: 100%;
|
|
|
- height: 200px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .two {
|
|
|
- margin: 10px 0;
|
|
|
- .flex {
|
|
|
- display: flex;
|
|
|
- justify-content: space-around;
|
|
|
- .flexList {
|
|
|
- .two_1 {
|
|
|
- margin: 0 5px 0 0;
|
|
|
- width: 200px;
|
|
|
- height: 480px;
|
|
|
- text-align: center;
|
|
|
- background-size: cover;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- .title {
|
|
|
- margin-top: 58px;
|
|
|
- font-size: $global-font-size-18;
|
|
|
- color: #121834;
|
|
|
- text-align: center;
|
|
|
- line-height: 28px;
|
|
|
- font-weight: 600;
|
|
|
- margin: 0 0 10px 0;
|
|
|
- }
|
|
|
- .brief {
|
|
|
- width: 80%;
|
|
|
- padding: 10px 0 0 0;
|
|
|
- margin: 0 10px;
|
|
|
- font-family: PingFangSC-Regular;
|
|
|
- font-size: $global-font-size-14;
|
|
|
- color: #121834;
|
|
|
- line-height: 19px;
|
|
|
- font-weight: 400;
|
|
|
- border-top: 0.5px dashed #909090;
|
|
|
- }
|
|
|
- }
|
|
|
- .two_2 {
|
|
|
- width: 850px;
|
|
|
- height: 480px;
|
|
|
- color: #fff;
|
|
|
- border-radius: 2px;
|
|
|
- padding: 0 40px 20px;
|
|
|
- animation: box1 0.4s ease;
|
|
|
- background-repeat: no-repeat;
|
|
|
- .other_1 {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- margin-bottom: 8px;
|
|
|
- padding: 40px 0 20px 0;
|
|
|
- cursor: pointer;
|
|
|
- .title {
|
|
|
- font-size: 26px;
|
|
|
- color: #fff;
|
|
|
- text-align: left;
|
|
|
- line-height: 26px;
|
|
|
- font-weight: 600;
|
|
|
- }
|
|
|
- .more {
|
|
|
- font-family: PingFangSC-Medium;
|
|
|
- font-size: $global-font-size-14;
|
|
|
- color: #fff;
|
|
|
- line-height: 21px;
|
|
|
- font-weight: 500;
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- }
|
|
|
- .other_2 {
|
|
|
- font-size: $global-font-size-14;
|
|
|
- color: #fff;
|
|
|
- line-height: 19px;
|
|
|
- font-weight: 200;
|
|
|
- }
|
|
|
- .other_3 {
|
|
|
- margin: 40px 0 0 0;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- .other_list {
|
|
|
- cursor: pointer;
|
|
|
- width: 200px;
|
|
|
- .image {
|
|
|
- width: 100%;
|
|
|
- height: 250px;
|
|
|
- }
|
|
|
- .title {
|
|
|
- margin: 10px 0 0 0;
|
|
|
- font-size: $global-font-size-18;
|
|
|
- color: #fff;
|
|
|
- text-align: center;
|
|
|
- line-height: 26px;
|
|
|
- font-weight: 500;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- @keyframes box1 {
|
|
|
- 0% {
|
|
|
- opacity: 0.8;
|
|
|
- transform: scale(0.8);
|
|
|
- }
|
|
|
- 100% {
|
|
|
- opacity: 1;
|
|
|
- transform: scale(1);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .list0 {
|
|
|
- background: url(/images/cata1.png) no-repeat center;
|
|
|
- }
|
|
|
- .list1 {
|
|
|
- background: url(/images/cata2.png) no-repeat center;
|
|
|
- }
|
|
|
- .list2 {
|
|
|
- background: url(/images/cata3.png) no-repeat center;
|
|
|
- }
|
|
|
- .image0 {
|
|
|
- background: url(/images/service_top_bg.png) no-repeat center;
|
|
|
- }
|
|
|
- .image1 {
|
|
|
- background: url(/images/service_center_bg.png) center;
|
|
|
- }
|
|
|
- .image2 {
|
|
|
- background: url(/images/service_bottom_bg.png) no-repeat center;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|