| | |
| | | <template> |
| | | <div> |
| | | <el-row :gutter="20"> |
| | | <el-col :span="3" v-for="item in listMyTask"> |
| | | <el-col :xs="8" :sm="8" :md="8" :lg="6" :xl="4" v-for="item in listMyTask"> |
| | | <div class="box" :style="item.style"> |
| | | {{item.name}} |
| | | <div><avue-count-up class="value" :end="item.count"></avue-count-up></div> |
| | |
| | | </script> |
| | | |
| | | <style scoped> |
| | | .el-col{margin-bottom: 0} |
| | | .box{ |
| | | text-align: center; |
| | | background: rgb(235, 238, 245); |
| | | color: #303133; |
| | | height: 74px; |
| | | height: 70px; |
| | | margin: 10px 0!important; |
| | | padding: 15px 20px; |
| | | padding: 15px 10px; |
| | | position: relative; |
| | | border-radius: 4px; |
| | | box-sizing: border-box; |
| | |
| | | .value{ |
| | | font-size: 12px; |
| | | opacity: .69; |
| | | line-height: 24px; |
| | | line-height: 20px; |
| | | margin-top: 5px; |
| | | display: block; |
| | | } |
| | | </style> |