校园实训管理3

目标:创建学院管理模块

一、后台三步骤:

1、在db->models目录下创建academy.js文件,接着文件操作:

const mongoose = require('mongoose')const Schema= mongoose.Schemaconstfeld={

??? name: String,

??? //人物标签

??? major:String,

??? renshu: Number,

??? school : { type: Schema.Types.ObjectId, ref: 'School'}

}//自动添加更新时间创建时间:let schema = new Schema(feld, {timestamps: {createdAt: 'created', updatedAt: 'updated'}})module.exports= mongoose.model('Academy',schema)

2、在db->routes目录,创建academy.js文件:

const router = require('koa-router')()let Model = require("../db/models/academy");

router.prefix('/academy')


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 = newModel(ctx.request.body);

??? model =awaitmodel.save();

??? console.log('user',model)

??? ctx.body = model

})


router.post('/find', async function(ctx, next){

??? let models = awaitModel.

??? find({}).populate('school')

??? ctx.body = models

})


router.post('/get', async function(ctx, next){

??? // let users = await User.

??? // find({})

??? console.log(ctx.request.body)

??? let model = awaitModel.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

3.在根目录app.js中挂载路由:

const academy = require('./routes/academy')

app.use(academy.routes(), academy.allowedMethods())

二、前台三步骤:

打开vue-admin-template-master文件,在src/views目录下创建一个academy???,并在academy目录下创建vue文件。

1.editor.vue为编辑文件,用于创建学院记录;

<template>

? <div class="dashboard-container">

??? <el-form ref="form" :model="form" label-width="80px">

????? <el-form-item label="学院名称">

??????? <el-input v-model="form.name"></el-input>

????? </el-form-item>

????? <el-form-item label="专业">

??????? <el-input v-model="form.major"></el-input>

????? </el-form-item>

????? <el-form-item label="人数">

??????? <el-input v-model="form.renshu"></el-input>

????? </el-form-item>


????? <el-form-item label="所属学校">

??????? <el-select v-model="form.school" placeholder="请选择">

????????? <el-option

??????????? v-for="item in options"

??????????? :key="item._id"

??????????? :label="item.name"

??????????? :value="item._id">

????????? </el-option>

??????? </el-select>

????? </el-form-item>



????? <el-form-item>

??????? <el-button type="primary" @click="onSubmit">立即创建</el-button>

??????? <el-button>取消</el-button>

????? </el-form-item>


??? </el-form>

? </div></template>

<script>

? import { mapGetters } from 'vuex'


? export default{

??? name: 'academy',

??? computed: {

????? ...mapGetters([

??????? 'name'

????? ])

??? },

??? data(){

????? return{

??????? options: [


????????? ],

??????? apiModel:'academy',

??????? form:{}

????? }

??? },

??? methods:{

????? onSubmit(){

??????? console.log('222:', 222)

??????? 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={}

????????? })

??????? }

????? }

??? },

??? 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.$http.post('/api/school/find').then(res => {

??????? if(res&&res.length>0){

????????? this.options = res

????????? console.log('res:', res)

??????? }

????? })

??? }

? }

<style lang="scss" scoped>

? .dashboard {

??? &-container {

????? margin: 30px;

??? }

??? &-text {

????? font-size: 30px;

????? line-height: 46px;

??? }

? }

2.index.vue为目录文件,用于显示结果;

? <template>

? <div class="dashboard-container">

??? <el-table

????? :data="users"

????? style="width: 100%"

????? :row-class-name="tableRowClassName">


????? <el-table-column

??????? prop="_id"

??????? label="学院_id"

??????? width="180">

????? </el-table-column>

????? <el-table-column

??????? prop="name"

??????? label="学院名称"

??????? width="180">

????? </el-table-column>

????? <el-table-column

??????? prop="major"

??????? 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}}

????????? </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: 'academy',

??? computed: {

????? ...mapGetters([

??????? 'name'

????? ])

??? },

??? data() {

????? return{

??????? apiModel:'academy',

??????? 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()

??? }

? }

<style lang="scss" scoped>

? .dashboard {

??? &-container {

????? margin: 30px;

??? }


??? &-text {

????? font-size: 30px;

????? line-height: 46px;

??? }

? }????

3.在index.js中添加路由:

{

??? path: '/academy',

??? component: Layout,

??? meta: { title: '学院管理', icon: 'example'},

??? redirect: 'academy',

??? children: [{

????? path: 'academy',

????? name: 'academy',

????? component: () => import('@/views/academy'),

????? meta: { title: '学院管理', icon: 'academy'}

??? },

????? {

??????? path: 'editor',

??????? name: 'editor',

??????? component: () => import('@/views/academy/editor'),

??????? meta: { title: '添加学院', icon: 'academy'}

????? }]

? },

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

推荐阅读更多精彩内容