首页 > 其他分享 >【转】VUE2 表格绑定

【转】VUE2 表格绑定

时间:2022-10-23 10:45:44浏览次数:83  
标签:const padZero 表格 绑定 brandname VUE2 new dt id

资料及内容来自 黑马程序员

点击下载 代码片断:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./lib/bootstrap.css" />
    <style>
        :root {
          font-size: 13px;
        }
  
        body {
          padding: 8px;
        }
      </style>
</head>
<body>
    <div id="app">
        <div class="card">
            <h5 class="card-header">添加品牌</h5>
            <div class="card-body">
              <!-- 添加品牌的表单 -->
              <form class="form-inline" @submit.prevent>
                <div class="input-group mb-2 mr-sm-2">
                  <div class="input-group-prepend">
                    <div class="input-group-text">品牌名称</div>
                  </div>
                  <!-- 文本输入框 -->
                  <input type="text" class="form-control" v-model.trim="brandname" @keyup.esc="brandname = ''" />
                </div>
    
                <!-- 提交表单的按钮 -->
                <button type="submit" class="btn btn-primary mb-2" @click="addNewBrand">添加品牌</button>
              </form>
            </div>
        </div>

        <table class="table table-bordered table-striped mt-2">
                <thead>
                    <tr>
                          <th>#</th>
                        <th>品牌名称</th>
                        <th>状态</th>
                        <th>创建时间</th>
                        <th>操作</th>
                    </tr>
                </thead>

                <tbody>
                    <tr v-for="(item, index) in brandlist" :key="item.id">
                        <td>{{index + 1}}</td>
                        <td>{{item.brandname}}</td>
                        <td>
                          <div class="custom-control custom-switch">
                            <input type="checkbox" class="custom-control-input" :id="item.id" v-model="item.state" />
                            <label class="custom-control-label" :for="item.id" v-if="item.state">已启用</label>
                            <label class="custom-control-label" :for="item.id" v-else>已禁用</label>
                          </div>
                        </td>
                        <td>{{item.addtime | dateFormat}}</td>
                        <td>
                            <a href="#" @click.prevent="removeBrand(item.id)">删除</a>
                        </td>
                    </tr>
                </tbody> 
        </table>
    </div>


    <script src="./lib/vue-2.6.12.js"></script>
    <script>
           // 创建全局的过滤器
           Vue.filter('dateFormat', (dateStr) => {
            const dt = new Date(dateStr)

            const y = dt.getFullYear()
            const m = padZero(dt.getMonth() + 1)
            const d = padZero(dt.getDate())

            const hh = padZero(dt.getHours())
            const mm = padZero(dt.getMinutes())
            const ss = padZero(dt.getSeconds())

            return `${y}-${m}-${d} ${hh}:${mm}:${ss}`
          })
      // 补零的函数
      function padZero(n) {
        return n > 9 ? n : '0' + n
      }

        const vm = new Vue({
            el: '#app',
            data:{
              brandname: '',
              nextId: 4,
                brandlist:[
                    {id:1,brandname:'宝马',state:true,addtime: new Date()},
                    {id:2,brandname:'奥迪',state:true,addtime: new Date()},
                    {id:3,brandname:'奔驰',state:true,addtime: new Date()}
                ]
            },
            methods: {
                // 添加新的品牌数据
                addNewBrand() {
                  // 判断品牌名称是否为空
                  if (!this.brandname) 
                    return alert('品牌名称不能为空!')
                  // 添加新的品牌数据
                  this.brandlist.push({
                    id: this.nextId,
                    brandname: this.brandname,
                    state: true,
                    addtime: new Date(),
                  })
                  // 重置文本框的值
                  this.brandname = ''
                  // 让 nextId 自增 +1
                  this.nextId++
                },
                // 根据 Id 删除对应的数据
                removeBrand(id) {
                  this.brandlist = this.brandlist.filter((x) => x.id !== id)
                },
            }
        })
    </script>
</body>
</html>

 

标签:const,padZero,表格,绑定,brandname,VUE2,new,dt,id
From: https://www.cnblogs.com/z5337/p/16818060.html

相关文章

  • WPF绑定ViewModel方式
    一、xaml方式绑定ViewModel在MainWindow.xaml文件中,引入ViewModel对应的命名空间在MainWindow.xaml文件中,添加窗口上下文节点绑定ViewModel,如下图:二、代码方式绑定Vi......
  • 将表格图片转换成可编辑的表格数据
    Excel的【数据】选项卡下,多了一个【从图片】的按钮,这个按钮所实现的功能就是提取图片中的文字数字,可以将图片表格转换成可编辑的数字表格。 等待自动分析完毕后插入数......
  • 【JavaScript】事件的冒泡,委派,绑定和传播
    文章目录​​冒泡事件​​​​特性:​​​​阻止冒泡事件的两种方法​​​​cancelBubble​​​​stopPropagation()​​​​委派事件​​​​特性​​​​获取点击的元素​......
  • 非表单组件实现双向绑定的小技巧-- v-model 代替 .sync
    简介一般地,双向绑定多用于表单这类输入组件,但在非表单组件上使用双向绑定的需求也很常见,比如具有单选性质的菜单、标签页等组件,通过双向绑定可以更方便地获取和修改激活项......
  • 前端Vue2-Day56
    消息订阅与发布pubsub:实现任意组件间通信使用步骤:①安装pubsub-js:npmipubsub-js②引入:importpubsubfrom'pubsub-js'③订阅消息:使用pubsub自带的subscribe方法......
  • HTML标签-表格标签1和HTML标签-表格标签2
    HTML标签-表格标签1table:定义表格width:宽度border:边框cellpadding:定义内容和单元格的距离cellspacing:定义单元格之间的距离。如果指定为0,则单元格的......
  • vue2.0中svg图片的引用
    1、基础工作都是引用了svg-sprite-loader这个插件  npmisvg-sprite-loader--save2、写一个Svglcon的组件(components/Svglcon),在components目录下新建一个SvgIcon文......
  • unityID手机绑定相关问题
    关于unityID绑定手机号常见问题:1.想要更换新的手机号,且旧的手机号还在用的情况下,可以自行在账户管理页面更改。    2.若旧手机没有使用了,只能联系supportchina@u......
  • Layui 之TreeTable(树形数据表格),适用于权限、部门等
    TreeTable.js下载链接:​​https://pan.baidu.com/s/1lLBge_4MSSViLztwTnPfkA​​提取码:whj3一、效果图 二、前端代码{includefile='common/header'}<divclass="layui-fl......
  • tsc条码打印机如何导入表格批量打印
    很多时候,我们在TSC条码打印机的权昌条码打印软件里做标签时,涉及数据特别大,都保存在EXCLE表格里,那要怎么做,才可以使软件批量打印EXCEL数据呢?下面,小编就教教大家一种简单的批......