|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="workbench pagePadding">
|
|
|
+ <div class="workbench pagePadding" style="padding-top:24px">
|
|
|
<div
|
|
|
class="workbench-main"
|
|
|
v-loading="loading"
|
|
@@ -270,14 +270,23 @@ export default {
|
|
|
height: 100%;
|
|
|
li {
|
|
|
float: left;
|
|
|
- width: 24%;
|
|
|
- margin: 0 1% 0 0;
|
|
|
+ width: 23.5%;
|
|
|
+ position: relative;
|
|
|
+ height: 100%;
|
|
|
+ margin: 0 1.5% 0 0;
|
|
|
border: 1px solid rgba(121, 121, 121, 1);
|
|
|
+ &:last-child{
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
.taskTitle {
|
|
|
width: 100%;
|
|
|
height: 55px;
|
|
|
line-height: 55px;
|
|
|
text-align: center;
|
|
|
+ position: absolute;
|
|
|
+ top:0;
|
|
|
+ left:0;
|
|
|
+ z-index: 2;
|
|
|
border-bottom: 1px solid rgba(121, 121, 121, 1);
|
|
|
&.color1 {
|
|
|
background: rgba(250, 205, 145, 1);
|
|
@@ -292,6 +301,18 @@ export default {
|
|
|
background: rgba(255, 255, 128, 1);
|
|
|
}
|
|
|
}
|
|
|
+ .taskList{
|
|
|
+ position: relative;
|
|
|
+ padding:56px 0 0 0;
|
|
|
+ .no-data{
|
|
|
+ width: 100%;
|
|
|
+ height: 60px;
|
|
|
+ line-height: 60px;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ color: rgba(0,0,0,.65);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|