Authored by 鲁尚清

Merge branch 'master' of http://192.168.1.136:82/monitor_v3/hg-monitor-web into …

…master-v32-lushangqing
... ... @@ -109,7 +109,7 @@ const routes = [{
path: '/analysis',
name: 'analysis',
// component: () => myImport('views/analysis/components/addIndex/index')
component: () => myImport('views/analysis/components/add/index')
component: () => myImport('views/analysis/index')
}
];
... ...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="container" :style="{'height':height+'px','max-height':height+'px'}">
<div style="margin:0 0 5px 20px;font-size: 16px;color:#337ab7">
比对分析场景
</div>
<div class="drop">
<template slot-scope="scope">
<router-link :to="'/example/edit/'" class="link-type">
<img src="../../assets/images/analysis/icon-add.png"></img>
<div class="el-upload__text">
<em>点击添加对比分析</em>
</div>
</router-link>
</template>
</div>
</div>
<style type="text/css">
img {
padding-top: 30px;
}
</body>
</html>
\ No newline at end of file
.drop {
border: 2px dashed #0a93be;
width: 600px;
height: 160px;
line-height: 160px;
margin: 0 auto;
font-size: 16px;
border-radius: 5px;
text-align: center;
color: #bbb;
position: relative;
}
.el-upload__text {
height: 50px;
line-height: 50px;
em {
color: #0C4493;
font-style: normal;
}
}
.link-type,
.link-type:focus {
color: #337ab7;
cursor: pointer;
}
</style>
\ No newline at end of file
... ...