美文网首页
饿了么 ui table 编辑 删除

饿了么 ui table 编辑 删除

作者: 不算程序员 | 来源:发表于2020-03-11 15:03 被阅读0次

1 ! 2! 3! pong~~~

先看笑果


el-table.gif

不多bibi, 上代码

<el-table
  style="width: 100%"
  border
  :data="copyData"
  stripe
  @cell-dblclick="dblhandleCurrentChange"
  @cell-click="currentChange"
  :highlight-current-row="true"
>
  <el-table-column
    v-for="(item,index) in tableHead"
    :prop="item.column_name"
    :label="item.column_comment"
    :key="index"
  >
    <template slot-scope="scope">
      <!-- <span>{{ scope.row.isEdit }}</span> -->
      <span v-if="scope.row.isEdit && currentTableId === scope.row.index">
        <el-input v-model="scope.row[item.column_name]" size="mini" placeholder="请输入内容"></el-input>
      </span>
      <span v-else>{{ scope.row[item.column_name] }}</span>
    </template>
  </el-table-column>
  <el-table-column label="操作">
    <template slot-scope="scope">
      <el-button  // 编辑 和 确认
        :type="scope.row.isEdit &&  currentTableId === scope.row.index ? 'success' :'primary'"
        :icon="scope.row.isEdit &&  currentTableId === scope.row.index ? 'el-icon-check' :'el-icon-edit'"
        circle
        @click="(e) => (handleEdit(scope.$index, scope.row,scope.row.isEdit,e))"
      ></el-button>
      <el-button  //  取消编辑
        v-show="scope.row.isEdit &&  currentTableId === scope.row.index"
        type="danger"
        icon="el-icon-close"
        circle
        @click="(e) => cacle(scope.$index, scope.row,scope.row.isEdit,e)"
      ></el-button>
      <el-button  // 删除
        v-if="operation === 1 "
        v-show="!scope.row.isEdit ||  currentTableId != scope.row.index"
        icon="el-icon-delete"
        circle
        type="danger"
        @click="(e) => handleDelete(scope.$index, scope.row,scope.row.isEdit,e)"
      ></el-button>
    </template>
  </el-table-column>
</el-table>

然后再看一哈数据合适

        tableHead: [
          {
            column_name: "stage_name",
            column_comment: "阶段名称"
          },
          {
            column_name: "staring_height",
            column_comment: "持续时间(min)"
          },
          {
            column_name: "end_height",
            column_comment: "开始温度(°C)"
          },
          {
            column_name: "duration",
            column_comment: "结束温度(°C)"
          }
        ],
    
        tableData: [
          {
            stage_name: "新任务1",
            staring_height: "1 ",
            end_height: "1",
            isEdit: false,
            duration: "1",
            index:0
    
          },
        ]
  欢迎指教,感谢打扰  bye ! ! ! !

有问题邮箱聊 2838370086@qq.com

相关文章

  • 饿了么 ui table 编辑 删除

    1 ! 2! 3! pong~~~ 先看笑果el-table.gif 不多bibi, 上代码 然后再看一哈数据合适...

  • element-ui + el-dialog出现卡顿

    写个后台遇到点小波折,使用element-ui table时,经常有需要编辑、添加、删除等操作,习惯性在table...

  • 基于Vue的Ui框架

    饿了么公司基于vue开的的vue的Ui组件库 Element Ui 基于vue pc端的UI框架饿了么 Mint...

  • 饿了么ui

    饿了么UI 1、先打开git bash here (鼠标右击 ) 2、在git里面输入:git clone git...

  • 饿了么组件table

    element-table A element-table component for Vue.js. Demo ...

  • Vue UI框架比较(PC端)

    最好基于vue2.0 因为用过的是饿了么UI,所以比较以饿了么UI为标准 1. element UIelement...

  • ui 库

    element-ui :饿了么ant-design :taobao

  • 前端开发工具收藏

    1,UI框架 element-ui饿了么ui框架 地址:https://element.eleme.cn/2.0/...

  • 前端UI框架小汇总

    移动端UI框架 Mint UI(饿了么团队) 中文官网:http://mint-ui.github.io/#!/z...

  • vue 资料合集

    UI组件element ★11612 - 饿了么出品的Vue2的web UI工具套件 Vux ★7503 - 基于...

网友评论

      本文标题:饿了么 ui table 编辑 删除

      本文链接:https://www.haomeiwen.com/subject/wqdcjhtx.html