溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue+element模態(tài)框中新增模態(tài)框和刪除功能

發(fā)布時(shí)間:2020-10-16 18:30:39 來源:腳本之家 閱讀:361 作者:冬瓜先生 欄目:web開發(fā)

實(shí)現(xiàn)效果如下

vue+element模態(tài)框中新增模態(tài)框和刪除功能

結(jié)構(gòu)

  <el-table-column sortable label="操作">
      <template slot-scope="scope">
       <el-button type="primary" @click="getMembers(scope.row.id)">成員</el-button>
       <el-buttontype="primary" @click="delRole(scope.row.id, scope.$index)">刪除</el-button>
      </template>
     </el-table-column>
  //scope.$index 獲取當(dāng)前行的index

// 打開新增成員

openAddStaff() {
 this.getAllStaff();
},
// 確定新增
addStaff() {
 if (!this.user) {
  this.$message.error("請(qǐng)選擇用戶!");
  return;
 }
 this.$post(
  "/api/RoleMemberController/add",
  { userId: this.user.split("/")[0], roleId: this.roleId },
  data => {
   console.log(data,111)
   this.$message.success("添加成功!");
   this.dialogAddStaffVisible = false;
   let item = {
    id: data.rm.id,
    userId: data.rm.userId,
    userCname: this.user.split("/")[1]
   };
   this.staffList.push(item);//從數(shù)組中添加當(dāng)前行
  }
 );
},

// 刪除員工

delStaff(id, index) {
 this._confirm("確定刪除嗎?", () => {
  this.$post("/api/RoleMemberController/delOne", { id: id }, data => {
   this.$message.success("刪除成功!");
   this.staffList.splice(index, 1);//從數(shù)組中刪除當(dāng)前行
  });
 });
},

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI