第12讲:ElementUI+Vue路由综合案例

news2025/1/18 7:35:42

本博文主要呈现一个NPM脚手架+Vue路由+ElementUI的综合案例,完成本案例需要有一定的Vue基础,请参考以下文章完成项目的构建
第08讲:使用脚手架创建vue项目
第09讲:路由开发
第10讲:vue脚手架集成axios
第11讲:vue脚手架集成ElementUI

案例效果

登录页面

  • 具有表单校验功能

在这里插入图片描述

首页

  • 使用二级路由完成左侧导航和右侧内容展示
  • 通用式后台管理系统展示样式(top、left、right)
    在这里插入图片描述

列表页

  • 使用el-table完成数据展示
  • 使用el-pagination完成分页器
  • 使用$message完成消息的提示
  • 实现多选删除
  • 实现单选修改
  • 使用el-dialog实现模态化窗口(添加、修改)
  • 实现模糊查询

在这里插入图片描述

ElementUI常用组件页

  • el-form表单的使用
  • el-select下拉列表的使用及数据渲染
  • el-checkbox复选框的使用及数据渲染
  • el-radio单选按钮的使用及数据渲染
    在这里插入图片描述

一、后端开发

由于是前后端分离的项目,我们提前开发了一个供前端测试的后台项目,具体代码可以联系博主索取

@RestController
@CrossOrigin
public class ArticleController {

    @GetMapping("/list")
    public Page<Article> findAll(Article article, Long pageNum, Long pageSize){
        ...
    }

    @PostMapping("/add")
    public HttpResult add(@RequestBody Article article){
        ...
    }

    @PostMapping("/edit")
    public HttpResult edit(@RequestBody Article article){
        ...
    }

    @GetMapping("/get")
    public HttpResult getInfo(Long id){
        ...
    }

    @PostMapping("/remove")
    public HttpResult remove(@RequestParam Long[] ids){
        ...
    }
}
@Data
public class Article {
    @JsonSerialize(using = ToStringSerializer.class)
    private Long id;
    private String title;
    private String logo;
    private String descn;
    private Date createTime;
    private Long cid;
}

二、前端开发

2.1、App.vue入口

在入口中只需要添加一个router-view组件即可

<template>
  <div>
    <router-view/>
  </div>
</template>

2.2、main.js

在主控制文件main.js中导入路由、axios、element-ui组件

import Vue from 'vue'
import App from './App.vue'
import router from './router'

//ElementUI相关
import ElementUI from 'element-ui'
//ElementUI相关
import 'element-ui/lib/theme-chalk/index.css'
//ElementUI相关
Vue.use(ElementUI)

//axios相关
import axios from 'axios'
Vue.prototype.$axios = axios

Vue.config.productionTip = false

new Vue({
  router,
  render: h => h(App)
}).$mount('#app')

2.3、路由配置

页面展示

在这里插入图片描述

路由配置:router/index.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import Login from '../views/login.vue'
import Home from '../views/main.vue'

Vue.use(VueRouter)

const routes = [
  {
    path: '/',
    name: 'login',
    component: Login
  },
  {
    path: '/home',
    name: 'home',
    component: Home,
    children: [
      {
        path: 'homea',
        name: 'homea',
        component: () => import('../views/homea.vue')
      },
      {
        path: 'homeb',
        name: 'homeb',
        component: () => import('../views/homeb.vue')
      }
    ]
  }
]

const router = new VueRouter({
  routes
})

export default router

2.4、主页开发

在主页中主要使用el-container实现通用布局、使用el-menu实现左侧边栏的导航

<template>
    <div>
        <el-container>
            <el-header style="height:80px; background-color: aliceblue; text-align: center; line-height: 80px; font-size: 24px;">
                广告位招商,300万/年
            </el-header>
            <el-container>
                <el-aside style="width:200px; height:700px;">
                    <h5 style="text-align: center">扬子新闻管理系统</h5>
                    <el-menu
                            class="el-menu-vertical-demo">
                        <el-submenu index="1">
                            <template slot="title">
                                <i class="el-icon-menu"></i>
                                <span>新闻管理</span>
                            </template>
                            <router-link to="/home/homea">
                                <el-menu-item index="1-1">管理文章</el-menu-item>
                            </router-link>
                            <router-link to="/home/homeb">
                                <el-menu-item index="1-2">管理栏目</el-menu-item>
                            </router-link>
                        </el-submenu>
                        <router-link to="/home/homeb">
                            <el-menu-item index="2">
                            <i class="el-icon-setting"></i>
                            <span slot="title">系统管理</span>
                            </el-menu-item>
                        </router-link>
                    </el-menu>
                </el-aside>
                <el-main style="height:700px;">
                    <router-view/>
                </el-main>
            </el-container>
        </el-container>
    </div>
</template>
<style>
    a:link {
        color: black;
        font-size: 14px;
        text-decoration: none;
    }
    a:hover {
        color: #b9b9b9;
        font-size: 14px;
        text-decoration: none;
    }
    a:visited {
        color: black;
        font-size: 14px;
        text-decoration: none;
    }
    a:active {
        color: #b9b9b9;
        font-size: 14px;
        text-decoration: none;
    }
</style>

2.5、列表页开发

HTML

<template>
    <div>
        <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
                 label-width="68px">
            <el-form-item label="标题" prop="title">
                <el-input
                        v-model="queryParams.title"
                        placeholder="请输入标题"
                        clearable
                        @keyup.enter.native="handleQuery"
                />
            </el-form-item>
            <el-form-item label="描述" prop="descn">
                <el-input
                        v-model="queryParams.descn"
                        placeholder="请输入描述"
                        clearable
                        @keyup.enter.native="handleQuery"
                />
            </el-form-item>
            <el-form-item>
                <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
                <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
            </el-form-item>
        </el-form>

        <el-row :gutter="10" class="mb8">
            <el-col :span="1.5">
                <el-button
                        type="primary"
                        plain
                        icon="el-icon-plus"
                        size="mini"
                        @click="handleAdd"
                >新增
                </el-button>
            </el-col>
            <el-col :span="1.5">
                <el-button
                        type="success"
                        plain
                        icon="el-icon-edit"
                        size="mini"
                        :disabled="single"
                        @click="handleUpdate"
                >修改
                </el-button>
            </el-col>
            <el-col :span="1.5">
                <el-button
                        type="danger"
                        plain
                        icon="el-icon-delete"
                        size="mini"
                        :disabled="multiple"
                        @click="handleDelete"
                >删除
                </el-button>
            </el-col>
        </el-row>

        <el-table v-loading="loading" :data="articlelList" @selection-change="handleSelectionChange">
            <el-table-column type="selection" width="55" align="center"/>
            <el-table-column label="编号" align="center" prop="id"/>
            <el-table-column label="标题" align="center" prop="title"/>
            <el-table-column label="描述" align="center" prop="descn"/>
            <el-table-column label="发布时间" align="center" prop="createTime" width="180">
<!--                <template slot-scope="scope">-->
<!--                    <span>{{ parseTime(scope.row.publishTime, '{y}-{m}-{d}') }}</span>-->
<!--                </template>-->
            </el-table-column>
            <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
                <template slot-scope="scope">
                    <el-button
                            size="mini"
                            type="text"
                            icon="el-icon-edit"
                            @click="handleUpdate(scope.row)"
                    >修改
                    </el-button>
                    <el-button
                            size="mini"
                            type="text"
                            icon="el-icon-delete"
                            @click="handleDelete(scope.row)"
                    >删除
                    </el-button>
                </template>
            </el-table-column>
        </el-table>

        <el-pagination
                style="margin-top: 20px"
                v-show="total>0"
                :total="total"
                :current-page="queryParams.pageNum"
                :page-size="queryParams.pageSize"
                :page-sizes="[5, 15, 20, 50]"
                layout="total, sizes, prev, pager, next, jumper"
                @size-change="handleSizeChange"
                @current-change="handleCurrentChange"
        />

        <!-- 添加或修改栏目对话框 -->
        <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
            <el-form ref="dataForm" :model="form" :rules="rules" label-width="80px">
                <el-form-item label="标题" prop="title">
                    <el-input v-model="form.title" placeholder="请输入标题"/>
                </el-form-item>
                <el-form-item label="描述" prop="decn">
                    <el-input v-model="form.decn" placeholder="请输入描述"/>
                </el-form-item>
                <el-form-item label="发布时间" prop="publishTime">
                    <el-date-picker clearable
                                    v-model="form.publishTime"
                                    type="datetime"
                                    value-format="yyyy-MM-dd hh:mm:ss"
                                    placeholder="请选择发布时间">
                    </el-date-picker>
                </el-form-item>
            </el-form>
            <div slot="footer" class="dialog-footer">
                <el-button type="primary" @click="submitForm">确 定</el-button>
                <el-button @click="cancel">取 消</el-button>
            </div>
        </el-dialog>
    </div>
</template>

业务JavaScript

<script>
    export default {
        name: "Article",
        data() {
            return {
                // 遮罩层
                loading: true,
                // 选中数组
                ids: [],
                // 非单个禁用
                single: true,
                // 非多个禁用
                multiple: true,
                // 显示搜索条件
                showSearch: true,
                // 总条数
                total: 0,
                // 栏目表格数据
                articlelList: [],
                // 弹出层标题
                title: "",
                // 是否显示弹出层
                open: false,
                // 查询参数
                queryParams: {
                    pageNum: 1,
                    pageSize: 5,
                    title: null,
                    descn: null
                },
                // 表单参数
                form: {},
                // 表单校验
                rules: {
                    title: [
                        { required: true, message: '请输入标题', trigger: 'blur' }
                    ],
                    decn: [
                        { required: true, message: '请输入描述', trigger: 'blur' }
                    ],
                    publishTime: [
                        { required: true, message: '请选择发布时间', trigger: 'blur' }
                    ]
                }
            };
        },
        created() {
            this.getList();
        },
        methods: {
            /** 分页相关*/
            handleSizeChange(val) {
                console.log(`每页 ${val}`);
                this.queryParams.pageSize = val
                this.getList()
            },
            handleCurrentChange(val) {
                console.log(`当前页: ${val}`);
                this.queryParams.pageNum = val
                this.getList()
            },
            /** 查询栏目列表 */
            getList() {
                this.loading = true
                this.$axios({
                    url: 'http://localhost:8070/list',
                    method: 'get',
                    params: this.queryParams
                }).then(res => {
                    console.log(res.data)
                    this.loading = false
                    this.articlelList = res.data.records
                    this.total = res.data.total
                })
            },
            // 取消按钮
            cancel() {
                this.open = false;
                this.reset();
            },
            // 表单重置
            reset() {
                this.form = {
                    id: null,
                    title: null,
                    descn: null
                };
            },
            /** 搜索按钮操作 */
            handleQuery() {
                this.queryParams.pageNum = 1;
                this.getList();
            },
            /** 重置按钮操作 */
            resetQuery() {
                this.$refs["queryForm"].resetFields();
                this.handleQuery();
            },
            // 多选框选中数据
            handleSelectionChange(selection) {
                //map函数可以返回一个新的数组,数组中的元素为原始数组元素调用函数处理后的值。
                this.ids = selection.map(item => item.id)
                this.single = selection.length !== 1
                this.multiple = !selection.length
            },
            /** 新增按钮操作 */
            handleAdd() {
                this.reset();
                this.open = true;
                this.title = "添加栏目";
            },
            /** 修改按钮操作 */
            handleUpdate(row) {
                this.reset();
                const id = row.id || this.ids
                console.log("id:"+id)
                this.open = true;
                this.$axios({
                    method: 'get',
                    url: 'http://localhost:8070/get?id='+id,
                }).then(res => {
                    console.log(res.data)
                    this.form.id = id
                    this.form.title = res.data.data.title
                    this.form.decn = res.data.data.descn
                    this.form.publishTime = res.data.data.createTime
                })
            },
            /** 提交按钮 */
            submitForm() {
                this.$refs["dataForm"].validate(valid => {
                    if (valid) {
                        if (this.form.id != null) { //修改
                            this.$axios({
                                method: 'post',
                                url: 'http://localhost:8070/edit',
                                data: {
                                    id: this.form.id,
                                    title: this.form.title,
                                    descn: this.form.decn,
                                    createTime: this.form.publishTime
                                }
                            }).then(res => {
                                if(res.data.code == 200){
                                    this.open = false
                                    this.getList()
                                } else {
                                    this.$message.error('修改失败')
                                }
                            })
                        } else { //新增
                            this.$axios({
                                method: 'post',
                                url: 'http://localhost:8070/add',
                                data: {
                                    title: this.form.title,
                                    descn: this.form.decn
                                }
                            }).then(res => {
                                console.log(res.data)
                                if(res.data.code == 200){
                                    this.open = false
                                    this.getList()
                                } else {
                                    this.$message.error('新增失败');
                                }
                            })
                        }
                    }
                });
            },
            /** 删除按钮操作 */
            handleDelete(row) {
                const ids = row.id || this.ids;
                this.$confirm('此操作将永久删除该文章, 是否继续?', '提示', {
                    confirmButtonText: '确定',
                    cancelButtonText: '取消',
                    type: 'warning'
                }).then(() => {
                    this.$axios({
                        url: 'http://localhost:8070/remove?ids='+ids,
                        method: 'post'
                    }).then(res => {
                        console.log(res.data)
                        if(res.data.code == 200){
                            this.open = false
                            this.getList()
                        } else {
                            this.$message.error('删除失败');
                        }
                    })
                }).catch(() => {
                    this.$message({
                        type: 'info',
                        message: '已取消删除'
                    });
                });
            }
        }
    };
</script>

2.6、ElementUI常用组件页开发

HTML

<template>
  <div>
    <el-form ref="myForm" :model="formData" label-width="100px" label-position="left">
      <el-form-item label="活动区域:">
        <el-select v-model="formData.region" placeholder="请选择活动区域">
          <el-option v-for="re in regionList" :label="re.label" :value="re.value"></el-option>
        </el-select>
      </el-form-item>

      <el-form-item label="活动性质:">
        <el-checkbox-group v-model="formData.type">
          <el-checkbox :label="1">美食/餐厅线上活动</el-checkbox>
          <el-checkbox :label="2">地推活动</el-checkbox>
          <el-checkbox :label="3">线下主题活动</el-checkbox>
          <el-checkbox :label="4">单纯品牌曝光</el-checkbox>
        </el-checkbox-group>
      </el-form-item>

      <el-form-item label="性别:">
        <el-radio v-model="formData.sex" :label="1"></el-radio>
        <el-radio v-model="formData.sex" :label="2"></el-radio>
      </el-form-item>

      <el-form-item>
        <el-button type="primary" @click="onSubmit">立即创建</el-button>
      </el-form-item>
    </el-form>
  </div>
</template>

业务JavaScript

<script>
export default {
  data(){
    return {
      formData: {
        region: null,
        type: [],
        sex: 2
      },
      regionList: [
        {label : '区域1', value : 'shanghai'},
        {label : '区域2', value : 'beijing'}
      ]
    }
  },
  methods: {
    onSubmit(){
      console.log(this.formData.sex)
    }
  }
}
</script>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/435162.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

2023年mahorcupC题电商物流网络包裹应急调运与结构思路分析

C 题 电商物流网络包裹应急调运与结构优化问题 电商物流网络由物流场地(接货仓、分拣中心、营业部等)和物流场 地之间的运输线路组成&#xff0c; 如图 1 所示。受节假日和“双十一” 、“618”等促销 活动的影响&#xff0c;电商用户的下单量会发生显著波动&#xff0c;而疫情…

软件测试真的只能干到35岁吗?难道测试岗位真的只是青春饭吗?

一&#xff1a;前言&#xff1a;人生的十字路口静坐反思 入软件测试这一行至今已经10年多&#xff0c;承蒙领导们的照顾与重用&#xff0c;同事的支持与信任&#xff0c;我的职业发展算是相对较好&#xff0c;从入行到各类测试技术岗位&#xff0c;再到测试总监&#xff0c;再…

释放数据价值这道难题,数据科学基础平台有解

去年底&#xff0c;《中共中央、国务院关于构建数据基础制度更好发挥数据要素作用的意见》&#xff08;以下简称&#xff1a;" 数据二十条 "&#xff09;正式颁布&#xff0c;标志着数据基础制度的建设步入快车道&#xff0c;数据要素化有望全面提速。 " 数据二…

通过遍历结果构造二叉树

⭐️前言⭐️ 本篇文章主要总结通过前序遍历、中序遍历、后序遍历中的两个遍历结果&#xff0c;来构造二叉树的过程&#xff0c;通过本篇文章的总结&#xff0c;可以解决一下问题。 LeetCode难度654. 最大二叉树&#x1f7e0;105. 从前序与中序遍历序列构造二叉树&#x1f7e…

编程辅助插件BitoAI使用指南(以VSCode开发环境为例安装并使用BitoAI插件从而提高生产效率)

2023年是AI爆发元年&#xff0c;已经被各种AI工具、新闻轰炸了几个月&#xff0c;只有一种感觉&#xff1a;时间不够用&#xff01; 本文介绍编程辅助神器&#xff1a;Bito AI。 本插件使用与ChatGPT相同的模型&#xff01;目前免费&#xff0c;且拥有强大的辅助能力&#xff0…

高压放大器应用之无损检测

在高压放大器的应用中&#xff0c;很多电子工程师经常会进行无损检测实验&#xff0c;那么无损检测是什么&#xff0c;无损检测的知识又有哪些呢&#xff0c;就让安泰电子带大家来看看。 无损检测是什么&#xff1a; 无损检测是指不损害物品的情况下对产品进行检测的方法&#…

FFMPEG源码分析一 av_register_all()

我们在使用FFMPEG库时&#xff0c;第一个调用的就是av_register_all()&#xff0c;这个函数到底做了什么&#xff0c;有什么用&#xff0c;这里做个简单分析。 本文基于雷霄骅博客学习而来。详情请移步FFmpeg源代码结构图 - 编码_ffmpeg源码结构_雷霄骅的博客-CSDN博客 解析和…

Vsync信号和SurfaceFlinger刷新机制;打造智能车厢的关键技术

概述 车载智能座舱系统在现代汽车中已经越来越常见&#xff0c;它可以提供各种功能&#xff0c;例如音乐、导航和驾驶辅助等。要实现这些功能&#xff0c;需要底层硬件和系统软件的支持。其中&#xff0c;Vsync信号和SurfaceFlinger刷新机制是车载智能座舱系统中的两个关键技术…

无人驾驶——ros_canopen安装

上篇文章提到过&#xff0c;对于CAN测试&#xff0c;不能完全依靠CAN卡对应的软件&#xff0c;指导老师推荐了ros_canopen、socketcan_interface方法。记录一下使用该方法的过程。 安装ros_canopen,对应ros版本git clone下载资源并安装。 https://github.com/ros-industrial…

camunda如何启动一个流程

在 Camunda 中启动一个流程需要使用 Camunda 提供的 API 或者用户界面进行操作。以下是两种常用的启动流程的方式&#xff1a; 1、通过 Camunda 任务列表启动流程&#xff1a;在 Camunda 任务列表中&#xff0c;可以看到已经部署的流程&#xff0c;并可以点击“Start”按钮&am…

【Linux】Mysql事务

一、什么是事务 Mysql 数据库中不是所有的存储引擎都实现了事务处理。 支持事务的存储引擎有&#xff1a; InnoDBNDB Cluster 。不支持事务的存储引擎代表有&#xff1a; MyISAM 事务简单来说&#xff1a;一个 Session 中所进行所有的操作&#xff0c;要么同时成功&#xff0c…

CMU15445 - Project 0. C++ Primer(在写)

文章目录 系列笔记作业链接TASK 1GetPutRemove Task 2 系列笔记 环境配置 Project 0. C Primer (ing) 作业链接 作业链接&#xff08;2020&#xff0c;废&#xff09; 作业链接 p0就是一个C水平测试&#xff0c;很简单 2023的明显难不少。 TASK 1 先简单说一下看到这个数据…

linux 目录常用操作

1.linux复制粘贴命令 CtrlShiftC 复制 CtrlShiftV 粘贴 2.中断执行 CtrlC 键“保留”用于停止命令 3.终端清屏 clear 4.显示当前路径 pwd 5.进入目录 cd 目录名称 返回上级目录 cd .. 6.查看当前目录 ls查看详细信息 ls -l 7.创建目录&#xff08;可以理解为文件夹&…

怎么将太大的word文档压缩变小,3个高效方法

怎么将太大的word文档压缩变小&#xff1f;word文档是我们在办公中使用较多的文件格式之一&#xff0c;相信小伙伴们会遇到这样的问题&#xff0c;编辑完成word文档之后发现&#xff0c;编辑完的文档体积太大了&#xff0c;无论是发送给客户还是上传到邮箱中都不方便&#xff0…

pdf转成word | ppt | jpg图片,免费一键转换教程

我不允许真的还有人不知道如何免费将pdf转成 ppt、word 或者 jpg图片&#xff01; 职场小伙伴是不是会经常遇到pdf怎么转成word&#xff0c;pdf怎么转成word&#xff0c;pdf怎么jpg图片等问题&#xff1f;别再为pdf转化格式难、而且还要付费而发愁了&#xff01;这份pdf免费一…

设计模式-行为型模式之观察者模式

3. 观察者模式 3.1. 模式动机 建立一种对象与对象之间的依赖关系&#xff0c;一个对象发生改变时将自动通知其他对象&#xff0c;其他对象将相应做出反应。在此&#xff0c;发生改变的对象称为观察目标&#xff0c;而被通知的对象称为观察者&#xff0c;一个观察目标可以对应多…

重学Java设计模式-行为型模式-迭代器模式

重学Java设计模式-行为型模式-迭代器模式 内容摘自&#xff1a;https://bugstack.cn/md/develop/design-pattern/2020-06-23-重学 Java 设计模式《实战迭代器模式》.html#重学-java-设计模式-实战迭代器模式「模拟公司组织架构树结构关系-深度迭代遍历人员信息输出场景」 迭代…

R -- 用psych包做主成分分析

主成分分析 主成分分析是一种数据降维方式&#xff0c;他将大量相关变量转化为一组很少的不相关的变量&#xff0c;这些不相关的变量称为主成分。 人话版&#xff1a;给你发一个由18位数字组成的身份证号码&#xff0c;第1、2位数字表示所在省份的代码&#xff1b;第3、4位数…

深度学习笔记之残差网络(ResNet)

深度学习笔记之残差网络[ResNet] 引言引子&#xff1a;深度神经网络的性能问题核心问题&#xff1a;深层神经网络训练难残差网络的执行过程残差网络结构为什么能够解决核心问题残差网络的其他优秀性质 引言 本节将介绍残差网络( Residual Network,ResNet \text{Residual Netwo…

C#中用程序代码修改了datagridview中的数据,保存时只对光标当前行有保存解决办法

C#中DataGridView绑定了DataTable后&#xff0c;通过代码修改DataGridView中的数据&#xff0c;总有一行&#xff08;被修改过并被用户选中的行集合中索引为0的行&#xff09;不能被UpDate回数据库的问题和解决办法 长江黄鹤 2017-06-26 | 300阅读 | 1转藏 转藏全屏朗读分…