Vue实现图书管理小案例


Posted in Vue.js onDecember 03, 2020

本文实例为大家分享了Vue实现图书管理的具体代码,供大家参考,具体内容如下

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
     .grid{
      margin:auto;
      width:500px;
      text-align:center;
     }
     .grid table{
      width:100%;
      border-collapse:collapse;
     }
     .grid th,td{
      padding:10px;
      border:1px solid orange;
      height:35px;
      line-height:35px;
     }
     .grid th{
      background-color:orange;
     }
     .book{
      background-color:orange;
      border-bottom:1px solid #ccc;
      padding:5px;
     }
     input{
      width:150px;
      outline:none;
     }
     .grid .total{
      height:30px;
      line-height:30px;
      background-color:orange;
      border-bottom:1px solid #ccc;
     }
  </style>
</head>
<body>
<div id="app">
  <div class="grid">
   <div>
     <h1>图书管理</h1>
     <div class="book">
      <label for="id">编号:</label>
      <input type="text" id="id" v-model='id' :disabled='flag' v-focus>
      <label for="name">名称:</label>
      <input type="text" id="name" v-model='name'>
      <button @click='handle' :disabled='submitFlag'>提交</button>
     </div>
   </div>
   <div class="total">
     <span>图书总数:</span>
     <span>{{total}}</span>
   </div>
   <table>
     <thead>
       <tr>
        <th>编号</th>
        <th>名称</th>
        <th>时间</th>
        <th>操作</th>
       </tr>
     </thead>
     <tbody>
     <tr :key='item.id' v-for='item in books'>
       <td>{{item.id}}</td>
       <td>{{item.name}}</td>
       <td>{{item.date | format('yyyy-MM-dd hh:mm:ss')}}</td>
       <td>
         <a href="" @click.prevent='toEdit(item.id)'>修改</a>
         <span>|</span>
         <a href="" @click.prevent='deleteBook(item.id)'>删除</a>
       </td>
     </tr>
     </tbody>
   </table>
</div>
<script src="js/vue.js"></script>
<script>
  //自定义指令
  Vue.directive('focus',{
    inserted:function(el){
      el.focus();
    }
  })
  //过滤器(格式化日期)
  Vue.filter('format', function(value, arg) {
      function dataFormat(date, format) {
        if (typeof date === "string") {
          var mts = date.match(/(\/Date\((\d+)\)\/)/);
          if (mts && mts.length >= 3) {
            date = parseInt(mts[2]);
          }
        }
        date = new Date(date);
        if (!date || date.toUTCString() == "Invalid Date") {
          return "";
        }
        var map = {
          "M": date.getMonth() + 1, //月
          "d": date.getDate(), //日
          "h": date.getHours(), //小时
          "m": date.getMinutes(), //分
          "s": date.getSeconds(), //秒
          "q": Math.floor((date.getMonth() + 3) / 3), //季度
          "S": date.getMilliseconds() //毫秒
        };
        format = format.replace(/([yMdhmsqS])+/g, function(all, t) {
          var v = map[t];
          if (v !== undefined) {
            if (all.length > 1) {
              v = '0' + v;
              v = v.substr(v.length - 2);
            }
            return v;
          } else if (t == 'y') {
            return (date.getFullYear() + '').substr(4 - all.length);
          }
          return all;
        });
        return format;
      }
      return dataFormat(value, arg);
    })

    var vm=new Vue({
      el:'#app',
      data:{
       flag:false,
       submitFlag:false,
       id:'',
       name:'',
       books:[]
      },
      methods:{
       handle:function(){
         if(this.flag){
          //修改操作:就是根据当前的id去更新数组中对应的数据
          //箭头函数的this不是window
          //some方法判断什么时候终止循环
          this.books.some((item)=>{
            if(item.id==this.id){
              item.name=item.name;
              //完成更新操作之后,要终止循环
              return true;
            }
          });
          this.flag=false;
         }else{
          //添加操作
          //添加图书
          var book={};
          book.id=this.id;
          book.name=this.name;
          book.date=new Date();
          this.books.push(book);
         }
         //清空表单
         this.id='';
         this.name='';
       },//handle结束
       toEdit:function(id){
         //禁止修改id
         this.flag=true;
         //根据id查询出要编辑的数据
         var book=this.books.filter(function(item){
           return item.id==id;
         });
         //把获取的信息填充到表单
         this.id=book[0].id;
         this.name=book[0].name;
       },//toEdit结束
       deleteBook:function(id){
         //删除图书
         //根据id从数组中查找元素的索引
         var index=this.books.findIndex(function(item){
           return item.id==id;
         });
         //根据索引删除数组元素
         this.books.splice(index,1);
         
         //方法二:通过filter方法进行删除
         //this.books=this.books.filter(function(item){
          //return item.id!=id;
         //});
       }//deleteBook结束
      },
      computed:{
       total:function(){
         //计算图书的总数
         return this.books.length;
       }
      },//computed结束
      watch:{
       name:function(val){
         //验证图书名称是否已经存在
         var flag=this.books.some(function(item){
          return item.name==val;
         });
         if(flag){
          //图书名称存在
          this.submitFlag=true;
         }else{
          this.submitFlag=false;
         }
       }
      },//watch结束
      mounted:function(){
       //该生命周期钩子函数被触发的时候,模板已经可以使用
       //一般用于获取后台数据,然后把数据填充到模板
       //模拟接口
       var data=[{
         id:1,
         name:'三国演义',
         date:1585609975000
       },{
         id:2,
         name:'水浒传',
         date:1586609975000
       },{
         id:3,
         name:'红楼梦',
         date:1587609975000
       },{
         id:4,
         name:'西游记',
         date:1588609975000
       }];
       this.books=data;
      }
    });
</script>
</body>
</html>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Vue.js 相关文章推荐
vue-router定义元信息meta操作
Dec 07 Vue.js
vue图片裁剪插件vue-cropper使用方法详解
Dec 16 Vue.js
Vue 数据响应式相关总结
Jan 28 Vue.js
用vite搭建vue3应用的实现方法
Feb 22 Vue.js
vue 使用 v-model 双向绑定父子组件的值遇见的问题及解决方案
Mar 01 Vue.js
vue-cropper组件实现图片切割上传
May 27 Vue.js
Vue过滤器(filter)实现及应用场景详解
Jun 15 Vue.js
Vue+Flask实现图片传输功能
Apr 01 Vue.js
使用vue判断当前环境是安卓还是IOS
Apr 12 Vue.js
Vue OpenLayer 为地图绘制风场效果
Apr 24 Vue.js
vue-treeselect的基本用法以及解决点击无法出现拉下菜单
Apr 30 Vue.js
vue如何在data中引入图片的正确路径
Jun 05 Vue.js
Vue router安装及使用方法解析
Dec 02 #Vue.js
vue3.0中setup使用(两种用法)
Dec 02 #Vue.js
vue3.0+vue-router+element-plus初实践
Dec 02 #Vue.js
Vue router传递参数并解决刷新页面参数丢失问题
Dec 02 #Vue.js
详解Vue3 Teleport 的实践及原理
Dec 02 #Vue.js
vue $router和$route的区别详解
Dec 02 #Vue.js
基于vue项目设置resolves.alias: '@'路径并适配webstorm
Dec 02 #Vue.js
You might like
laravel与thinkphp之间的区别与优缺点
2021/03/02 PHP
js获取指定日期前后的日期代码
2013/08/20 Javascript
JavaScript面向对象的实现方法小结
2015/04/14 Javascript
详解JavaScript数组的操作大全
2015/10/19 Javascript
jquery 判断selection range 是否在容器中的简单实例
2016/08/02 Javascript
JavaScript日期选择功能示例
2017/01/16 Javascript
JS打开摄像头并截图上传示例
2017/02/18 Javascript
Vue2 Vue-cli中使用Typescript的配置详解
2017/07/24 Javascript
解决Mac安装thrift因bison报错的问题
2018/05/17 Javascript
element-ui表格列金额显示两位小数的方法
2018/08/24 Javascript
vue-cli的工程模板与构建工具详解
2018/09/27 Javascript
手把手教你写一个微信小程序(推荐)
2018/10/17 Javascript
JS实现判断移动端PC端功能
2020/02/21 Javascript
基于Vue CSR的微前端实现方案实践
2020/05/27 Javascript
一篇不错的Python入门教程
2007/02/08 Python
Python 文件操作实现代码
2009/10/07 Python
Python中动态获取对象的属性和方法的教程
2015/04/09 Python
利用Python循环(包括while&amp;for)各种打印九九乘法表的实例
2017/11/06 Python
Python 循环终止语句的三种方法小结
2019/06/24 Python
Python Multiprocessing多进程 使用tqdm显示进度条的实现
2019/08/13 Python
解决pytorch GPU 计算过程中出现内存耗尽的问题
2019/08/19 Python
基于python实现上传文件到OSS代码实例
2020/05/09 Python
python定时截屏实现
2020/11/02 Python
Django model class Meta原理解析
2020/11/14 Python
css3的@media属性实现页面响应式布局示例代码
2014/02/10 HTML / CSS
html5 canvas 画图教程案例分析
2012/11/23 HTML / CSS
美国高端寝具品牌:Coyuchi
2017/02/08 全球购物
高三自我鉴定怎么写
2013/10/19 职场文书
教师实习自我鉴定
2013/12/14 职场文书
年度评优评先方案
2014/06/03 职场文书
工伤事故赔偿协议书(标准)
2014/09/29 职场文书
学校运动会广播稿
2014/10/11 职场文书
学习保证书怎么写
2015/02/26 职场文书
自主招生英文自荐信
2015/03/25 职场文书
六年级作文之关于梦
2019/10/22 职场文书
mysql获取指定时间段中所有日期或月份的语句(不设存储过程,不加表)
2021/06/18 MySQL