|
|
<!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 |
...
|
...
|
|