CommetItem.vue 745 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <el-row>
  3. <el-col :span="3">
  4. <img :src="commet.icon" class="commet-user-icon"/>
  5. </el-col>
  6. <el-col :span="20">
  7. <div>
  8. <span class="commet-user-name">{{commet.userName}}</span> {{commet.time}}
  9. </div>
  10. <div class="commet-content">{{commet.message}}</div>
  11. </el-col>
  12. </el-row>
  13. </template>
  14. <script>
  15. export default {
  16. props: ["commet"]
  17. }
  18. </script>
  19. <style scoped>
  20. .el-row {
  21. margin: 10px 0 15px;
  22. }
  23. .el-col-3 {
  24. text-align: center;
  25. }
  26. .commet-user-icon {
  27. max-width: 80px;
  28. width: 80px;
  29. height: 80px;
  30. border-radius: 80px;
  31. border: 1px solid #c0c4cc;
  32. }
  33. .commet-user-name {
  34. font-size: 18px;
  35. font-weight: 500;
  36. }
  37. .commet-content {
  38. padding: 10px 0;
  39. min-height: 40px;
  40. }
  41. </style>