|
@@ -0,0 +1,45 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <section class="content" style="margin-top: -10px;">
|
|
|
+ <div class="box box-info">
|
|
|
+ <!-- 头信息 -->
|
|
|
+ <div
|
|
|
+ class="box-header with-border"
|
|
|
+ style="background-color:#D3DCE6;margin-bottom:20px;"
|
|
|
+ >
|
|
|
+ <h3 class="box-title">学生管理</h3>
|
|
|
+ <div class="box-tools pull-right">
|
|
|
+ <button
|
|
|
+ type="button"
|
|
|
+ class="btn btn-box-tool"
|
|
|
+ data-widget="collapse"
|
|
|
+ >
|
|
|
+ <i class="fa fa-minus"></i>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 正文信息 -->
|
|
|
+ <div class="box-body"></div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import { core_api } from "../constants/constants.js";
|
|
|
+import { mapState } from "vuex";
|
|
|
+
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {};
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapState({ user: state => state.user })
|
|
|
+ },
|
|
|
+ methods: {},
|
|
|
+ //初始化查询
|
|
|
+ created() {}
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped></style>
|