25 lines
678 B
Vue
25 lines
678 B
Vue
<template>
|
|
<a-card class="rowGutter" id="rkjcDom">
|
|
<template #title>
|
|
<span style="font-size: 24px;font-weight: bold;">任教课程</span>
|
|
<span style="margin-left: 10px;"><a href="javascript:void(0);" @click="openChangeKcPage">修改课程提醒</a></span>
|
|
</template>
|
|
<!-- <template #extra></template> -->
|
|
<div></div>
|
|
</a-card>
|
|
<baseModal ref="registerForm"/>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import baseModal from './baseModal.vue';
|
|
const registerForm = ref();
|
|
|
|
/**
|
|
* 打开修改课程提醒的表单
|
|
*/
|
|
function openChangeKcPage(){
|
|
registerForm.value.add();
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
|
</style> |