You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
780 B
52 lines
780 B
<template>
|
|
<div class="schedule-date">
|
|
<div class="tab-content">
|
|
<!-- 号源标识 1:手术号源 2:检查号源 -->
|
|
<doctorSchedule title="newAddNUm" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/* eslint-disable */
|
|
import DoctorSchedule from "@/page-subspecialty/views/modules/nurseManagement/reservation/schedule/doctor-schedule.vue";
|
|
|
|
export default {
|
|
components: {
|
|
DoctorSchedule
|
|
},
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
|
|
created() {
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.schedule-date {
|
|
font-size: 14px;
|
|
.tab-content {
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
<style lang="scss">
|
|
.schedule-date {
|
|
.el-tabs__nav-wrap::after {
|
|
height: 0;
|
|
}
|
|
.el-tabs__header {
|
|
padding: 0 10px;
|
|
margin: 0;
|
|
}
|
|
}
|
|
</style>
|