el-table 删除行数据(犯错篇)

<el-table
      :data="dataList.data"
      style="width: 100%"
      stripe border
      :key="key"  
      v-loading="loading"
      :max-height="550"
  >
  <el-table-column   
      prop="id"
      label="ID"
      align="center"
      width="60"
  ></el-table-column>
  <el-table-column label="人才姓名" align="center">   
      <template slot-scope="scope">
          {{ scope.row.person_name }}
      </template>
  </el-table-column>
  <el-table-column  label="证书类别" align="center" >
      <template slot-scope="scope">
          {{ scope.row.certificate_type_val }}
      </template>
  </el-table-column>
  <el-table-column label="证书专业" align="center" >
      <template slot-scope="scope">
          {{ scope.row.certificate_professional_val }}
      </template>
  </el-table-column>
  <el-table-column label="收价(元)" align="center" >
      <template slot-scope="scope">
          {{ scope.row.purchase_price }}
      </template>
  </el-table-column>
  <el-table-column label="出价(元)" align="center" >
      <template slot-scope="scope">
          {{ scope.row.offer_price }}  
      </template>
  </el-table-column> 
    <el-table-column
      label="操作"
      align="center"
      fixed="right"
      width="150"
      :max-height="480"
  >
      <template slot-scope="scope">
          <div>
              <el-button  
        
                  size="mini"
                  type="success"    
                  title="减少"   
                  @click.native.prevent="reduce(scope.row,scope.$index)"         
              >减少    
              </el-button>
              <el-button
                  size="mini"   
                  type="primary"          
                  title="置换"    
                  @click="replacement(scope.row,scope.$index)"           
              >置换
              </el-button>
         </div> 
      </template>
  </el-table-column>
</el-table>
<script>
export default {
    data(){
		   return{
		       dataList:{
		           data:[]
		       }  
		   }
    },
    methods:{
	    // 减少
	     reduce(data,index){    
	      setTimeout(()=>{
		      this.dataList.data.splice(index,1)   
		      // this.dataList = this.dataList.data.splice(index,1)  错误的数据,返回的是删除的数据,而不是删除过后的数据       
	      })  
	     },
	     replacement(data,index){
	       setTimeout(()=>{
		      this.dataList.data.splice(index,1)            
	      })
	     }  
    }
}
</script>  
要在el-dialog中实现新增el-table数据,需要进以下步骤: 1. 在el-dialog中添加表单元素,用于输入新增数据。 2. 在表单中添加提交按钮,用于提交新增数据。 3. 在点击提交按钮时,将表单数据保存到一个对象中。 4. 将保存的对象添加到el-table数据源中。 下面是一个简单的示例代码,演示如何在el-dialog中新增el-table数据: ``` <template> <div> <el-button type="primary" @click="showDialog">新增</el-button> <el-dialog :visible.sync="dialogVisible"> <el-form ref="form" :model="formData"> <el-form-item label="姓名"> <el-input v-model="formData.name"></el-input> </el-form-item> <el-form-item label="年龄"> <el-input v-model.number="formData.age"></el-input> </el-form-item> </el-form> <div slot="footer"> <el-button @click="dialogVisible = false">取消</el-button> <el-button type="primary" @click="addRow">提交</el-button> </div> </el-dialog> <el-table :data="tableData"> <el-table-column prop="name" label="姓名"></el-table-column> <el-table-column prop="age" label="年龄"></el-table-column> </el-table> </div> </template> <script> export default { data() { return { dialogVisible: false, formData: { name: '', age: 0 }, tableData: [ { name: '张三', age: 20 }, { name: '李四', age: 22 }, { name: '王五', age: 25 } ] }; }, methods: { showDialog() { this.dialogVisible = true; }, addRow() { this.tableData.push(this.formData); this.dialogVisible = false; this.$refs.form.resetFields(); } } }; </script> ``` 在上面的示例中,我们通过el-dialog实现了一个表单,用于输入新增数据。当点击提交按钮时,我们将表单数据保存到formData对象中,并将该对象添加到tableData数组中,从而实现了新增el-table数据。同时,我们还使用了$refs来重置表单数据,以便下一次新增的操作。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值