|
@@ -7,7 +7,7 @@
|
|
|
</template>
|
|
|
|
|
|
<a-layout>
|
|
|
- <a-layout-content style="height:100%;background-color:white">
|
|
|
+ <a-layout-content style="height:100%;background-color:white;padding: 20px;">
|
|
|
<div style="display: inline-block;float: right;">
|
|
|
<a-button type="link" icon="swap">
|
|
|
排序
|
|
@@ -39,17 +39,17 @@
|
|
|
<task-details ref="taskDetails" v-show="taskconfig" :taskInfo="taskInfo" @collapseSider="closeConfig"></task-details>
|
|
|
<a-card title="建议" style="width:300px;" v-show="taskdrawer">
|
|
|
<div slot="extra">
|
|
|
- <a-button size="small" icon="close" @click="closeDrawer"></a-button>
|
|
|
+ <a-button type="link" size="small" icon="close" @click="closeDrawer" ghost></a-button>
|
|
|
</div>
|
|
|
- <div v-if="yesterdayTask.length!=0">
|
|
|
+ <div v-if="yesterdayTask.length!=0" style="padding-bottom: 10px;">
|
|
|
<h4><strong>昨天</strong></h4>
|
|
|
<move-task-list :taskdata="yesterdayTask" />
|
|
|
</div>
|
|
|
- <div v-if="beforeTask.length!=0">
|
|
|
+ <div v-if="beforeTask.length!=0" style="padding-bottom: 10px;">
|
|
|
<h4><strong>先前</strong></h4>
|
|
|
<move-task-list :taskdata="beforeTask" />
|
|
|
</div>
|
|
|
- <div v-if="latelyTask.length!=0">
|
|
|
+ <div v-if="latelyTask.length!=0" style="padding-bottom: 10px;">
|
|
|
<h4><strong>最近添加</strong></h4>
|
|
|
<move-task-list :taskdata="latelyTask" />
|
|
|
</div>
|
|
@@ -339,6 +339,5 @@ export default {
|
|
|
background-color: white;
|
|
|
} >>> .ant-collapse-content .ant-collapse-content-box {
|
|
|
padding: 0px;
|
|
|
-
|
|
|
}
|
|
|
</style>
|