12345678910111213141516171819202122232425262728 |
- <template>
- <div>
- <!-- 顶部标题栏 -->
- <div>
- <div style="position: relative; display: flex; align-items: center; justify-content: center; height: 48px; background: #fff; border-bottom: 1px solid #eee;">
- <span style="position: absolute; left: 16px; cursor: pointer;" @click="handleBack">
- <i class="el-icon-arrow-left" style="font-size: 20px; color: #333;"></i>
- </span>
- <span style="font-weight: bold; font-size: 16px;">催课面板</span>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: "remindCourseManage",
- methods: {
- handleBack() {
- this.$emit("back");
- }
- }
- };
- </script>
- <style scoped>
- </style>
|