教务系统实训四

实训(实训四)

projectName文件,在models目录下创建classs.js文件

const mongoose = require('mongoose') const Schema= mongoose.Schema const feld={ name: String, //人物标签 level:String, renshu: Number, school : { type: Schema.Types.ObjectId, ref: 'School' }, academy : { type: Schema.Types.ObjectId, ref: 'Academy' } } //自动添加更新时间创建时间: let personSchema = new mongoose.Schema(feld, {timestamps: {createdAt: 'created', updatedAt: 'updated'}}) module.exports= mongoose.model('Classs',personSchema)

projectName下的routes目录,创建classs.js

const router = require('koa-router')() let Model = require("../db/models/classs"); router.prefix('/classs') router.get('/', function (ctx, next) { ctx.body = 'this is a users response!' }) router.post('/add', async function (ctx, next) { console.log(ctx.request.body) let model = new Model(ctx.request.body); model = await model.save(); console.log('user',model) ctx.body = model }) router.post('/find', async function (ctx, next) { let models = await Model. find({}).populate('academy').populate('school') ctx.body = models }) router.post('/get', async function (ctx, next) { // let users = await User. // find({}) console.log(ctx.request.body) let model = await Model.find(ctx.request.body) console.log(model) ctx.body = model }) router.post('/update', async function (ctx, next) { console.log(ctx.request.body) let pbj = await Model.update({ _id: ctx.request.body._id }, ctx.request.body); ctx.body = pbj }) router.post('/delete', async function (ctx, next) { console.log(ctx.request.body) await Model.remove({ _id: ctx.request.body._id }); ctx.body = 'shibai ' }) module.exports = router

app.js中挂载路由

const classs= require('./routes/classs') app.use(classs.routes(), classs.allowedMethods())

vue-admin-template-master文件,在src/views目录下创建一个classs模块,并创建academy.vue文件

import { mapGetters } from 'vuex' export default { name: 'classs', computed: { ...mapGetters([ 'name' ]) }, data(){ return{ schools:[], academys:[], //列表内容 options: [ ], apiModel:'classs', form:{} } }, methods:{ onSubmit(){ if(this.form._id){ this.$http.post(`/api/${this.apiModel}/update`,this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) }else { this.$http.post('/api/'+this.apiModel+'/add',this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) } }, schoolChange(val1){ //显示学院选择栏目 this.$http.post('/api/academy/get',{school:val1}).then(res => { if(res&&res.length>0){ this.academys = res console.log('res:', res) } }) } }, mounted() { if(this.$route.query._id){ this.$http.post('/api/'+this.apiModel+'/get',{_id:this.$route.query._id}).then(res => { if(res&&res.length>0){ this.form = res[0] this.schoolChange(this.form.school) } }) } //显示学校选择栏目 this.$http.post('/api/school/find').then(res => { if(res&&res.length>0){ this.schools = res console.log('res:', res) } }) } } .dashboard { &-container { margin: 30px; } &-text { font-size: 30px; line-height: 46px; } }
立即创建 取消
import { mapGetters } from 'vuex' export default { name: 'classs', computed: { ...mapGetters([ 'name' ]) }, data(){ return{ schools:[], academys:[], //列表内容 options: [ ], apiModel:'classs', form:{} } }, methods:{ onSubmit(){ if(this.form._id){ this.$http.post(`/api/${this.apiModel}/update`,this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) }else { this.$http.post('/api/'+this.apiModel+'/add',this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) } }, schoolChange(val1){ //显示学院选择栏目 this.$http.post('/api/academy/get',{school:val1}).then(res => { if(res&&res.length>0){ this.academys = res console.log('res:', res) } }) } }, mounted() { if(this.$route.query._id){ this.$http.post('/api/'+this.apiModel+'/get',{_id:this.$route.query._id}).then(res => { if(res&&res.length>0){ this.form = res[0] this.schoolChange(this.form.school) } }) } //显示学校选择栏目 this.$http.post('/api/school/find').then(res => { if(res&&res.length>0){ this.schools = res console.log('res:', res) } }) } } .dashboard { &-container { margin: 30px; } &-text { font-size: 30px; line-height: 46px; } }
立即创建 取消
import { mapGetters } from 'vuex' export default { name: 'classs', computed: { ...mapGetters([ 'name' ]) }, data(){ return{ schools:[], academys:[], //列表内容 options: [ ], apiModel:'classs', form:{} } }, methods:{ onSubmit(){ if(this.form._id){ this.$http.post(`/api/${this.apiModel}/update`,this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) }else { this.$http.post('/api/'+this.apiModel+'/add',this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) } }, schoolChange(val1){ //显示学院选择栏目 this.$http.post('/api/academy/get',{school:val1}).then(res => { if(res&&res.length>0){ this.academys = res console.log('res:', res) } }) } }, mounted() { if(this.$route.query._id){ this.$http.post('/api/'+this.apiModel+'/get',{_id:this.$route.query._id}).then(res => { if(res&&res.length>0){ this.form = res[0] this.schoolChange(this.form.school) } }) } //显示学校选择栏目 this.$http.post('/api/school/find').then(res => { if(res&&res.length>0){ this.schools = res console.log('res:', res) } }) } } .dashboard { &-container { margin: 30px; } &-text { font-size: 30px; line-height: 46px; } }
<template><divclass="dashboard-container"><el-formref="form":model="form"label-width="80px"><el-form-itemlabel="所属学校"><el-selectv-model="form.school"placeholder="请选择"@change="schoolChange"><el-optionv-for="item in schools":key="item._id":label="item.name":value="item._id"></el-option></el-select></el-form-item><!-- 编辑框:学院选择列表--><el-form-itemlabel="所属学院"><el-selectv-model="form.academy"placeholder="请选择"><el-optionv-for="item in academys":key="item._id":label="item.name":value="item._id"></el-option></el-select></el-form-item><el-form-itemlabel="班级名称"><el-inputv-model="form.name"></el-input></el-form-item><el-form-itemlabel="专业"><el-inputv-model="form.level"></el-input></el-form-item><el-form-itemlabel="人数"><el-inputv-model="form.renshu"></el-input></el-form-item><el-form-item><el-buttontype="primary"@click="onSubmit">立即创建</el-button><el-button>取消</el-button></el-form-item></el-form></div></template><script>import { mapGetters } from 'vuex' export default { name: 'classs', computed: { ...mapGetters([ 'name' ]) }, data(){ return{ schools:[], academys:[], //列表内容 options: [ ], apiModel:'classs', form:{} } }, methods:{ onSubmit(){ if(this.form._id){ this.$http.post(`/api/${this.apiModel}/update`,this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) }else { this.$http.post('/api/'+this.apiModel+'/add',this.form).then(res => { console.log('bar:', res) this.$router.push({path:this.apiModel}) this.form={} }) } }, schoolChange(val1){ //显示学院选择栏目 this.$http.post('/api/academy/get',{school:val1}).then(res => { if(res&&res.length>0){ this.academys = res console.log('res:', res) } }) } }, mounted() { if(this.$route.query._id){ this.$http.post('/api/'+this.apiModel+'/get',{_id:this.$route.query._id}).then(res => { if(res&&res.length>0){ this.form = res[0] this.schoolChange(this.form.school) } }) } //显示学校选择栏目 this.$http.post('/api/school/find').then(res => { if(res&&res.length>0){ this.schools = res console.log('res:', res) } }) } }</script><stylelang="scss"scoped>.dashboard { &-container { margin: 30px; } &-text { font-size: 30px; line-height: 46px; } }</style>

index.vue文件

import { mapGetters } from 'vuex' export default { name: 'classs', computed: { ...mapGetters([ 'name' ]) }, data() { return { apiModel:'classs', users: {} } }, methods: { onSubmit() { console.log(123434) }, handleEdit(index, item) { this.$router.push({ path: '/'+this.apiModel+'/editor', query: {_id:item._id} }) }, handleDelete(index, item) { this.$http.post('/api/'+this.apiModel+'/delete', item).then(res => { console.log('res:', res) this.findUser() }) }, findUser(){ this.$http.post('/api/'+this.apiModel+'/find', this.user).then(res => { console.log('res:', res) this.users = res }) } }, mounted() { this.findUser() } } .dashboard { &-container { margin: 30px; } &-text { font-size: 30px; line-height: 46px; } } <template>

  <div class="dashboard-container">

    <el-table

      :data="users"

      style="width: 100%"

      :row-class-name="tableRowClassName">

      <el-table-column

        prop="name"

        label="班级名称"

        width="180">

      </el-table-column>

      <el-table-column

        prop="level"

        label="专业"

        width="180">

      </el-table-column>

      <el-table-column

        prop="renshu"

        label="人数">

      </el-table-column>

<!--      列表添加项目

-->

      <el-table-column

        prop="school"

        label="学校名称"

        width="180">

        <template slot-scope="scope" >

          <span class="" v-if="scope.row.school">

            <el-tag

              :type="scope.row.school.name === '深圳信息职业技术学院' ? 'primary' : 'success'"

              disable-transitions>{{scope.row.school.name}}</el-tag>

          </span>

        </template>

      </el-table-column>

      <el-table-column

        prop="academy"

        label="学院名称"

        width="180">

        <template slot-scope="scope" >

          <span class="" v-if="scope.row.academy">

            <el-tag

              :type="scope.row.academy.name === '软件学院' ? 'primary' : 'success'"

              disable-transitions>{{scope.row.academy.name}}</el-tag>

          </span>

        </template>

      </el-table-column>

      <el-table-column label="操作">

        <template slot-scope="scope">

          <el-button

            size="mini"

            @click="handleEdit(scope.$index, scope.row)">编辑

          </el-button>

          <el-button

            size="mini"

            type="danger"

            @click="handleDelete(scope.$index, scope.row)">删除

          </el-button>

        </template>

      </el-table-column>

    </el-table>

  </div>

</template>

<script>

  import { mapGetters } from 'vuex'

  export default {

    name: 'classs',

    computed: {

      ...mapGetters([

        'name'

      ])

    },

    data() {

      return {

        apiModel:'classs',

        users: {}

      }

    },

    methods: {

      onSubmit() {

        console.log(123434)

      },

      handleEdit(index, item) {

        this.$router.push({ path: '/'+this.apiModel+'/editor', query: {_id:item._id} })

      },

      handleDelete(index, item) {

        this.$http.post('/api/'+this.apiModel+'/delete', item).then(res => {

          console.log('res:', res)

          this.findUser()

        })

      },

      findUser(){

        this.$http.post('/api/'+this.apiModel+'/find', this.user).then(res => {

          console.log('res:', res)

          this.users = res

        })

      }

    },

    mounted() {

      this.findUser()

    }

  }

</script>

<style lang="scss" scoped>

  .dashboard {

    &-container {

      margin: 30px;

    }

    &-text {

      font-size: 30px;

      line-height: 46px;

    }

  }

</style>



index.js中添加路由:

{     path: '/classs',     component: Layout,     meta: { title: '班级管理', icon: 'example' },     redirect: '/classs',     children: [{       path: 'classs',       name: 'classs',       component: () => import('@/views/classs'),       meta: { title: '班级管理', icon: 'classs' }     },       {         path: 'editor',         name: 'editor',         component: () => import('@/views/classs/editor'),         meta: { title: '添加班级', icon: 'classs' }       }]   },   {     path: '/student',     component: Layout,     meta: { title: '学生管理', icon: 'example' },     redirect: '/student',     children: [{       path: 'student',       name: 'student',       component: () => import('@/views/student/index'),       meta: { title: '学生管理', icon: 'user' }     },       {         path: 'editor',         name: 'editor',         component: () => import('@/views/student/editor'),         meta: { title: '添加学生', icon: 'user' }       }]   },

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 实训(二) 打开projectName文件,在models目录下创建school.js文件 constmongoo...
    苏芷婷阅读 300评论 0 0
  • 目标:创建班级管理模块(班级和学院、学校关联起来) 一、后台三步骤: 1、在db->models目录下创建clas...
    小甜甜甜甜椒阅读 397评论 0 0
  • 目标:创建班级管理模块(班级和学院、学校关联起来) 一、后台三步骤: 1、打开projectName文件,在mod...
    不留遗憾_dd5b阅读 125评论 0 0
  • 目标:创建学生管理模块(学生和班级、学院、学校关联起来) 一、后台三步骤: 1、在db->models目录下创建s...
    小甜甜甜甜椒阅读 242评论 0 0
  • ### 1.安装 nodejs ### 2.安装 git ### 3.下载 [vue-element-admin]...
    gogogo_e6cf阅读 396评论 0 0