ElementUI结合Vue完成主页的CUD(增删改)&表单验证

目录

一、CUD

[( 1 ) CU讲述](#( 1 ) CU讲述)

[( 2 ) 编写](#( 2 ) 编写)

[1. CU](#1. CU)

[2. 删除](#2. 删除)

二、验证

[前端整合代码 :](#前端整合代码 :)


一、CUD

以下的代码基于我博客中的代码进行续写 :

使用ElementUI结合Vue导航菜单和后台数据分页查询

( 1 ) CU讲述

在CRUD操作中,CU代表创建(Create)和更新(Update)。

  1. 创建(Create):创建操作用于在数据库中创建新的数据记录。它通常涉及向数据库中插入新的数据行或文档。例如,在关系型数据库中,可以使用INSERT语句来创建新的数据行。在文档数据库中,可以直接插入新的文档。

  2. 更新(Update):更新操作用于修改数据库中已存在的数据记录。它可以用于更改数据行或文档中的一个或多个属性的值。例如,在关系型数据库中,可以使用UPDATE语句来更新数据行的值。在文档数据库中,可以使用更新操作符来修改文档的属性。
    这两个操作通常是CRUD操作中最常用的。创建操作用于添加新的数据记录,而更新操作用于修改已存在的数据记录。它们可以在应用程序中用于实现用户注册、添加新的产品、更新用户信息等功能。

( 2 ) 编写

1. CU

在项目中的src文件下api中找到action.js进行配置数据访问的地址:

javascript 复制代码
/**
 * 对后台请求的地址的封装,URL格式如下:
 * 模块名_实体名_操作
 */
export default {
  'SERVER': 'http://localhost:8080/ssm', //服务器地址
  'SYSTEM_USER_DOLOGIN': '/user/userLogin', //登陆请求
  'SYSTEM_USER_DOREG': '/user/userRegister', //注册请求
  'SYSTEM_MENU': '/module/queryRootNode', //左侧菜单导航数据请求
  'SYSTEM_BookList': '/book/queryBookPager', //书籍的后端数据请求
  'SYSTEM_BookAdd': '/book/addBook', //书籍增加的数据请求
  'SYSTEM_BookEdit': '/book/editBook', //书籍修改的数据请求
  'SYSTEM_BookDel': '/book/delBook', //书籍删除的数据请求
  'getFullPath': k => { //获得请求的完整地址,用于mockjs测试时使用
    return this.SERVER + this[k];
  }
}

在BookList.vue组件中进行编写增加修改的代
在ElementUI里面找到弹出窗进行编写增加修改的弹窗

html 复制代码
 <!-- 弹出的编辑及增加弹窗 -->
    <el-dialog :title="title" :visible.sync="dialogFormVisible" :before-close="close">
      <el-form :model="book" :rules="rules" ref="book">
        <el-form-item label="书籍编号 :" :label-width="formLabelWidth">
          <el-input v-model="book.id" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍名称 :" prop="bookname" :label-width="formLabelWidth">
          <el-input v-model="book.bookname" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍价格 :" prop="price" :label-width="formLabelWidth">
          <el-input v-model="book.price" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍类型 :" prop="booktype" :label-width="formLabelWidth">
          <el-select v-model="book.booktype" placeholder="请选择书籍类型">
            <el-option v-for="t in types" :label="t.tname" :value="t.tname" :key="'key'+t.tid"></el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="close">取 消</el-button>
        <el-button type="primary" @click="submit">确 定</el-button>
      </div>
    </el-dialog>
  </div>

在script标签中编写方法进行数据增加修改实现,在data中编写属性:

javascript 复制代码
data() {
      return {
        bookname: '',
        tableData: [],
        rows: 10,
        total: 0,
        page: 1,
        formLabelWidth: '120px', //弹出窗输入框前的文字宽度
        title: '书籍新增', //弹出窗标题
        dialogFormVisible: false, //默认关闭
        book: {
          id: '',
          bookname: '',
          price: '',
          booktype: ''
        },
        types: [],
      }
    },

在script标签中编写方法进行数据增加修改实现,在methods中编写方法:

javascript 复制代码
submit() {
        //获取值
        let params = {
          id: this.book.id,
          bookname: this.book.bookname,
          price: this.book.price,
          booktype: this.book.booktype
        }
        console.log(params);
        //获取配置的方法请求地址
        let url = this.axios.urls.SYSTEM_BookAdd;
        //如果是书籍编辑就将请求地址修改为书籍修改的请求地址
        if (this.title == '书籍编辑') {
          url = this.axios.urls.SYSTEM_BookEdit;
        }
            //请求后端地址进行书籍的新增或修改
            this.axios.post(url, params).then(d => {
              // console.log(url);
              // console.log(d);
              this.close();
              this.query({});
            }).catch(e => {});
   


      },
      //弹出窗取消,值初始化
      close() {
        this.book = {
          id: '',
          bookname: '',
          price: '',
          booktype: ''
        };
        this.dialogFormVisible = false;
      },
      //打开弹出窗,进行书籍的编辑
      open(index, row) {
        this.dialogFormVisible = true;
        if (row) {
          this.title = '书籍编辑';
          this.book.id = row.id;
          this.book.bookname = row.bookname
          this.book.price = row.price;
          this.book.booktype = row.booktype;
        }
      },

在created中初始化数据

javascript 复制代码
created() {
      this.query({});
      //初始书籍类型的书籍
      this.types = [{
        tid: 1,
        tname: '玄幻'
      }, {
        tid: 2,
        tname: '爽文'
      }, {
        tid: 3,
        tname: '爱情'
      }, {
        tid: 4,
        tname: '动作'
      }, {
        tid: 5,
        tname: '都市'
      }];
    }

增加表格操作 :

html 复制代码
      <el-table-column label="操作">
        <template slot-scope="scope">
          <el-button size="mini" @click="open(scope.$index,scope.row)">编辑</el-button>
          <el-button size="mini" type="danger" @click="Del(scope.row)">删除</el-button>
        </template>
      </el-table-column>

增加效果 :

修改效果 :

2. 删除

在script标签中编写方法进行数据删除实现,在methods中编写方法:

javascript 复制代码
     //书籍删除的方法
      Del(r) {
        this.$confirm('你确定将编号为' + r.id + '的书籍永久删除, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          //获取配置的书籍删除方法请求地址
          let url = this.axios.urls.SYSTEM_BookDel;
          //请求后端地址进行书籍的新增或修改
          this.axios.post(url, {
            id: r.id
          }).then(d => {
            this.$message({
              type: 'success',
              message: '书籍删除成功!'
            });
            this.query({});
          }).catch(e => {});
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });
        });
      }

删除效果 :

二、验证

在表单中增加以下两个属性 :

:rules="rules" ref="book"
在script标签中编写方法进行数据增加修改实现,在data中编写属性:

javascript 复制代码
data() {
      return {
        bookname: '',
        tableData: [],
        rows: 10,
        total: 0,
        page: 1,
        formLabelWidth: '120px', //弹出窗输入框前的文字宽度
        title: '书籍新增', //弹出窗标题
        dialogFormVisible: false, //默认关闭
        book: {
          id: '',
          bookname: '',
          price: '',
          booktype: ''
        },
        types: [],
        //增加表单验证
        rules: {
          bookname: [{
              required: true,
              message: '请输入书籍的名称',
              trigger: 'blur'
            },
            {
              min: 2,
              max: 10,
              message: '书籍名称长度在 2 到 10 个字符',
              trigger: 'blur'
            }
          ],
          price: [{
            required: true,
            message: '请填写书籍价格',
            trigger: 'blur'
          }],
          booktype: [{
            required: true,
            message: '请选择书籍类型',
            trigger: 'blur'
          }]
        }
      }
    },

在script标签中编写方法,在methods中编写submit()方法:

javascript 复制代码
 submit() {
        //获取值
        let params = {
          id: this.book.id,
          bookname: this.book.bookname,
          price: this.book.price,
          booktype: this.book.booktype
        }
        console.log(params);
        //获取配置的方法请求地址
        let url = this.axios.urls.SYSTEM_BookAdd;
        //如果是书籍编辑就将请求地址修改为书籍修改的请求地址
        if (this.title == '书籍编辑') {
          url = this.axios.urls.SYSTEM_BookEdit;
        }
        //请求前必须通过表单验证
        this.$refs['book'].validate((valid) => {
           console.log(valid);
          if (valid) {
            //请求后端地址进行书籍的新增或修改
            this.axios.post(url, params).then(d => {
              // console.log(url);
              // console.log(d);
              this.close();
              this.query({});
            }).catch(e => {});
          } else {
            this.$message('有必输入项或者没有按要求输入,请正确填写!!');
            return false;
          }
        });


      }

表单验证的效果 :

前端整合代码 :

BookList.vue 所有代码如下 :

html 复制代码
<template>
  <div class="Book" style="padding: 30px;">
    <!-- 输入框搜索 -->
    <el-form :inline="true" class="demo-form-inline">
      <el-form-item label="书籍名称 : ">
        <el-input v-model="bookname" placeholder="书籍名称"></el-input>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" plain @click="onSubmit">查询</el-button>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" plain @click="open">新增</el-button>
      </el-form-item>
    </el-form>
    <!-- 书籍的书籍表格 -->
    <el-table :data="tableData" style="width: 100%">
      <el-table-column prop="id" label="书籍ID"></el-table-column>
      <el-table-column prop="bookname" label="书籍名称"></el-table-column>
      <el-table-column prop="price" label="书籍价格"></el-table-column>
      <el-table-column prop="booktype" label="书籍类型"></el-table-column>
      <el-table-column label="操作">
        <template slot-scope="scope">
          <el-button size="mini" @click="open(scope.$index,scope.row)">编辑</el-button>
          <el-button size="mini" type="danger" @click="Del(scope.row)">删除</el-button>
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页 -->
    <div class="block" style="padding: 20px;">
      <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="page"
        background :page-sizes="[10, 20, 30, 40]" :page-size="rows" layout="total, sizes, prev, pager, next, jumper"
        :total="total">
      </el-pagination>
    </div>
    <!-- 弹出的编辑及增加弹窗 -->
    <el-dialog :title="title" :visible.sync="dialogFormVisible" :before-close="close">
      <el-form :model="book" :rules="rules" ref="book">
        <el-form-item label="书籍编号 :" :label-width="formLabelWidth">
          <el-input v-model="book.id" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍名称 :" prop="bookname" :label-width="formLabelWidth">
          <el-input v-model="book.bookname" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍价格 :" prop="price" :label-width="formLabelWidth">
          <el-input v-model="book.price" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="书籍类型 :" prop="booktype" :label-width="formLabelWidth">
          <el-select v-model="book.booktype" placeholder="请选择书籍类型">
            <el-option v-for="t in types" :label="t.tname" :value="t.tname" :key="'key'+t.tid"></el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="close">取 消</el-button>
        <el-button type="primary" @click="submit">确 定</el-button>
      </div>
    </el-dialog>
  </div>

</template>

<script>
  export default {
    data() {
      return {
        bookname: '',
        tableData: [],
        rows: 10,
        total: 0,
        page: 1,
        formLabelWidth: '120px', //弹出窗输入框前的文字宽度
        title: '书籍新增', //弹出窗标题
        dialogFormVisible: false, //默认关闭
        book: {
          id: '',
          bookname: '',
          price: '',
          booktype: ''
        },
        types: [],
        //增加表单验证
        rules: {
          bookname: [{
              required: true,
              message: '请输入书籍的名称',
              trigger: 'blur'
            },
            {
              min: 2,
              max: 10,
              message: '书籍名称长度在 2 到 10 个字符',
              trigger: 'blur'
            }
          ],
          price: [{
            required: true,
            message: '请填写书籍价格',
            trigger: 'blur'
          }],
          booktype: [{
            required: true,
            message: '请选择书籍类型',
            trigger: 'blur'
          }]
        }
      }
    },
    methods: {
      //书籍删除的方法
      Del(r) {
        this.$confirm('你确定将编号为' + r.id + '的书籍永久删除, 是否继续?', '提示', {
          confirmButtonText: '确定',
          cancelButtonText: '取消',
          type: 'warning'
        }).then(() => {
          //获取配置的书籍删除方法请求地址
          let url = this.axios.urls.SYSTEM_BookDel;
          //请求后端地址进行书籍的新增或修改
          this.axios.post(url, {
            id: r.id
          }).then(d => {
            this.$message({
              type: 'success',
              message: '书籍删除成功!'
            });
            this.query({});
          }).catch(e => {});
        }).catch(() => {
          this.$message({
            type: 'info',
            message: '已取消删除'
          });
        });
      },
      submit() {
        //获取值
        let params = {
          id: this.book.id,
          bookname: this.book.bookname,
          price: this.book.price,
          booktype: this.book.booktype
        }
        console.log(params);
        //获取配置的方法请求地址
        let url = this.axios.urls.SYSTEM_BookAdd;
        //如果是书籍编辑就将请求地址修改为书籍修改的请求地址
        if (this.title == '书籍编辑') {
          url = this.axios.urls.SYSTEM_BookEdit;
        }
        //请求前必须通过表单验证
        this.$refs['book'].validate((valid) => {
           console.log(valid);
          if (valid) {
            //请求后端地址进行书籍的新增或修改
            this.axios.post(url, params).then(d => {
              // console.log(url);
              // console.log(d);
              this.close();
              this.query({});
            }).catch(e => {});
          } else {
            this.$message('有必输入项或者没有按要求输入,请正确填写!!');
            return false;
          }
        });


      },
      //弹出窗取消,值初始化
      close() {
        this.book = {
          id: '',
          bookname: '',
          price: '',
          booktype: ''
        };
        this.dialogFormVisible = false;
      },
      //打开弹出窗,进行书籍的编辑
      open(index, row) {
        this.dialogFormVisible = true;
        if (row) {
          this.title = '书籍编辑';
          this.book.id = row.id;
          this.book.bookname = row.bookname
          this.book.price = row.price;
          this.book.booktype = row.booktype;
        }
      },
      handleSizeChange(r) {
        //当页大小发生变化
        let params = {
          bookname: this.bookname,
          rows: r,
          page: this.page
        }
        // console.log(params)
        this.query(params);
      },
      handleCurrentChange(p) {
        //当前页码大小发生变化
        let params = {
          bookname: this.bookname,
          rows: this.rows,
          page: p
        }
        // console.log(params)
        this.query(params);
      },
      query(params) {
        //获取后台请求书籍数据的地址
        let url = this.axios.urls.SYSTEM_BookList;
        this.axios.get(url, {
          params: params
        }).then(d => {
          // console.log(url)
          this.tableData = d.data.rows;
          this.total = d.data.total;
        }).catch(e => {});
      },
      onSubmit() {
        let params = {
          bookname: this.bookname
        }
        // console.log(params)
        this.query(params);
        this.bookname = ''
      }
    },
    created() {
      this.query({});
      //初始书籍类型的书籍
      this.types = [{
        tid: 1,
        tname: '玄幻'
      }, {
        tid: 2,
        tname: '爽文'
      }, {
        tid: 3,
        tname: '爱情'
      }, {
        tid: 4,
        tname: '动作'
      }, {
        tid: 5,
        tname: '都市'
      }];
    }
  }
</script>

<style>
</style>
相关推荐
掘金者阿豪32 分钟前
把业务数据变成共享仪表盘:Metabase可视化与远程访问实践
前端·后端
kyriewen1 小时前
折腾了半年 AI 编程工作流,最后发现效率瓶颈是桌上那块屏幕
前端·javascript·ai编程
蜗牛前端1 小时前
codex 全流程开发上线的高颜值礼簿小程序
前端·微信小程序
大龄秃头程序员2 小时前
我在图文流 App 里落地双层缓存、弱网降级与 OOM 治理
前端
老王以为2 小时前
React Renderer 分离的多平台架构
前端·react native·react.js
hunterandroid2 小时前
Kotlin Coroutines 与 Flow:让异步任务更清晰
前端
Bigger3 小时前
从零搭建 AI 代码审查服务:一份前端也能看懂的 Python 学习笔记
前端·ci/cd·ai编程
用户298698530143 小时前
Java 实现 Word 文档加密与权限解除
java·后端
lichenyang4533 小时前
JSAPI、NAPI、Biz、Imp:ASCF Demo 如何真正调用系统能力和 C++ 能力
前端
lichenyang4533 小时前
IPC、JSVM、UIThread、libuv:ASCF 架构图里最容易混的几个词
前端