@@ -1,5 +1,8 @@
<template>
<div>
+ <div>
+
+ </div>
<span slot="footer" class="dialog-footer">
<el-button @click="$listeners.close">取 消</el-button>
<!-- <el-button @click="submitEducation" type="primary">确 定</el-button> -->
@@ -0,0 +1,27 @@
+<template>
+ <el-alert type="info">老师选择</el-alert>
+</template>
+<script>
+import { employeeLevelDetail } from '../api'
+export default {
+ props: ['detail'],
+ mounted() {
+ this.FetchDetail()
+ },
+ methods: {
+ async FetchDetail() {
+ try {
+ await employeeLevelDetail({
+ id: this.detail.id
+ })
+ } catch (error) {
+ console.log(error)
+ }
+};
+</script>
+<style lang="less" scoped>
+</style>