时间:2021-05-25
本文实例为大家分享了vue简单的图书管理具体代码,供大家参考,具体内容如下
<table class="table table-bg table-border table-bordered"> <tr> <th>ID</th> <th>书名</th> <th>作者</th> <th>价格</th> <th>操作</th> </tr> <tr v-for="(book,index) in books"> <td>{{book.id}}</td> <td>{{book.name}}</td> <td>{{book.author}}</td> <td>{{book.price}}</td> <td> <button class="btn" @click="delBook(index)">删除</button> </td> </tr></table><fieldset> <legend>添加新书</legend> <p>书名:<input type="text" v-model="newBook.name"></p> <p>作者:<input type="text" v-model="newBook.author"></p> <p>价格:<input type="text" v-model="newBook.price"></p> <p><button class="btn" @click="addBook">添加</button></p></fieldset><script>new Vue({ el:'#books', data:{ books:[ {id:1, name:'红楼梦', author:'曹雪芹', price:'1'}, {id:2, name:'西游记', author:'吴承恩', price:'2'}, {id:3, name:'水浒传', author:'施耐庵', price:'3'} ], newBook:{ id:0, name:'', author:'', price:'' } }, methods:{ delBook:function(idx){ if(window.confirm('确认要删除?')){ this.books.splice(idx, 1); } }, addBook:function(){ // 约束 if(this.newBook.name.length == 0) { alert('书名不能为空'); return; } if(this.newBook.author.length == 0){ alert('书的作者不能为空'); return; } if(this.newBook.price.length == 0){ this.newBook.price = '0' } // 计算插入id var maxId = 0; for(var i=0; i<this.books.length; i++){ if(maxId<this.books[i].id){ maxId = this.books[i].id; } } this.newBook.id = maxId+1; // 插入到 books中 this.books.push(this.newBook); // 清空新书 this.newBook = {}; } }});</script>效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了vue实现图书管理系统的具体代码,供大家参考,具体内容如下组件代码图书管理编号:名称:提交图书总数:{{totalNum}}编号名称时间操作
本文实例为大家分享了Vue实现图书管理的具体代码,供大家参考,具体内容如下案例效果案例思路1、图书列表实现静态列表效果基于数据实现模板效果处理每行的操作按钮2、
本文实例为大家分享了python代码实现图书管理系统的具体代码,供大家参考,具体内容如下图书管理系统功能简介添加图书时,图书ID不能重复,图书名可重复删除,查询
本文实例为大家分享了vue.js实现图书管理功能的具体代码,供大家参考,具体内容如下Document序号:{{book.id}}书名:{{book.name}}
本文实例为大家分享了python实现图书管理系统的具体代码,供大家参考,具体内容如下需求:图书管理系统1.查询图书2.增加图书3.借阅图书4.归还图书5.退出系