140 lines
3.0 KiB
Vue
140 lines
3.0 KiB
Vue
<template>
|
||
<div class="app-container home">
|
||
<el-row :gutter="20">
|
||
<el-col :sm="24" :lg="12" style="padding-left: 20px">
|
||
<h2>安徽机械化施工装备平台</h2>
|
||
<!-- <p>
|
||
<b>当前版本:</b> <span>v{{ version }}</span>
|
||
</p> -->
|
||
</el-col>
|
||
</el-row>
|
||
<el-divider />
|
||
<el-row :gutter="20">
|
||
<el-col :xs="24" :sm="24" :md="12" :lg="8">
|
||
<el-card class="update-log">
|
||
<div slot="header" class="clearfix">
|
||
<span>联系信息</span>
|
||
</div>
|
||
<div class="body">
|
||
<p>
|
||
<i class="el-icon-s-promotion"></i> 官网:<el-link
|
||
href="http://www.ahbonus.cn"
|
||
target="_blank"
|
||
>http://www.ahbonus.cn</el-link
|
||
>
|
||
</p>
|
||
</div>
|
||
</el-card>
|
||
</el-col>
|
||
<el-col :xs="24" :sm="24" :md="12" :lg="8">
|
||
<!-- <el-card class="update-log">
|
||
<div slot="header" class="clearfix">
|
||
<span>更新日志</span>
|
||
</div>
|
||
<el-collapse accordion>
|
||
<el-collapse-item title="v24.7.0">
|
||
<ol>
|
||
<li>支持多权限字符匹配角色数据权限</li>
|
||
<li>新增密码最大错误次数/锁定时间</li>
|
||
<li>登录日志新增解锁账户功能</li>
|
||
</ol>
|
||
</el-collapse-item>
|
||
|
||
<el-collapse-item title="v27.7.1">
|
||
<ol>
|
||
<li>菜单新增终端管理配置</li>
|
||
<li>记录登录退出日志信息</li>
|
||
<li>数据范围过滤属性调整</li>
|
||
<li>权限部分代码调整</li>
|
||
<li>其他细节优化</li>
|
||
</ol>
|
||
</el-collapse-item>
|
||
</el-collapse>
|
||
</el-card> -->
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: "Index",
|
||
data() {
|
||
return {
|
||
// 版本号
|
||
version: "24.7.1",
|
||
};
|
||
},
|
||
methods: {
|
||
goTarget(href) {
|
||
window.open(href, "_blank");
|
||
},
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.home {
|
||
blockquote {
|
||
padding: 10px 20px;
|
||
margin: 0 0 20px;
|
||
font-size: 17.5px;
|
||
border-left: 5px solid #eee;
|
||
}
|
||
hr {
|
||
margin-top: 20px;
|
||
margin-bottom: 20px;
|
||
border: 0;
|
||
border-top: 1px solid #eee;
|
||
}
|
||
.col-item {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
ul {
|
||
padding: 0;
|
||
margin: 0;
|
||
}
|
||
|
||
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||
font-size: 13px;
|
||
color: #676a6c;
|
||
overflow-x: hidden;
|
||
|
||
ul {
|
||
list-style-type: none;
|
||
}
|
||
|
||
h4 {
|
||
margin-top: 0px;
|
||
}
|
||
|
||
h2 {
|
||
margin-top: 10px;
|
||
font-size: 26px;
|
||
font-weight: 100;
|
||
}
|
||
|
||
p {
|
||
margin-top: 10px;
|
||
|
||
b {
|
||
font-weight: 700;
|
||
}
|
||
}
|
||
|
||
.update-log {
|
||
ol {
|
||
display: block;
|
||
list-style-type: decimal;
|
||
margin-block-start: 1em;
|
||
margin-block-end: 1em;
|
||
margin-inline-start: 0;
|
||
margin-inline-end: 0;
|
||
padding-inline-start: 40px;
|
||
}
|
||
}
|
||
}
|
||
</style>
|
||
|