This commit is contained in:
zhuoda
2020-01-05 15:19:50 +08:00
parent a5279ac977
commit 19c82a21a1
11 changed files with 147 additions and 32 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div style="text-align:center">
<img src="http://smartadmin.1024lab.net/image/smart-admin-log-400@400.png"/>
<p style="text-align:left;font-size:16px;margin-top:-40px">
SmartAdmin由河南·洛阳 <a href="https://www.1024lab.net/" target="_blank">1024创新实验室</a>团队研发的一套互联网企业级的通用型中后台解决方案使用SpringBoot和Vue前后端分离
</p>
<br/>
<p style="text-align:left;font-size:16px">
<font color="#DC143C"><strong>我们开源一套漂亮的代码和一套整洁的代码规范</strong></font>让大家在这浮躁的代码世界里感受到一股把代码写好的清流同时又让开发者节省大量的时间减少加班快乐工作热爱生活
</p>
<br/>
<p style="text-align:left;font-size:16px">
<font color="#DC143C"><strong>你的star 是我们最强的动力感谢支持 => </strong></font>
<a target="_blank" href="https://github.com/1024-lab/smart-admin">
<img style="width: 82px;height: 20px;margin-right: 10px" alt="" src="https://img.shields.io/github/stars/1024-lab/smart-admin.svg?logo=github&style=social">
</a>
</p>
</div>
</template>
<script>
export default {
name: 'Ad',
props: {
},
computed: {
},
mounted () {
},
methods: {
}
};
</script>

View File

@@ -0,0 +1,2 @@
import Ad from './ad.vue';
export default Ad;

View File

@@ -48,6 +48,13 @@
</HomeCard>
</i-col>
</Row>
<Modal
v-model="adModal" width="800">
<Ad/>
</Modal>
</div>
</template>
@@ -62,6 +69,7 @@ import ChartBar from './components/chart-bar';
import HomeCircle from './components/home-circle';
import HomeProgress from './components/home-progress';
import ChartFunnel from './components/chart-funnel';
import Ad from '@/components/smart-admin-ad';
export default {
name: 'Home',
@@ -75,11 +83,13 @@ export default {
HomeCircle,
ChartGauge,
ChartBar,
HomeProgress
HomeProgress,
Ad
},
props: {},
data() {
return {
adModal:true,
infoCardData: [
{
title: '新增用户',

View File

@@ -84,6 +84,10 @@ export default {
title: '操作系统',
key: 'remoteOs'
},
{
title: 'Ip',
key: 'remoteIp'
},
{
title: '用户端口',
key: 'remotePort'