app介绍

This commit is contained in:
zzyuan 2025-12-25 10:32:25 +08:00
parent 89ba93303b
commit 4f7de8bd9f
3 changed files with 162 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import { isRelogin } from '@/utils/request'
NProgress.configure({ showSpinner: false })
const whiteList = ['/login', '/register']
const whiteList = ['/login', '/register','/appIndex']
router.beforeEach((to, from, next) => {
NProgress.start()

View File

@ -61,6 +61,11 @@ export const constantRoutes = [
component: () => import('@/views/error/401'),
hidden: true
},
{//证件信息-证件操作记录
path: '/appIndex',
component: () => import('@/views/appIndex'),
hidden: true
},
{
path: '',
component: Layout,

156
src/views/appIndex.vue Normal file
View File

@ -0,0 +1,156 @@
<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>v1.1测试版本</span>
</p>
<p>
<b>应用名称:</b> <span>证途通:</span>
</p>
<p>
<b>项目简介:</b> <span>证途通:主要用于管理个人护照证件信息主要用于验证证件护照的真伪通过跳转微信12307移民局小程序验证信息,进行统一管理</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="https://app.liuyingyong.cn/build/download/1c91f3a0-dfd0-11f0-beb2-1de4779888ef"
target="_blank"
>https://app.liuyingyong.cn/build/download/1c91f3a0-dfd0-11f0-beb2-1de4779888ef</el-link
>
</p>
<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>