|
|
@@ -60,7 +60,7 @@
|
|
|
<div class="tab-panel">
|
|
|
<div class="file-item" v-for="(v,i) in fileList" :key="i">
|
|
|
<a :href="imageUrl(v.url)" target="_blank">
|
|
|
- <i>{{v.name}}</i>
|
|
|
+ <span><i class="el-icon-document"></i>{{v.name}}</span>
|
|
|
<span>{{v.createTime}}</span>
|
|
|
</a>
|
|
|
</div>
|
|
|
@@ -83,14 +83,16 @@
|
|
|
<p>{{selectMsg.publishTime}}</p>
|
|
|
<div class="content-box">
|
|
|
<p>{{selectMsg.content}}</p>
|
|
|
- <ul v-if="selectMsg.fileList && selectMsg.fileList.length > 0">
|
|
|
- <li v-for="(v,i) in selectMsg.fileList" :key="v.url">
|
|
|
- <a :href="imageUrl(v.url)" target="_blank">
|
|
|
-<!-- <i class="el-icon-document"></i>-->
|
|
|
- {{v.name}}
|
|
|
- </a>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
+ <div>
|
|
|
+ 附件:
|
|
|
+ <ul v-if="selectMsg.fileList && selectMsg.fileList.length > 0">
|
|
|
+ <li v-for="(v,i) in selectMsg.fileList" :key="v.url">
|
|
|
+ <a :href="imageUrl(v.url)" target="_blank">
|
|
|
+ <span><i class="el-icon-document"></i>{{v.name}}</span>
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</DialogCom>
|
|
|
@@ -123,7 +125,7 @@ export default {
|
|
|
name:'预案演练',
|
|
|
path:'/drillTask',
|
|
|
query:{
|
|
|
- status:0
|
|
|
+ status:'0'
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
@@ -140,6 +142,9 @@ export default {
|
|
|
{
|
|
|
name:'隐患问题',
|
|
|
path:'/question/list',
|
|
|
+ query: {
|
|
|
+ confirmStatus: 0
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
name:'隐患整改',
|
|
|
@@ -293,7 +298,7 @@ export default {
|
|
|
font-size: 15px;
|
|
|
padding: 0 10px;
|
|
|
color:#1ea8e9;
|
|
|
- text-decoration:underline;
|
|
|
+ //text-decoration:underline;
|
|
|
line-height: 39px;
|
|
|
>a{
|
|
|
display: flex;
|
|
|
@@ -307,10 +312,13 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
&:hover{
|
|
|
- background-color: #6eb9ec;
|
|
|
- color:#fff;
|
|
|
- transition: all .38s ease-out;
|
|
|
+ text-decoration:underline;
|
|
|
}
|
|
|
+ //&:hover{
|
|
|
+ // background-color: #6eb9ec;
|
|
|
+ // color:#fff;
|
|
|
+ // transition: all .38s ease-out;
|
|
|
+ //}
|
|
|
}
|
|
|
.card-group {
|
|
|
margin-top: 20px;
|
|
|
@@ -393,14 +401,19 @@ export default {
|
|
|
width: 100%;
|
|
|
color: #777;
|
|
|
}
|
|
|
- >ul{
|
|
|
- font-size: 15px;
|
|
|
- color:#1ea8e9;
|
|
|
- >li{
|
|
|
- margin-bottom: 6px;
|
|
|
- }
|
|
|
- >li:hover{
|
|
|
- text-decoration:underline;
|
|
|
+ >div{
|
|
|
+ >ul{
|
|
|
+ font-size: 15px;
|
|
|
+ margin: 0;
|
|
|
+ color:#1ea8e9;
|
|
|
+ >li{
|
|
|
+ align-items: center;
|
|
|
+ list-style:none;
|
|
|
+ margin-bottom: 4px;
|
|
|
+ }
|
|
|
+ >li:hover{
|
|
|
+ text-decoration:underline;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|