wolyshaw 4 年之前
父节点
当前提交
e6c2099c86

+ 3 - 0
src/views/categroyManager/insideSetting/modals/handover.vue

@@ -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> -->

+ 27 - 0
src/views/categroyManager/insideSetting/modals/select-user.vue

@@ -0,0 +1,27 @@
+<template>
+  <div>
+    <el-alert type="info">老师选择</el-alert>
+  </div>
+</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>