24 lines
312 B
Vue
24 lines
312 B
Vue
<template>
|
|
<view class="teacher-schedule">
|
|
<view class="schedule-calendar">
|
|
<text>时间管理页</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
scheduleList: []
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.teacher-schedule {
|
|
padding: 20rpx;
|
|
}
|
|
</style>
|