mark-score-list.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <el-drawer append-to-body title="点评记录" :visible.sync="show" size="400px" direction="ltr" style="backdrop-filter: blur(4px);">
  3. <u-cell-group v-for="index in 20">
  4. <u-cell class="ui-hover" clickable title="李杰">
  5. <image slot="icon" class="ui-mr10" src="https://zhxy.obs.cn-hz1.ctyun.cn:443/static/student_icon/0.png" style="width: 40px;height: 40px;"></image>
  6. <!-- <view slot="title" class="ui-flex-row ui-flex-align-center">
  7. <u-tag plain size="mini" text="优秀发言"></u-tag>
  8. <text>李杰</text>
  9. </view> -->
  10. <text slot="label" class="txt-muted">今天 23:52:12</text>
  11. <el-tag slot="value" plain>优秀发言 +1</el-tag>
  12. <!-- <u-badge slot="value" value="+1" plain size="mini" type="success"></u-badge> -->
  13. </u-cell>
  14. <u-cell class="ui-hover" clickable title="李杰">
  15. <image slot="icon" class="ui-mr10" src="https://zhxy.obs.cn-hz1.ctyun.cn:443/static/student_icon/0.png" style="width: 40px;height: 40px;"></image>
  16. <text slot="label" class="txt-muted">今天 23:52:12</text>
  17. <!-- <u-badge slot="value" value="-1" plain size="mini" type="error"></u-badge> -->
  18. <el-tag slot="value" plain type="danger">上课开小差 -1</el-tag>
  19. </u-cell>
  20. </u-cell-group>
  21. <view>
  22. <text class="text-center ui-m ui-p">加载更多</text>
  23. </view>
  24. </el-drawer>
  25. </template>
  26. <script>
  27. export default {
  28. data(){
  29. return {
  30. show : false,
  31. }
  32. },
  33. methods : {
  34. open(){
  35. this.show = true
  36. }
  37. }
  38. }
  39. </script>
  40. <style>
  41. </style>