remindCourseManage.vue 700 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div>
  3. <!-- 顶部标题栏 -->
  4. <div>
  5. <div style="position: relative; display: flex; align-items: center; justify-content: center; height: 48px; background: #fff; border-bottom: 1px solid #eee;">
  6. <span style="position: absolute; left: 16px; cursor: pointer;" @click="handleBack">
  7. <i class="el-icon-arrow-left" style="font-size: 20px; color: #333;"></i>
  8. </span>
  9. <span style="font-weight: bold; font-size: 16px;">催课面板</span>
  10. </div>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: "remindCourseManage",
  17. methods: {
  18. handleBack() {
  19. this.$emit("back");
  20. }
  21. }
  22. };
  23. </script>
  24. <style scoped>
  25. </style>