亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于Vue實現圖書管理功能

發布時間:2020-09-14 21:15:04 來源:腳本之家 閱讀:147 作者:damys 欄目:web開發

本文實例為大家分享了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>

效果圖:

基于Vue實現圖書管理功能

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武山县| 增城市| 措勤县| 宁乡县| 泌阳县| 民权县| 隆林| 西盟| 蒙山县| 申扎县| 黄大仙区| 永州市| 绥芬河市| 依兰县| 开封县| 湛江市| 洛南县| 武威市| 敦煌市| 宜君县| 紫阳县| 凉山| 沁源县| 谢通门县| 淮北市| 通州区| 霍州市| 库尔勒市| 绥滨县| 本溪市| 大洼县| 宜阳县| 安丘市| 尤溪县| 贡山| 息烽县| 平湖市| 东兰县| 右玉县| 常宁市| 盐源县|