Files
xgy-oa/klp-ui/src/views/index.vue

196 lines
5.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="dashboard-editor-container">
<img src="http://xgyzhonggong.com/upload/img/20250427091033.jpg" alt="">
<div class="aboutus">
<el-row :gutter="30">
<!-- 左栏 -->
<el-col :span="12" :xs="24">
<div class="aboutus-title">
<h2>关于我们</h2>
<p>ABOUT US</p>
</div>
<div class="aboutus-left">
<p class="aboutus-desc">
嘉祥鑫广宇有限公司成立于2019 03 12 注册地山东省济宁市嘉祥县经济开发区为有限责任公司主营钢材金属材料钢结构金属制品加工销售和你研究的琛德实业同属嘉祥县钢铁加工产业链配套企业服务鲁西南基建机械制造钢结构工程领域是嘉祥县本地重点规上工业配套企业
</p>
<p class="aboutus-desc">
一般项目金属材料销售高性能有色金属及合金材料销售钢压延加工金属结构制造金属结构销售机械零件零部件加工机械零件零部件销售生产性废旧金属回收普通货物仓储服务装卸搬运技术服务技术开发技术咨询技术交流
</p>
</div>
<statistic-group />
</el-col>
<!-- 右栏 -->
<el-col :span="12" :xs="24">
<img src="http://xgyzhonggong.com/upload/img/20251015103934.jpg" alt="">
<!-- <div class="aboutus-right">
<p class="aboutus-detail">
嘉祥鑫广宇有限公司成立于 2019 3 12 坐落于山东省济宁市嘉祥县经济开发区为自然人控股的规模以上工业企业厂区占地约 38 配套钢结构加工车间钢材仓储区等生产设施公司主要从事金属材料高性能合金材料钢结构件及机械零部件的加工与销售同时开展生产性废旧金属回收普通货物仓储货物进出口等业务是嘉祥县本地钢铁加工产业链重要配套企业
</p>
<p class="aboutus-detail">
公司聚焦钢材加工及金属构件领域技术研发与产能升级先后实施钢材及金属结构件加工技改高性能合金材料扩产等县级工业项目累计拥有钢结构加工零部件配套相关实用新型专利 8 企业合规经营水平良好获评 20232024 年度纳税信用 A 级纳税人安全生产标准化三级企业纳入嘉祥县工业企业 亩产效益 综合评价体系为区域机械制造基建工程领域提供稳定的金属配套服务
</p>
</div> -->
</el-col>
</el-row>
</div>
<!-- <div>
<statistic-group />
</div> -->
<!-- <AllApplications />
<el-row :gutter="10">
<el-col :span="18">
<el-empty description="办公模块定制开发中"></el-empty>
</el-col>
<el-col :span="6">
<mini-calendar />
</el-col>
</el-row> -->
</div>
</template>
<script>
import StatisticGroup from '@/components/HomeModules/StatisticGroup.vue'
// import AllApplications from '@/components/HomeModules/AllApplications.vue'
// import MiniCalendar from '@/components/HomeModules/MiniCalendar.vue'
export default {
name: 'Index',
components: {
// PanelGroup,
StatisticGroup,
// AllApplications,
// MiniCalendar,
},
}
</script>
<style lang="scss" scoped>
.dashboard-editor-container {
background-color: #fff;
position: relative;
img {
width: 100%;
height: auto;
}
.chart-wrapper {
background: #fff;
padding: 16px 16px 0;
margin-bottom: 32px;
}
}
// 关于我们区域样式
.aboutus {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
// 标题
.aboutus-title {
margin-bottom: 25px;
h2 {
font-size: 28px;
color: #333;
margin: 0;
}
p {
font-size: 14px;
color: #999;
margin: 5px 0 0 0;
}
}
// 左栏
.aboutus-left {
text-indent: 2em;
line-height: 2em;
font-size: 14px;
.aboutus-desc {
color: #666;
line-height: 1.8;
margin-bottom: 18px;
}
// 特色模块
.aboutus-features {
display: flex;
justify-content: space-between;
margin: 30px 0;
.feature-item {
display: flex;
flex-direction: column;
align-items: center;
.feature-icon {
width: 42px;
height: 42px;
border-radius: 50%;
background-color: #9370db; // 截图紫色图标背景
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
.icon {
color: #fff;
font-size: 22px;
}
}
.feature-text {
font-size: 14px;
color: #333;
}
}
}
// 按钮
.read-more-btn {
border: 1px solid #333;
background: transparent;
padding: 8px 22px;
font-size: 14px;
cursor: pointer;
transition: background 0.3s;
&:hover {
background-color: #f5f5f5;
}
}
}
// 右栏
.aboutus-right {
.aboutus-detail {
font-size: 14px;
color: #666;
line-height: 1.8;
margin-bottom: 18px;
}
}
}
// 响应式适配
@media (max-width: 1024px) {
.dashboard-editor-container {
.aboutus {
padding: 20px 25px;
.el-row {
.el-col:first-child {
margin-bottom: 30px;
}
}
}
}
}
</style>