教务系统实训四

实训(实训四)

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' }       }]   },

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 200,527评论 5 470
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,314评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 147,535评论 0 332
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,006评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 62,961评论 5 360
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,220评论 1 277
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,664评论 3 392
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,351评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,481评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,397评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,443评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,123评论 3 315
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,713评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,801评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,010评论 1 255
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,494评论 2 346
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,075评论 2 341

推荐阅读更多精彩内容

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