vue2小练习之学生信息的增删改

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>学生信息管理</title>
    <style>
      table th{
        background-color: skyblue;
      }
    </style>
  </head>

  <body>
    <div id="app">
      <div>
        <span>姓名:</span>
        <input type="text" v-model.trim="name" />
      </div>
      <div>
        <span>年龄:</span>
        <input type="number" v-model.trim="age" />
      </div>
      <div>
        <span>性别:</span>
        <select v-model="selected">
          <option value="男">男</option>
          <option value="女">女</option>
        </select>
      </div>
      <div>
        <button @click="toggleOpera" v-if="isShow">添加/修改</button>
        <button @click="toggleOpera" v-else>添加/修改</button>
      </div>
      <div>
        <table border="1" cellpadding="10" cellspacing="0">
          <tr>
            <th>序号</th>
            <th>姓名</th>
            <th>年龄</th>
            <th>性别</th>
            <th>操作</th>
          </tr>
          <tr v-for="(item, index) in list" :key="item.id">
            <td>{
  {item.id}}</td>
            <td>{
  {item.name}}</td>
            <td>{
  {item.age}}</td>
            <td>{
  {item.gender}}</td>
            <td>
              <button @click="del(item.id)">删除</button>
              <button @click="edit(item.id)">编辑</button>
            </td>
          </tr>
        </table>
      </div>
    </div>
    <script src="./vue.js"></script>
    <script>
      const app = new Vue({
        el: "#app",
        data: {
          name: "",
          age: "",
          selected: "",
          curId: "",
          isShow: true,
          list: JSON.parse(localStorage.getItem('newList')) || []
        },
        methods: {
          //添加信息
          toggleOpera() {
            if (this.isShow) {
              if(!this.name || !this.age) return alert('请输入正确的信息')
              this.list.push({
                id: +new Date(),
                gender: this.selected,
                name: this.name,
                age: this.age,
              });
            } else {
              let newArr = this.list.filter((item) => item.id === this.curId);
              newArr[0].gender = this.selected;
              newArr[0].name = this.name;
              newArr[0].age = this.age;
              this.isShow = !this.isShow
            }
            this.name = ''
            this.age = ''
            this.selected = ''
          },
          //删除信息
          del(id) {
            this.list = this.list.filter((item) => item.id !== id);
          },
          //编辑信息
          edit(id) {
            let newArr = this.list.filter((item) => item.id === id);
            this.curId = id;
            this.id = newArr[0].id;
            this.selected = newArr[0].gender;
            this.name = newArr[0].name;
            this.age = newArr[0].age;
            this.isShow = !this.isShow;
            
          },
        },
        //存储到本地
        watch: {
          list(newVal){
            localStorage.setItem('newList', JSON.stringify(newVal))
          }
        }
      });
    </script>
  </body>
</html>

相关推荐

  1. 前端学习路(Vue2 一)

    2023-12-28 11:16:01       12 阅读
  2. 前端学习路(Vue2 二)

    2023-12-28 11:16:01       15 阅读
  3. vue3+ts实现表格增删查(一)

    2023-12-28 11:16:01       31 阅读
  4. Mybatis增删

    2023-12-28 11:16:01       45 阅读
  5. Mybatis增删

    2023-12-28 11:16:01       30 阅读

最近更新

  1. TCP协议是安全的吗?

    2023-12-28 11:16:01       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2023-12-28 11:16:01       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2023-12-28 11:16:01       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2023-12-28 11:16:01       20 阅读

热门阅读

  1. Redis自动部署脚本编写

    2023-12-28 11:16:01       32 阅读
  2. postgreSQL主从部署

    2023-12-28 11:16:01       26 阅读
  3. DEX,ELF,XML,ARSC文件结构or工具 Dexdump工具

    2023-12-28 11:16:01       38 阅读
  4. “暂存”校验逻辑探讨

    2023-12-28 11:16:01       35 阅读
  5. 人工智能是模仿人脑吗?

    2023-12-28 11:16:01       43 阅读