【谷粒学院项目开发31】添加课程分类前端实现

1.添加“课程分类”路由

在这里插入图片描述
打开浏览器,发现登录出错。在这里插入图片描述
启动一下。
在这里插入图片描述
出现了。

2.修改路由对应的页面路径,创建课程列表、添加两个页面

在这里插入图片描述
在这里插入图片描述

3.编写添加课程分类页面save.vue,实现添加课程分类效果

3.1添加上传组件

<template>
    <div class="app-container">
        <el-form label-width="120px">
        <el-form-item label="信息描述">
            <el-tag type="info">excel模版说明</el-tag>
            <el-tag>
                <i class="el-icon-download"/>
                <a :href="OSS_PATH +'/static/01.xlsx'">点击下载模版</a>
            </el-tag>
        </el-form-item>
        <el-form-item label="选择Excel">
            <el-upload
                ref="upload"
                :auto-upload="false"
                :on-success="fileUploadSuccess"
                :on-error="fileUploadError"
                :disabled="importBtnDisabled"
                :limit="1"
                :action="BASE_API+'/admin/edu/subject/import'"
                name="file"
                accept="application/vnd.ms-excel">
                <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
                <el-button
                    :loading="loading"
                    style="margin-left: 10px;"
                    size="small"
                    type="success"
                    @click="submitUpload">上传到服务器</el-button>
            </el-upload>
        </el-form-item>
        </el-form>
    </div>
</template>

<script>
export default {
    data(){
        return{
            BASE_API: process.env.BASE_API, // 接口API地址
            importBtnDisabled: false, // 按钮是否禁用,
            loading: false
        }
    },
    created(){

    },
    methods:{

    }
}
</script>

效果:
在这里插入图片描述

3.2编写vue方法

主要有3个方法。点击上传按钮、上传成功、上传失败

<template>
    <div class="app-container">
        <el-form label-width="120px">
        <el-form-item label="信息描述">
            <el-tag type="info">excel模版说明</el-tag>
            <el-tag>
                <i class="el-icon-download"/>
                <a :href="OSS_PATH +'/static/01.xlsx'">点击下载模版</a>
            </el-tag>
        </el-form-item>
        <el-form-item label="选择Excel">
            <el-upload
                ref="upload"
                :auto-upload="false"
                :on-success="fileUploadSuccess"
                :on-error="fileUploadError"
                :disabled="importBtnDisabled"
                :limit="1"
                :action="BASE_API+'/eduservice/subject/addSubject'"
                name="file"
                accept="application/vnd.ms-excel">
                <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
                <el-button
                    :loading="loading"
                    style="margin-left: 10px;"
                    size="small"
                    type="success"
                    @click="submitUpload">上传到服务器</el-button>
            </el-upload>
        </el-form-item>
        </el-form>
    </div>
</template>

<script>
export default {
    data(){
        return{
            BASE_API: process.env.BASE_API, // 接口API地址
            importBtnDisabled: false, // 按钮是否禁用,
            loading: false
        }
    },
    created(){

    },
    methods:{
        //1.点击按钮长传文件到接口里面
        submitUpload(){
            this.importBtnDisabled = true
            this.loading = true
            this.$refs.upload.submit()
        },
        //2.上传成功
        fileUploadSuccess(){
            //提示信息
            this.loading = false
            this.$message({
            type: 'success',
            message: '添加课程分类成功'
            })
            //跳转课程分类列表

        },
        //3.上传失败
        fileUploadError(){
            //提示信息
            this.loading = false
            this.$message({
            type: 'error',
            message: '添加课程分类失败'
            })
        }
    }
}
</script>

3.3测试能不能上传成功

在这里插入图片描述
在这里插入图片描述
上传成功!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值