Vue實現搜尋 和新聞列表功能簡單範例,vue新聞列表

來源:互聯網
上載者:User

Vue實現搜尋 和新聞列表功能簡單範例,vue新聞列表

如下所示:


<html xmlns="http://www.w3.org/1999/xhtml"><head>  <title>無標題頁</title>   <meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black"><meta name="format-detection" content="telephone=no"><meta name="format-detection" content="email=no"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=0"><script src="/style/js/vue.min.js" type="text/javascript"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/vue-resource/0.1.17/vue-resource.js"></script> <style>   .box {    width: 900px;    height: auto;    overflow: hidden;    margin: 30px auto;   }   .left {    height: 150px;    width: 185px;    padding: 5px;    display: inline-block;    border: 1px solid black;   }   .left input {    padding: 2px;    margin-top: 10px;   }   .right {    width: 600px;    height: auto;    display: inline-block;    margin-left: 30px;    vertical-align: top;   }   .right table {    border-collapse: collapse;    width: 580px;   }   .right table th {    background-color: green;    padding: 5px;    text-align: center;    border: 1px solid black;    color: #FFFFFF;   }   .right table tr {    text-align: center;   }   .right table td {    border: 1px solid black;   }  </style></head><body><div id="app">   <div class="box">    <div class="left">     <input type="text" placeholder="輸入編號" v-model="id" />     <input type="text" placeholder="輸入名稱" v-model="name" /><br />     <input type="button" value="添加資料" @click="add" />     <input type="text" placeholder="搜尋資料" v-model="search" />    </div>    <div class="right">     <table>      <tr>       <th>編號</th>       <th>品牌名稱</th>       <th>建立時間</th>       <th>操作</th>      </tr>      <tr v-for="item in searchData">       <td>{{item.id}}</td>       <td>{{item.name}}</td>       <td>{{item.time | datefmt('yyyy-mm-dd HH:mm:ss')}}</td>       <td>        <a href="javascript:void(0)" rel="external nofollow" @click="del(item.id)">刪除</a>       </td>      </tr>     </table>    </div>   </div>  </div>  <script>   //定義全域過濾器   Vue.filter("datefmt", function (input, formatstring) {    var result = "";    var year = input.getFullYear();    var month = input.getMonth() + 1;    var day = input.getDate();    var hour = input.getHours();    hour = hour < 10 ? "0" + hour : hour;    var minute = input.getMinutes();    minute = minute < 10 ? "0" + minute : minute;    if (formatstring == 'yyyy-mm-dd') {     result = year + "-" + month + "-" + day;    } else {     result = year + "-" + month + "-" + day + " " + hour + ":" + minute;    }    return result;   })   var TEMPLATE={     options:function(){       /**     <a class="weui_cell" href="javascript:void(0);" rel="external nofollow" >  <div class=weui_cell_hd >   <i class="fa fa-credit-card fa-2x icon-color" style=width:35px;margin-right:15px;display:block ></i>  </div>  <div class="weui_cell_bd weui_cell_primary" >   <p > {{HospPatientName}}    <span style=margin-left:15px class=blue_tag >{{HospCardType}}</p>   <p >{{HospCardNo}}</p></div>  <div class=weui_cell_ft >  {{HospIsDefault}}   </div> </a>             */     }   };   var vm = new Vue({    el: '#app',    data: {     id: '',     name: '',     search: '',     list: [{       "id": 1,       "name": "寶馬",       "time": new Date()      },      {       "id": 2,       "name": "平治",       "time": new Date()      }     ]    },    methods: {     del: function (id) {      if (!confirm("是否刪除資料?")) {       return;      }      //調用list.findIndex()方法,根據傳入的id擷取到這個要刪除資料的索引值      var index = this.list.findIndex(function (item) {       return item.id == id;      });      //調用list.splice(刪除的索引,刪除的元素個數)      this.list.splice(index, 1);     },     add: function () {      //封裝成list要求的對象      var tem = {       id: this.id,       name: this.name,       time: new Date()      };      //將tem追加到list數組中      this.list.push(tem);      //清空頁面上的文字框中的資料      this.id = "";      this.name = "";     }    },    computed: {     searchData: function () {      var search = this.search;      if (search) {       return this.list.filter(function (name) {        return Object.keys(name).some(function (key) {         return String(name[key]).toLowerCase().indexOf(search) > -1        })       })      }      return this.list;     }    }   })  </script></body></html>

總結

以上所述是小編給大家介紹的Vue實現搜尋 和新聞列表功能簡單範例,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對幫客之家網站的支援!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.