Vue通用信息錄入界面,供大家參考,具體內容如下
10多年的湯旺網站建設經驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。成都全網營銷的優(yōu)勢是能夠根據用戶設備顯示端的尺寸不同,自動調整湯旺建站的顯示方式,使網站能夠適用不同顯示終端,在瀏覽器中調整網站的寬度,無論在任何一種瀏覽器上瀏覽網站,都能展現優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯從事“湯旺網站設計”,“湯旺網站推廣”以來,每個客戶項目都認真落實執(zhí)行。<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>員工信息錄入</title> <style> .btn1{ color: blue; background: skyblue; text-align: center; } </style> </head> <body> <p id="p2"> <fieldset> <legend>員工信息錄入</legend> <p > <label>姓名:</label> <input type="text" v-model="newStudent.name"><br> <label>年齡:</label> <input type="text" v-model="newStudent.age"><br> <label>性別:</label> <select v-model="newStudent.sex">> <option value="男">男</option> <option value="女">女</option> </select><br> <label>手機:</label> <input type="text" v-model="newStudent.phoneNo"><br> <p> <button @click="createStudent()">新增用戶</button> </p> </p> <table border="2px"> <thead> <tr> <th>序號</th> <th>姓名</th> <th>年齡</th> <th>性別</th> <th>手機</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(student,index) in studentsList"> <td>{{index+1}}</td> <td>{{student.name}}</td> <td>{{student.age}}</td> <td>{{student.sex}}</td> <td>{{student.phoneNo}}</td> <td :class="btn1"><button @click="DeletestudentRow(index)">移除</button></td> </tr> </tbody> </table> <label>總行數:</label><span>{{studentsList.length}}</span> </fieldset> </p> </body> <script src="js/vue.js"></script> <script> var p1Data={ newStudent:{name:"",age:0,sex:"男",phoneNo:""}, studentsList:[{No:"0001",name:"張三",age:18,sex:"男",phoneNo:"13688899900"}, {No:"0112",name:"王五",age:28,sex:"男",phoneNo:"18800068888"}, {No:"0253",name:"林志玲",age:33,sex:"女",phoneNo:"18600001002"}, {No:"0608",name:"林志穎",age:68,sex:"男",phoneNo:"15998769900"}], }; var vm1=new Vue({ el:"#p2", data:p1Data, methods:{ //移除一行 DeletestudentRow:function (index) { this.studentsList.splice(index,1); }, //添加一行 createStudent: function(){ this.studentsList.push(this.newStudent); // 添加完newPerson對象后,重置newPerson對象 this.newStudent = {name:"",age:0,sex:"男",phoneNo:""} }, } }); </script> </html>
文章名稱:vue實現員工信息錄入功能的方法
標題路徑:http://www.rwnh.cn/article28/cpgdcp.html
成都網站建設公司_創(chuàng)新互聯,為您提供企業(yè)建站、網頁設計公司、搜索引擎優(yōu)化、企業(yè)網站制作、手機網站建設、動態(tài)網站
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯