Compare commits

...

2 Commits

Author SHA1 Message Date
168748eb18 Merge branch 'main' of https://git.rangutech.com/yiqiuyang/portal 2025-10-16 17:36:31 +08:00
3f5f76946d news 2025-10-16 17:36:27 +08:00
9 changed files with 115 additions and 123 deletions

Binary file not shown.

Binary file not shown.

View File

@ -31,6 +31,7 @@ let autoPlayTimer = null
const itemWidth = computed(() => $fontSize(props.sourceWidth)) const itemWidth = computed(() => $fontSize(props.sourceWidth))
const itemHeight = computed(() => $fontSize(props.sourceHeight)) const itemHeight = computed(() => $fontSize(props.sourceHeight))
const itemGap = computed(() => $fontSize(props.sourceGap)) const itemGap = computed(() => $fontSize(props.sourceGap))
const itemTotalWidth = computed(() => itemWidth.value + itemGap.value) const itemTotalWidth = computed(() => itemWidth.value + itemGap.value)
const viewPortWidth = computed(() => props.pageSize * itemWidth.value + (props.pageSize - 1) * itemGap.value + 'px') const viewPortWidth = computed(() => props.pageSize * itemWidth.value + (props.pageSize - 1) * itemGap.value + 'px')
const trackWidth = computed(() => props.data.length * itemTotalWidth.value - itemGap.value + 'px') const trackWidth = computed(() => props.data.length * itemTotalWidth.value - itemGap.value + 'px')

View File

@ -11,16 +11,12 @@ function setRem() {
// 当前页面宽度相对于设计稿宽度的缩放比例 // 当前页面宽度相对于设计稿宽度的缩放比例
const scale = document.documentElement.clientWidth / designWidth const scale = document.documentElement.clientWidth / designWidth
// 设置页面根节点字体大小最高放大比例为maxScale // 设置页面根节点字体大小最高放大比例为maxScale
document.documentElement.style.fontSize = document.documentElement.style.fontSize = baseSize * Math.min(scale, maxScale) + 'px'
baseSize * Math.min(scale, maxScale) + 'px'
} }
// 根据设计稿尺寸计算实际尺寸 // 根据设计稿尺寸计算实际尺寸
export function fontSize(res) { export function fontSize(res) {
const clientWidth = const clientWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
window.innerWidth ||
document.documentElement.clientWidth ||
document.body.clientWidth
if (!clientWidth) return res if (!clientWidth) return res
const scale = clientWidth / designWidth const scale = clientWidth / designWidth
return res * Math.min(scale, maxScale) return res * Math.min(scale, maxScale)

View File

@ -29,37 +29,19 @@ const imgList = [
id: 2, id: 2,
width: 210, width: 210,
height: 300, height: 300,
list: [ list: ['main/5.png', 'main/6.png', 'main/7.png', 'main/8.png', 'main/9.png'],
'main/5.png',
'main/6.png',
'main/7.png',
'main/8.png',
'main/9.png',
],
}, },
{ {
id: 3, id: 3,
width: 210, width: 210,
height: 300, height: 300,
list: [ list: ['main/10.png', 'main/11.png', 'main/12.png', 'main/13.png', 'main/14.png'],
'main/10.png',
'main/11.png',
'main/12.png',
'main/13.png',
'main/14.png',
],
}, },
{ {
id: 4, id: 4,
width: 210, width: 210,
height: 300, height: 300,
list: [ list: ['main/15.png', 'main/16.png', 'main/17.png', 'main/18.png', 'main/19.png'],
'main/15.png',
'main/16.png',
'main/17.png',
'main/18.png',
'main/19.png',
],
}, },
{ {
id: 5, id: 5,
@ -135,9 +117,13 @@ onMounted(() => {})
.my-card { .my-card {
width: 100%; width: 100%;
height: 100%; height: 100%;
img {
width: 40%;
height: auto;
}
.label { .label {
text-align: left; text-align: left;
width: 532px; width: 40%;
padding-right: 25px; padding-right: 25px;
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-weight: 400; font-weight: 400;

View File

@ -8,21 +8,29 @@ import {ElMessage} from 'element-plus'
const route = useRoute() const route = useRoute()
const detail = route.query const detail = route.query
const showLoad = ref(true) const showLoad = ref(true)
const newsTitle = ref('') const newsTitle = ref('')
const newsTime = ref('')
const newsSubTitle = ref('') const newsSubTitle = ref('')
const newsCoverImg = ref('') const newsCoverImg = ref('')
const newsContent = ref('') const newsContent = ref(null)
const router = useRouter()
onMounted(() => {
getDetail()
})
const getDetail = () => { const getDetail = () => {
showLoad.value = true
let query = { let query = {
slug: detail.slug, slug: detail.slug,
} }
getNewsDetail(query) getNewsDetail(query)
.then((res) => { .then((res) => {
if (res.code === 0) { if (res.code === 0) {
let {content, cover_image, snapshot, title} = res.data let {content, cover_image, snapshot, datetime, title} = res.data
newsTitle.value = title newsTitle.value = title
newsTime.value = datetime
newsSubTitle.value = snapshot newsSubTitle.value = snapshot
newsCoverImg.value = cover_image newsCoverImg.value = cover_image
newsContent.value = content newsContent.value = content
@ -37,11 +45,6 @@ const getDetail = () => {
}) })
} }
const router = useRouter()
onMounted(() => {
getDetail()
})
const toBack = () => { const toBack = () => {
router.back() router.back()
} }
@ -53,23 +56,22 @@ const toBack = () => {
<h3 class="label"> <h3 class="label">
{{ newsTitle }} {{ newsTitle }}
</h3> </h3>
<h3 class="time" v-if="newsSubTitle"> <h3 class="time" v-if="newsTime">
{{ newsSubTitle }} {{ newsTime }}
</h3> </h3>
<div class="img" v-if="newsCoverImg"> <div class="artical">
<img :src="newsCoverImg" alt="" /> <div v-html="newsContent"></div>
</div>
<div class="artical" v-if="newsContent">
{{ newsContent }}
</div> </div>
</div> </div>
<div v-else>暂无内容</div> <div v-else class="no-content">暂无内容</div>
<div class="back" @click="toBack">返回</div> <div class="back" @click="toBack">返回</div>
</div> </div>
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
.page {
.label { .label {
text-align: center;
margin: 64px 0 20px 0; margin: 64px 0 20px 0;
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-weight: 500; font-weight: 500;
@ -77,32 +79,21 @@ const toBack = () => {
color: $black; color: $black;
} }
.time { .time {
text-align: center;
font-family: 'PingFang SC'; font-family: 'PingFang SC';
font-weight: 500; font-weight: 500;
font-size: 18px; font-size: 20px;
margin-bottom: 40px; margin-bottom: 20px;
}
.img {
width: 1200px;
height: auto;
margin-bottom: 40px;
img {
width: 100%;
height: 100%;
}
} }
.artical { .artical {
width: 1200px; width: 1200px;
font-family: 'PingFang SC'; }
font-weight: 400; .no-content {
font-size: 18px; margin-top: 40px;
color: $black; font-size: 32px;
text-indent: 2em;
white-space: pre-wrap; /* 保留换行符,同时允许自动折行 */
word-break: break-word; /* 长单词截断 */
margin-bottom: 300px;
} }
.back { .back {
margin-top: 40px;
padding: 10px 40px; padding: 10px 40px;
background: #0389ff; background: #0389ff;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
@ -112,4 +103,5 @@ const toBack = () => {
color: $white; color: $white;
cursor: pointer; cursor: pointer;
} }
}
</style> </style>

View File

@ -1,16 +1,23 @@
<script setup> <script setup>
defineOptions({name: 'New'}) defineOptions({name: 'New'})
import {ref, onMounted, nextTick, onActivated, onDeactivated} from 'vue' import {ref, onMounted, nextTick, onActivated, onDeactivated, computed} from 'vue'
import Banner from '@/components/Banner/index.vue' import Banner from '@/components/Banner/index.vue'
import Swiper from '@/components/Swiper/index.vue' import Swiper from '@/components/Swiper/index.vue'
import {useRouter} from 'vue-router' import {useRouter} from 'vue-router'
import {onBeforeRouteLeave} from 'vue-router' import {onBeforeRouteLeave} from 'vue-router'
import {getNews} from '@/api/index' import {getNews} from '@/api/index'
import {fontSize} from '@/utils'
const currentPage = ref(1) const currentPage = ref(1)
const showLoad = ref(true) const showLoad = ref(true)
const containerWidth = ref(1700) const containerWidth = ref(fontSize(1700))
const containerHeight = ref(1400) const containerHeight = computed(() => {
if (newList.value.length > 0) {
return 350 * newList.value.length
} else {
return 200
}
})
onMounted(() => { onMounted(() => {
getNewList() getNewList()
@ -34,14 +41,20 @@ async function getNewList() {
page: page.value.pageNum, page: page.value.pageNum,
page_size: page.value.pageSize, page_size: page.value.pageSize,
} }
let {code, data, pagination} = await getNews(query)
if (code === 0) { getNews(query)
newList.value = data .then((res) => {
page.value.totalPages = pagination.total_pages if (res.code === 0) {
newList.value = res.data
page.value.totalPages = res.pagination.total_pages
showLoad.value = false showLoad.value = false
} else { } else {
showLoad.value = false showLoad.value = false
} }
})
.catch(() => {
showLoad.value = false
})
} }
const toDetail = (item) => { const toDetail = (item) => {
@ -68,12 +81,8 @@ onDeactivated(() => {
onBeforeRouteLeave((to) => { onBeforeRouteLeave((to) => {
if (to.name === 'Detail') return if (to.name === 'Detail') return
// 去别的顶级菜单 → 销毁
const parent = to.matched[0] const parent = to.matched[0]
if (parent?.name !== 'News') { if (parent?.name !== 'News') {
// 通过修改路由 meta 让 keep-alive 排除当前组件
// 需要把 keep-alive 写成 :include="cachedNames" 并在 pinia 里维护数组
} }
}) })
</script> </script>
@ -93,6 +102,7 @@ onBeforeRouteLeave((to) => {
> >
<template #default="{item, index, isActive}"> <template #default="{item, index, isActive}">
<div class="my-card"> <div class="my-card">
<template v-if="newList.length > 0">
<div <div
class="news flex j-s" class="news flex j-s"
:class="{active: isActive}" :class="{active: isActive}"
@ -111,6 +121,8 @@ onBeforeRouteLeave((to) => {
<div class="text">{{ item.snapshot }}</div> <div class="text">{{ item.snapshot }}</div>
</div> </div>
</div> </div>
</template>
<div v-else class="no-content">暂无内容</div>
</div> </div>
</template> </template>
</Swiper> </Swiper>
@ -177,5 +189,10 @@ onBeforeRouteLeave((to) => {
color: #999999; color: #999999;
} }
} }
.no-content {
margin-top: 40px;
font-size: 24px;
}
} }
</style> </style>

View File

@ -46,7 +46,7 @@ const toBack = () => {
<!-- 软件 --> <!-- 软件 -->
<template v-else> <template v-else>
<div class="content software flex j-s"> <div class="content software flex">
<video autoplay muted loop @loadeddata="onVideoLoaded" v-show="!videoLoaded"> <video autoplay muted loop @loadeddata="onVideoLoaded" v-show="!videoLoaded">
<source :src="`./static/video/${query.video}`" type="video/mp4" /> <source :src="`./static/video/${query.video}`" type="video/mp4" />
</video> </video>
@ -68,6 +68,8 @@ const toBack = () => {
<style lang="scss" scoped> <style lang="scss" scoped>
:deep(.hardware) { :deep(.hardware) {
font-size: 20px;
line-height: 1.8;
margin-bottom: 40px; margin-bottom: 40px;
} }
@ -107,6 +109,7 @@ const toBack = () => {
.software { .software {
width: 1700px; width: 1700px;
align-items: flex-start;
video { video {
width: 65%; width: 65%;
height: auto; height: auto;
@ -152,7 +155,6 @@ const toBack = () => {
.descripition { .descripition {
width: 1000px; width: 1000px;
font-size: 22px;
} }
.back { .back {

View File

@ -5,7 +5,7 @@ onMounted(() => {})
// 资质证书 // 资质证书
const certificateWidth = ref(1300) const certificateWidth = ref(1300)
const certificateHeight = ref(500) const certificateHeight = ref(700)
const currentPage = ref(1) const currentPage = ref(1)
@ -54,8 +54,8 @@ const imgList = [
:showHover="false" :showHover="false"
> >
<template #default="{item, index, isActive}"> <template #default="{item, index, isActive}">
<div class="certificate flex j-s a-c" :class="{active: isActive}"> <div class="certificate flex j-s" :class="{active: isActive}">
<div v-for="(list, listIdx) in imgList" :index="list.id" class="flex j-c a-c wrap"> <div v-for="list in imgList" :index="list.id" class="flex j-c wrap">
<div v-for="(img, imgIndex) in list.list" :key="imgIndex"> <div v-for="(img, imgIndex) in list.list" :key="imgIndex">
<div class="label">{{ img.label }}</div> <div class="label">{{ img.label }}</div>
<img <img
@ -77,9 +77,7 @@ const imgList = [
<style lang="scss" scoped> <style lang="scss" scoped>
#certificate { #certificate {
// margin-top: 60px;
.certificate { .certificate {
margin-top: 40px;
width: 100%; width: 100%;
height: 100%; height: 100%;
.label { .label {