2025-10-07 17:10:00 +08:00
|
|
|
|
<script lang="ts" setup>
|
2025-10-13 10:09:35 +08:00
|
|
|
|
import {computed} from "vue";
|
2025-10-13 13:51:40 +08:00
|
|
|
|
import {useImageStyles} from '~/composables/useImageStyles';
|
2025-10-11 09:42:31 +08:00
|
|
|
|
|
|
|
|
|
|
// 组件属性
|
|
|
|
|
|
interface Props {
|
2025-10-13 10:09:35 +08:00
|
|
|
|
articleData: {
|
2025-10-11 09:42:31 +08:00
|
|
|
|
title: string
|
|
|
|
|
|
publishDate: string
|
|
|
|
|
|
category: string
|
|
|
|
|
|
content: string
|
|
|
|
|
|
prevArticle: {
|
|
|
|
|
|
title: string
|
|
|
|
|
|
url: string
|
|
|
|
|
|
}
|
|
|
|
|
|
nextArticle: {
|
|
|
|
|
|
title: string
|
|
|
|
|
|
url: string
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-13 10:09:35 +08:00
|
|
|
|
loading: boolean
|
|
|
|
|
|
error: string
|
2025-10-11 09:42:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-17 15:25:14 +08:00
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
|
|
|
|
articleData: () => ({
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
publishDate: '',
|
|
|
|
|
|
category: '',
|
|
|
|
|
|
content: '',
|
|
|
|
|
|
prevArticle: {
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
url: '#'
|
|
|
|
|
|
},
|
|
|
|
|
|
nextArticle: {
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
url: '#'
|
|
|
|
|
|
}
|
|
|
|
|
|
}),
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
error: ''
|
|
|
|
|
|
})
|
2025-10-10 18:01:34 +08:00
|
|
|
|
|
2025-10-13 10:09:35 +08:00
|
|
|
|
// 使用传入的数据
|
|
|
|
|
|
const articleData = computed(() => props.articleData)
|
|
|
|
|
|
const loading = computed(() => props.loading)
|
|
|
|
|
|
const error = computed(() => props.error)
|
2025-10-10 17:44:02 +08:00
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
// 热门标签
|
|
|
|
|
|
const hotTags = ref([
|
|
|
|
|
|
'景区单车', '政务平台', '共享经济', '共享汽车APP开发', '共享类',
|
|
|
|
|
|
'共享汽车软件开发', '共享雨伞APP开发', '共享雨伞软件开发', '共享货车开发'
|
|
|
|
|
|
])
|
|
|
|
|
|
|
2025-10-13 10:09:35 +08:00
|
|
|
|
// 重新加载页面方法
|
|
|
|
|
|
const reloadPage = () => {
|
|
|
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
|
|
window.location.reload()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-09 18:01:32 +08:00
|
|
|
|
|
2025-10-13 13:51:40 +08:00
|
|
|
|
// 使用图片样式处理 composable
|
|
|
|
|
|
const {initImageStyles} = useImageStyles(
|
2025-10-17 15:25:14 +08:00
|
|
|
|
() => props.articleData?.content || '',
|
2025-10-13 13:51:40 +08:00
|
|
|
|
'.article-content',
|
|
|
|
|
|
{
|
|
|
|
|
|
maxWidth: '100%',
|
|
|
|
|
|
margin: '15px 0',
|
|
|
|
|
|
display: 'block',
|
|
|
|
|
|
boxSizing: 'border-box'
|
|
|
|
|
|
}
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
onMounted(() => {
|
2025-10-17 15:25:14 +08:00
|
|
|
|
// 只在客户端执行
|
|
|
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
|
|
// 加载CSS样式文件
|
|
|
|
|
|
loadCSSFiles()
|
2025-10-09 18:01:32 +08:00
|
|
|
|
|
2025-10-17 15:25:14 +08:00
|
|
|
|
// 加载JavaScript文件
|
|
|
|
|
|
loadJSFiles()
|
|
|
|
|
|
}
|
2025-10-09 18:01:32 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
2025-10-13 13:51:40 +08:00
|
|
|
|
// 初始化图片样式处理
|
|
|
|
|
|
initImageStyles()
|
2025-10-13 10:37:09 +08:00
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
const loadJSFiles = () => {
|
2025-10-17 15:25:14 +08:00
|
|
|
|
if (typeof document === 'undefined') return
|
|
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
const jsFiles = [
|
|
|
|
|
|
'/news/jquery.1.11.3.min.js',
|
|
|
|
|
|
'/news/bootstrap.min.js',
|
|
|
|
|
|
'/news/float.js',
|
2025-10-07 17:10:00 +08:00
|
|
|
|
]
|
2025-10-09 18:01:32 +08:00
|
|
|
|
|
|
|
|
|
|
jsFiles.forEach(src => {
|
|
|
|
|
|
// 检查是否已经加载过该JS文件
|
|
|
|
|
|
const existingScript = document.querySelector(`script[src="${src}"]`)
|
|
|
|
|
|
if (!existingScript) {
|
|
|
|
|
|
const script = document.createElement('script')
|
|
|
|
|
|
script.src = src
|
|
|
|
|
|
script.type = 'text/javascript'
|
|
|
|
|
|
document.head.appendChild(script)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-10-07 17:10:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
const loadCSSFiles = () => {
|
2025-10-17 15:25:14 +08:00
|
|
|
|
if (typeof document === 'undefined') return
|
|
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
const cssFiles = [
|
|
|
|
|
|
'/news/bootstrap.min.css',
|
|
|
|
|
|
'/news/main22.css',
|
|
|
|
|
|
'/news/new_index.css',
|
|
|
|
|
|
'/news/float.css',
|
|
|
|
|
|
'/news/animate.min.css'
|
|
|
|
|
|
]
|
2025-10-07 17:10:00 +08:00
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
cssFiles.forEach(href => {
|
|
|
|
|
|
// 检查是否已经加载过该CSS文件
|
|
|
|
|
|
const existingLink = document.querySelector(`link[href="${href}"]`)
|
|
|
|
|
|
if (!existingLink) {
|
|
|
|
|
|
const link = document.createElement('link')
|
|
|
|
|
|
link.rel = 'stylesheet'
|
|
|
|
|
|
link.href = href
|
|
|
|
|
|
link.type = 'text/css'
|
|
|
|
|
|
document.head.appendChild(link)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-10-07 17:10:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<view>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
<!-- 顶部 -->
|
|
|
|
|
|
<nav class="navbar navbar-default navbar-fixed-top" style="background: rgba(255,255,255,1);">
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
|
|
<div class="navbar-header">
|
|
|
|
|
|
<button class="navbar-toggle" data-target="#mynav" data-toggle="collapse">
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<span>创特科技</span>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</button>
|
2025-10-10 10:01:07 +08:00
|
|
|
|
<a href="/"><img
|
2025-10-13 10:09:35 +08:00
|
|
|
|
alt="logo"
|
2025-10-10 10:01:07 +08:00
|
|
|
|
class="img-responsive"
|
2025-10-13 10:09:35 +08:00
|
|
|
|
src="/news/top_logo.png" style='margin-top:4px'></a>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="mynav" class="collapse navbar-collapse">
|
|
|
|
|
|
<ul class="nav navbar-nav">
|
2025-10-10 10:01:07 +08:00
|
|
|
|
<li class="hidden-xs hidden-sm"><a href="/">首页 <span class="sr-only">(current)</span></a>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</li>
|
|
|
|
|
|
<li class="dropdown">
|
|
|
|
|
|
<a data-toggle="dropdown" role="button">解决方案 <span class="caret"/></a>
|
|
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
|
|
<li><a class="menu-group" href="javascript:void(0);">共享</a></li>
|
2025-10-10 10:01:07 +08:00
|
|
|
|
<li><a href="/sharedSolutions/bike">共享单车</a></li>
|
|
|
|
|
|
<li><a href="/sharedSolutions/carShare">共享汽车</a></li>
|
|
|
|
|
|
<li><a href="/sharedSolutions/sharedbed">共享陪护床</a></li>
|
|
|
|
|
|
<li><a href="/sharedSolutions/scooter">共享滑板车</a></li>
|
|
|
|
|
|
<li><a href="/sharedSolutions/eBike">共享助力车</a></li>
|
|
|
|
|
|
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
|
<li class="dropdown">
|
|
|
|
|
|
<a
|
2025-10-10 10:01:07 +08:00
|
|
|
|
aria-expanded="false" aria-haspopup="true" class="dropdown-toggle"
|
2025-10-11 09:42:31 +08:00
|
|
|
|
data-toggle="dropdown" href="/article/437#" role="button">定制开发 <span
|
2025-10-10 10:01:07 +08:00
|
|
|
|
class="caret"/></a>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
<ul class="dropdown-menu">
|
2025-10-10 10:01:07 +08:00
|
|
|
|
|
|
|
|
|
|
<li><a href="/softwareDevelopment/app">APP开发</a></li>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
<li class="divider" role="separator"/>
|
2025-10-10 10:01:07 +08:00
|
|
|
|
<li><a href="/softwareDevelopment/miniprogram">小程序开发</a></li>
|
|
|
|
|
|
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
</li>
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<li><a href="/about">关于创特 </a></li>
|
2025-10-10 09:30:11 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
2025-10-10 10:01:07 +08:00
|
|
|
|
<li><a href="/">电话:0755-85225123
|
2025-10-10 09:30:11 +08:00
|
|
|
|
<!-- <span class="hidden-xs hidden-sm"> 0755-85225123 / </span> 18123752516 --></a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div><!-- /.navbar-collapse -->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</nav>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<!-- 文章正文 -->
|
|
|
|
|
|
<section class="container" style="margin-top: 88px;">
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
<!-- 左边部分 -->
|
|
|
|
|
|
<div class="col-md-8 wow fadeInLeft animated" style="visibility: visible; animation-name: fadeInLeft;">
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<!-- 加载状态 -->
|
|
|
|
|
|
<div v-if="loading" class="loading-container" style="text-align: center; padding: 50px;">
|
2025-10-10 18:01:34 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="loading-spinner"
|
|
|
|
|
|
style="border: 4px solid #f3f3f3; border-top: 4px solid #ff8200; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto;"/>
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<p style="margin-top: 20px; color: #666;">正在加载文章...</p>
|
|
|
|
|
|
</div>
|
2025-10-10 18:01:34 +08:00
|
|
|
|
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<!-- 错误提示 -->
|
|
|
|
|
|
<div v-else-if="error" class="error-container" style="text-align: center; padding: 50px; color: #ff6b6b;">
|
|
|
|
|
|
<p>{{ error }}</p>
|
2025-10-10 18:01:34 +08:00
|
|
|
|
<button
|
|
|
|
|
|
style="margin-top: 20px; padding: 10px 20px; background: #ff8200; color: white; border: none; border-radius: 4px; cursor: pointer;"
|
2025-10-13 10:09:35 +08:00
|
|
|
|
@click="reloadPage">
|
2025-10-10 17:44:02 +08:00
|
|
|
|
重新加载
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
2025-10-10 18:01:34 +08:00
|
|
|
|
|
2025-10-10 17:44:02 +08:00
|
|
|
|
<!-- 文章内容 -->
|
|
|
|
|
|
<div v-else class="row">
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<div class="col-xs-12">
|
2025-10-17 15:25:14 +08:00
|
|
|
|
<h2>{{ articleData?.title || '暂无标题' }}</h2>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<p id="label" style="border-bottom: 1px solid #ddd; margin-top: 20px;">
|
2025-10-17 15:25:14 +08:00
|
|
|
|
<span>{{ articleData?.publishDate || '暂无日期' }}</span>
|
|
|
|
|
|
<span class="pull-right">分类:{{ articleData?.category || '暂无分类' }}</span>
|
2025-10-07 17:10:00 +08:00
|
|
|
|
</p>
|
2025-10-17 15:25:14 +08:00
|
|
|
|
<div class="article-content" v-html="articleData?.content || '暂无内容'"/>
|
2025-10-07 17:10:00 +08:00
|
|
|
|
</div>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
</div>
|
2025-10-07 17:10:00 +08:00
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<!-- 上一篇/下一篇 -->
|
|
|
|
|
|
<div class="nextorpre" style="margin-top: 38px; border-top: 1px solid #ddd; padding-top: 8px;">
|
|
|
|
|
|
<li class="pull-left">上一篇:
|
2025-10-17 15:25:14 +08:00
|
|
|
|
<a :href="articleData?.prevArticle?.url || '#'">{{ articleData?.prevArticle?.title || '暂无上一篇' }}</a>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
</li>
|
|
|
|
|
|
<li class="pull-right">下一篇:
|
2025-10-17 15:25:14 +08:00
|
|
|
|
<a :href="articleData?.nextArticle?.url || '#'">{{ articleData?.nextArticle?.title || '暂无下一篇' }}</a>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
</li>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<br><br><br><br>
|
|
|
|
|
|
</div><!--左边部分-->
|
2025-10-07 17:10:00 +08:00
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<!-- 右边部分 -->
|
|
|
|
|
|
<aside class="col-md-4" style="border-left: 1px solid #eee; background: #fefefe;">
|
|
|
|
|
|
<!-- 热门标签 -->
|
|
|
|
|
|
<div
|
|
|
|
|
|
class="widget tags wow fadeInRight animated"
|
|
|
|
|
|
style="margin-bottom: 30px !important; visibility: visible; animation-name: fadeInRight;">
|
|
|
|
|
|
<h4>热门标签</h4>
|
|
|
|
|
|
<ul class="tag-cloud">
|
|
|
|
|
|
<li v-for="tag in hotTags" :key="tag">
|
|
|
|
|
|
<a class="btn btn-xs" href="#" @click.prevent>{{ tag }}</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div><!-- 热门标签 -->
|
2025-10-07 17:10:00 +08:00
|
|
|
|
|
2025-10-11 08:45:18 +08:00
|
|
|
|
<!-- 推荐文章 -->
|
2025-10-09 18:01:32 +08:00
|
|
|
|
<div
|
|
|
|
|
|
class="sy_news animated" data-wow-delay="200ms"
|
|
|
|
|
|
style="visibility: visible; animation-delay: 200ms; animation-name: fadeInDown;">
|
2025-10-13 09:07:28 +08:00
|
|
|
|
<RecommendedArticles
|
|
|
|
|
|
:articles-per-type="3"
|
|
|
|
|
|
:show-title="false"
|
|
|
|
|
|
:show-types="['solution', 'developKnowledge', 'industryTrend']"
|
2025-10-11 08:45:18 +08:00
|
|
|
|
/>
|
2025-10-07 17:10:00 +08:00
|
|
|
|
</div>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
</aside><!-- 右边部分 -->
|
|
|
|
|
|
|
|
|
|
|
|
</div><!--/.row-->
|
|
|
|
|
|
</section><!--/#blog-->
|
|
|
|
|
|
</view>
|
2025-10-07 17:10:00 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-10-09 18:01:32 +08:00
|
|
|
|
/* 文章内容样式 */
|
|
|
|
|
|
.article-content {
|
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #333;
|
2025-10-13 10:37:09 +08:00
|
|
|
|
overflow: hidden; /* 防止内容溢出 */
|
|
|
|
|
|
word-wrap: break-word; /* 长单词换行 */
|
2025-10-09 18:01:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.article-content p {
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 10:37:09 +08:00
|
|
|
|
|
|
|
|
|
|
/* 响应式调整 */
|
|
|
|
|
|
@media (max-width: 1024px) {
|
2025-10-09 18:01:32 +08:00
|
|
|
|
.col-md-8, .col-md-4 {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
2025-10-13 10:37:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-10-07 17:10:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-09 18:01:32 +08:00
|
|
|
|
|
|
|
|
|
|
/* 标签云样式 */
|
|
|
|
|
|
.tag-cloud li {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
margin: 2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-cloud a {
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
|
color: #666;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-cloud a:hover {
|
|
|
|
|
|
background-color: #ff8200;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 推荐文章样式 */
|
|
|
|
|
|
.sy_news ul li {
|
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
|
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sy_news ul li:last-child {
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sy_news ul li a {
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sy_news ul li a:hover {
|
|
|
|
|
|
color: #ff8200;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.sy_news ul li a span {
|
|
|
|
|
|
color: #999;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 上一篇下一篇样式 */
|
|
|
|
|
|
.nextorpre {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nextorpre li {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nextorpre a {
|
|
|
|
|
|
color: #ff8200;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nextorpre a:hover {
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
2025-10-10 17:44:02 +08:00
|
|
|
|
|
|
|
|
|
|
/* 加载动画 */
|
|
|
|
|
|
@keyframes spin {
|
2025-10-10 18:01:34 +08:00
|
|
|
|
0% {
|
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
|
}
|
2025-10-10 17:44:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 加载状态样式 */
|
|
|
|
|
|
.loading-container {
|
|
|
|
|
|
min-height: 200px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 错误状态样式 */
|
|
|
|
|
|
.error-container {
|
|
|
|
|
|
min-height: 200px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
2025-10-13 10:37:09 +08:00
|
|
|
|
</style>
|
|
|
|
|
|
|