This commit is contained in:
宋伟佳
2021-11-23 18:31:58 +08:00
parent 6f89978a4f
commit 780f4f095c
5 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
font-weight: 600; font-weight: 600;
} }
.el-submenu__title, .el-menu-item{ .el-submenu__title, .el-menu-item{
font-size: 15px; font-size: 14px;
background-color: transparent !important; background-color: transparent !important;
&::before{ &::before{
content: ''; content: '';
+2 -3
View File
@@ -2,7 +2,7 @@
<template> <template>
<div class="nav-menu"> <div class="nav-menu">
<div class="lattice" style=" box-shadow:1px 1px 10px rgba(0,0,0,0.1);" > <div class="lattice" style=" box-shadow:1px 1px 10px rgba(0,0,0,0.1);" >
<div class="title"><i class="el-icon-s-promotion"></i> 快捷入口</div> <div class="title" ><i class="el-icon-s-promotion"></i> 快捷入口</div>
<div class="menu-wrap"> <div class="menu-wrap">
<enter-card v-for="(item, index) in list" <enter-card v-for="(item, index) in list"
:key="index" :key="index"
@@ -77,8 +77,7 @@
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
background: #fff; background: #fff;
font-size: 16px; font-size: 14px;
font-weight: bold;
border-radius: 10px; border-radius: 10px;
} }
.menu-wrap { .menu-wrap {
@@ -10,7 +10,7 @@
<ul> <ul>
<li v-for="item in toDoTaskList" :key="item.id" class="time-title"> <li v-for="item in toDoTaskList" :key="item.id" class="time-title">
<div style="height: 30px"> <div style="height: 30px">
<span @click="dealWith(item)" style="line-height: 30px">{{ item.prcName }}</span> <span @click="dealWith(item)" style="line-height: 30px; font-size: 12px;">{{ item.prcName }}</span>
</div> </div>
</li> </li>
</ul> </ul>
@@ -1284,8 +1284,7 @@ export default {
display: inline-block; display: inline-block;
margin: 15px; margin: 15px;
color: #333333; color: #333333;
font-size: 16px; font-size: 14px;
font-weight: bold;
} }
.more { .more {
float: right; float: right;
+1 -1
View File
@@ -187,7 +187,7 @@ export default {
} }
.footer { .footer {
height: 90px; height: 90px;
line-height: 44px; line-height: 33px;
//margin-top: 0.3vh; //margin-top: 0.3vh;
//line-height: 5.2vh; //line-height: 5.2vh;
background: #FFFFFF; background: #FFFFFF;
@@ -1413,7 +1413,10 @@ export default {
}, },
// 获取doc文件 // 获取doc文件
downloadFile(data) { downloadFile(data) {
window.open(data.docRealFile); let URL = 'http://10.100.5.116:4201/' + data.docRealName
window.open(URL)
// console.log(URL);
// window.open(data.docRealFile);
}, },
// 删除 // 删除
delSingalData(row) { delSingalData(row) {