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.

62 lines
1.3 KiB

<template>
<div class="schedule-date">
<div class="tab-content">
<el-tabs>
<el-tab-pane>
<!-- <svg-icon icon-class="icon-no-scheduled" style="font-size:13px;" /> -->
<span slot="label" class="no-schedule-tab"><i class="el-icon-scissors" /> 手术医生日程</span>
<!-- 号源标识 1:手术号源 2:检查号源 -->
<doctorSchedule title="newAddNUm" />
</el-tab-pane>
<!-- <el-tab-pane label="待审核">
<span slot="label" class="no-schedule-tab"><i class="el-icon-reading" /> 检查医生日程</span>>
<doctorSchedule :source-flag="2" title="newAddNUm" />
</el-tab-pane> -->
</el-tabs>
</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>