|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
- <el-card class="box-card">
|
|
|
+ <el-card class="box-card" style="margin-left: 0px">
|
|
|
<div slot="header" class="clearfix">
|
|
|
- <span>已办业务</span>
|
|
|
- <el-button style="float: right; padding: 3px 0;color: #FFFFFF;" type="text">更多</el-button>
|
|
|
+ <span>办结业务</span>
|
|
|
+ <el-button style="float: right; padding: 3px 0;color: #202020;" type="text">更多</el-button>
|
|
|
</div>
|
|
|
- <el-table :data="tableData":header-cell-style="{background:'#eee',width:'100%'}">
|
|
|
+ <el-table class="body" :data="tableData" :header-cell-style="{background:'#eee',width:'100%'}">
|
|
|
<el-table-column type="index"width="50" align="center"></el-table-column>
|
|
|
<el-table-column prop="name" label="业务名称" width='300'min-width="60%" align="center"></el-table-column>
|
|
|
<el-table-column prop="date"label="完成时间"align="center"></el-table-column>
|
|
@@ -36,6 +36,19 @@
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-<style>
|
|
|
+<style lang="less" scoped>
|
|
|
+ .clearfix{
|
|
|
+ color:#1890ff;
|
|
|
+ }
|
|
|
+ .el-card__header{
|
|
|
+ background: #f5f5f5;
|
|
|
+ }
|
|
|
+ .body{
|
|
|
+ height: 319px;
|
|
|
+ }
|
|
|
+ .el-card__body {
|
|
|
+ padding: 15px 20px 20px 20px;
|
|
|
+ height: 354px;
|
|
|
+ }
|
|
|
|
|
|
</style>
|