vue 호적 관리 시스템 구현

3881 단어 vue관리 시스템
본 논문 의 사례 는 vue 가 호적 관리 시스템 을 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
호적 관리 시스템,v-model,v-for 참조
인터페이스 미리 보기

단계 사고방식:
1.html+css 생 성
2.vue 도입,인 스 턴 스
3.기본 데이터 메시지 배열 준비
4.기본 데이터 렌 더 링,v-for 순환 폼
5.새 데이터 newmessage 만 들 기
6.입력 상자 v-model 에 연결
7.추가 함수 add()를 만 들 고 기본 데이터 에 새 데 이 터 를 추가 합 니 다.new message->message
8.추 가 된 후 폼 을 비우 면 new message 를 복원 합 니 다.
9.시 에 누가 누 구 를 삭제 하 는 지 del()함수
body 부분:

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<div id = 'app' v-cloak>
 <legend>      </legend></br>
   :<input type="text" placeholder="      " v-model = 'newmessage.name'></br>
   :<input type="text" placeholder="     " v-model = 'newmessage.age'></br>
   :
 <select v-model = 'newmessage.sex'>
 <option> </option>
 <option> </option>
 </select></br>
   :<input type="text" placeholder="      " v-model = 'newmessage.phone'></br>
 <button class = 'save' @click = 'add()'>     </button></br>
 <table>
 <tr class = 'title'>
 <td width = '100px'>  </td>
 <td width = '100px'>  </td>
 <td width = '100px'>  </td>
 <td width = '200px'>  </td>
 <td width = '100px'>  </td>
 </tr>
 <tr v-for = 'item,index in message'>
 <td>{{item.name}}</td>
 <td>{{item.sex}}</td>
 <td>{{item.age}}</td>
 <td>{{item.phone}}</td>
 <td><button @click = 'del(index)'>  </button></td>
 </tr>
 </table>
</div>
vue 부분:

<script>
 var app = new Vue({
 el:'#app',
 data:{
 message:[
  {
  name:'  ',
  sex:' ',
  age:16,
  phone:'1568888811'
  },
  {
  name:'  ',
  sex:' ',
  age:26,
  phone:'1456666622'
  },
  {
  name:'   ',
  sex:' ',
  age:36,
  phone:'1866666666'
  },
 ],
 newmessage:{name:'',age:'',sex:' ',phone:''},
 
 },
 methods:{
 add(){
  if(!this.newmessage.name == ''){
  this.message.push(this.newmessage);
  this.newmessage = {
  name:'',
  age:'',
  sex:' ',
  phone:''
  };
  }
  else{
  alert('     !');
  }
 },
 del(index){
  this.message.splice(index,1);
 }
 }
 })
 </script>
css 스타일:

<style>
 *{
 margin:0;
 padding:0;
 }
 #app{
 border: 1px solid black;
 width:800px;
 padding:30px 30px;
 }
 #app .save{
 background-color: #555555;
 border-radius: 10%;
 height:50px;
 color:white;
 }
 #app input,select{
 margin:10px 0;
 width:300px;
 }
 #app td{
 text-align: center;
 }
 #app .title td{
 background-color: #555555;
 color:white;
 }
 #app table button{
 background-color: #555555;
 color:white;
 border-radius: 30%;
 }
 </style>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기