element-ui 增删改查

综述

本文按下列步骤,做一个完整的html+vue+element-ui的列表展示,常用于快速开发后台界面。无与数据接口交互内容。

  1. 如何引入element-ui
  2. 组件-layout布局使用
  3. 双向绑定数据对象
  4. 组件-table的使用
  5. 组件-button的使用
  6. 增加一个序号,template - scope的使用
  7. 组件-编辑与删除按钮
  8. 添加用户的方法
  9. 组件-日期的使用
  10. 组件-message的使用
  11. 删除的方法
  12. 组件-确认框的使用
  13. 组件-修改的弹出框
  14. 组件-form表单
  15. 修改的方法
    一个简单的例子,用到了9个组件,足以快速入门element-ui了。

1 引入

先新建一个html页面,然后在官网这个地方 - https://element.eleme.cn/#/zh-CN/component/installation
找到引入如下这段代码。

<!-- import Vue before Element -->
  <script src="https://unpkg.com/vue/dist/vue.js"></script>
  <!-- import JavaScript -->
  <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  <script>
    new Vue({
      el: '#app',
      data: function() {
        return { visible: false }
      }
    })
  </script>

2 layout布局

布局

找到并引入布局代码,再在内容里添加4个输入框(el-input-也在官网找)。

<div class="head">
            <el-row :gutter="20">
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.name" placeholder="请输入姓名"></el-input>
                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-date-picker v-model="userInfo.date" type="date" format="yyyy 年 MM 月 dd 日"
                            value-format="yyyy-MM-dd" placeholder="请选择缴费日期">
                        </el-date-picker>
                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.amount" placeholder="请输入缴费金额"></el-input>
                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.total" placeholder="请输入课节数"></el-input>
                    </div>
                </el-col>
            </el-row>
        </div>

3 双向绑定数据对象

在input框中,有一个v-model,对应的就是data中的数据,这里我们建一个对象来表示。

<script>
    new Vue({
      el: '#app',
      data: function() {
        return { 
          userInfo: {
          name: "",
          date: "",
          amount: "",
          total: "",
      },        
 }
      }
    })
  </script>

4 table引入

找到table拷贝相应代码,别忘了把数据也拷贝过来,然后把数据改成自己的对象,参见最后完整代码。
简单解释下:

  • <template>
    <el-table
    :data="tableData"
    style="width: 100%"> 这个是table,data里的tableData对应的就是数据,它是一个数组。
  • <el-table-column
    prop="date"
    label="日期"
    width="180">
    </el-table-column> 每个el-table-column就是对应的一列,对应的值就是prop对应的值,label就是表头显示的文字。
  • 数组对象
 tableData: [
        {
          name: "小爱",
          date: "2020-02-02",
          amount: "3000",
          total: "60",
        },
      ],
table

5 按钮

在输入框和table之间增加一个添加按钮,同样是找到引入即可。


按钮

6 序号

在table中增加一个序号列,我们增加一列,是没有对应值的,这个值是取不到的,这里怎么办呢?
有两种方法,我们使用template这种,在table里增加这样一列就可以了。

<el-table-column label="序号" width="180">
                        <template slot-scope="scope">
                            {{scope.$index+1}}
                        </template>
                    </el-table-column>

7 修改与删除按钮

在最后一行,我们添加一个修改和删除按钮。

<el-table-column label="操作">
                        <template slot-scope="scope">

                            <el-button type="primary" @click="edit(scope.row,scope.$index)" icon="el-icon-edit" circle>
                            </el-button>
                            <el-button type="danger" @click="del(scope.$index)" icon="el-icon-delete" circle>
                            </el-button>
                        </template>

                    </el-table-column>

8 添加用户

给按钮绑定一个@click方法,方法的实现写到methods中,然后点击按钮,向tableData数组中添加一条数据。

        <el-button type="primary" class="add-btn" @click="add">添加记录</el-button>

methods: {
    add() {
      if (!this.userInfo.name) {
        this.$message({
          showClose: true,
          message: "请输入姓名",
          type: "warning",
        });
        return;
 this.tableData.push(this.userInfo);
      this.userInfo = {
        //清空userInfo
        name: "",
        date: "",
        amount: "",
        total: "",
      };
      }

往数组中添加数据用 push方法 !!!

9 日期

添加后,我们发现日期是不对的,这里我们引入日期组件,并使用对应的format(在日期里找)

<el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-date-picker v-model="userInfo.date" type="date" format="yyyy 年 MM 月 dd 日"
                            value-format="yyyy-MM-dd" placeholder="请选择缴费日期">
                        </el-date-picker>
                    </div>
                </el-col>

10 message组件
校验下非空,如果为空,找到 消息提醒->警告,用一下消息提醒代码。


消息提醒
if (!this.userInfo.name) {
        this.$message({
          showClose: true,
          message: "请输入姓名",
          type: "warning",
        });
        return;
      }

11 删除

  • 删除用什么方法? this.tableData.splice(idx, 1); splice 传入id,1表示删除一个。
  • id怎么传入,不是刚讲过template能拿到数组序号,面壁去!
      <el-table-column label="操作">
                        <template slot-scope="scope">

                            <el-button type="primary" @click="edit(scope.row,scope.$index)" icon="el-icon-edit" circle>
                            </el-button>
                            <el-button type="danger" @click="del(scope.$index)" icon="el-icon-delete" circle>
                            </el-button>
                        </template>

                    </el-table-column>

完整代码

html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>element-ui:增删改查</title>
    <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
    <link rel="stylesheet" href="./css/index.css">

</head>

<body>
    <div id="app">
        <h2>缴费记录</h2>
        <div class="head">
            <el-row :gutter="20">
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.name" placeholder="请输入姓名"></el-input>

                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-date-picker v-model="userInfo.date" type="date" format="yyyy 年 MM 月 dd 日"
                            value-format="yyyy-MM-dd" placeholder="请选择缴费日期">
                        </el-date-picker>
                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.amount" placeholder="请输入缴费金额"></el-input>
                    </div>
                </el-col>
                <el-col :span="6">
                    <div class="grid-content bg-purple">
                        <el-input v-model="userInfo.total" placeholder="请输入课节数"></el-input>
                    </div>
                </el-col>
            </el-row>
        </div>
        <el-button type="primary" class="add-btn" @click="add">添加记录</el-button>
        <div class="body">
            <template>
                <el-table :data="tableData" style="width: 100%">

                    <el-table-column label="序号" width="180">
                        <template slot-scope="scope">
                            {{scope.$index+1}}
                        </template>
                    </el-table-column>
                    <el-table-column prop="name" label="名字" width="180">
                    </el-table-column>
                    <el-table-column prop="date" label="缴费日期" width="180">
                    </el-table-column>
                    <el-table-column prop="amount" label="缴费金额" width="180">
                    </el-table-column>
                    <el-table-column prop="total" label="课节数">
                    </el-table-column>
                    <el-table-column label="操作">
                        <template slot-scope="scope">

                            <el-button type="primary" @click="edit(scope.row,scope.$index)" icon="el-icon-edit" circle>
                            </el-button>
                            <el-button type="danger" @click="del(scope.$index)" icon="el-icon-delete" circle>
                            </el-button>
                        </template>

                    </el-table-column>
                </el-table>
            </template>
        </div>
        <el-dialog title="编辑用户信息" :visible.sync="dialogVisible" width="30%" :before-close="handleClose">
            <div>
                <el-form ref="form" :model="editObj" label-width="80px">
                    <el-form-item label="姓名">
                        <el-input v-model="editObj.name"></el-input>
                    </el-form-item>
                    <el-form-item label="时间">
                        <el-date-picker v-model="editObj.date" type="date" format="yyyy 年 MM 月 dd 日"
                        value-format="yyyy-MM-dd" >
                    </el-date-picker>
                    </el-form-item>
                    <el-form-item label="金额">
                        <el-input v-model="editObj.amount"></el-input>
                    </el-form-item>
                    <el-form-item label="课节数">
                        <el-input v-model="editObj.total"></el-input>
                    </el-form-item>
                </el-form>
            </div>
            <span slot="footer" class="dialog-footer">
                <el-button @click="dialogVisible = false">取 消</el-button>
                <el-button type="primary" @click="editUser">确 定</el-button>
            </span>
        </el-dialog>
    </div>
</body>
<!-- import Vue before Element -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<!-- import JavaScript -->
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
<script src="./js/index.js"></script>

</html>

js,别告诉我不会引入哦。

new Vue({
  el: "#app",
  data: function () {
    return {
      userInfo: {
        name: "",
        date: "",
        amount: "",
        total: "",
      },
      tableData: [
        {
          name: "冷昊远",
          date: "2020-02-02",
          amount: "3000",
          total: "60",
        },
      ],
      dialogVisible: false,
      editIndex:0,
      editObj: {
        name: "",
        date: "",
        amount: "",
        total: "",
      },
    };
  },
  methods: {
    add() {
      if (!this.userInfo.name) {
        this.$message({
          showClose: true,
          message: "请输入姓名",
          type: "warning",
        });
        return;
      }
      this.tableData.push(this.userInfo);
      this.userInfo = {
        //清空userInfo
        name: "",
        date: "",
        amount: "",
        total: "",
      };
    },
    del(idx) {
      this.$confirm("确认删除?")
        .then((_) => {
          this.tableData.splice(idx, 1);
        })
        .catch((_) => {});
    },
    edit(item, idx) {        
      this.editObj = {
        name: item.name,
        date: item.date,
        amount: item.amount,
        total: item.total,
      };
      this.editIndex=idx
      this.dialogVisible=true
    },
    editUser(){
        this.tableData.splice(this.editIndex,1,this.editObj)
        this.dialogVisible=false
    },
    handleClose() {
        this.dialogVisible=false
    },
  },
});

修改呢???

修改有点复杂,见下一篇吧。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343