VUE练习图书列表

记录第一篇VUE代码练习,以后会越来越好

<!DOCTYPE html>
<html>

<head>
    <script src='vue.js'></script>
    <meta charset="UTF-8">
    <title>前端研习社-图书管理系统</title>
    <style>
        h1 {
            text-align: center;
        }

        table,
        td,
        th {
            border-collapse: collapse;
            border-spacing: 0
        }

        table {
            width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        td,
        th {
            border: 1px solid #bcbcbc;
            padding: 5px 10px;
        }

        th {
            background: #42b983;
            font-size: 1.2rem;
            font-weight: 400;
            color: #fff;
            cursor: pointer;
        }

        tr:nth-of-type(odd) {
            background: #fff;
        }

        tr:nth-of-type(even) {
            background: #eee;
        }

        .add {
            width: 400px;
            padding: 10px 50px;
            margin: 10px auto;
            background: #ccc;
            border-radius: 5px;
        }

        h2 {
            text-align: center;
        }

        p {
            height: 50px;
            line-height: 50px;
        }

        input {
            width: 300px;
            height: 50px;
            line-height: 50px;
            font-size: 20px;
            padding-left: 10px;
        }

        p button {
            float: right;
            width: 100px;
            height: 50px;
            line-height: 50px;
            font-size: 20px;
            border-radius: 5px;
        }
    </style>
</head>

<body>
    <div id="app">
        <h1>图书管理系统</h1>
        <table>
            <thead>
                <tr>
                    <th>序号</th>
                    <th>书名</th>
                    <th>作者</th>
                    <th>价格</th>
                    <th>标签</th>
                    <th>操作</th>
                </tr>
            </thead>
            <tbody>
                <tr v-for="(book, index) in books" v-if='book.hidden'>
                    <td>{{index+1}}</td>
                    <td>{{book.bookname}}</td>
                    <td>{{book.auth}}</td>
                    <td>{{book.price}}</td>
                    <td>{{book.tag}}</td>
                    <td><button @click='del(index)'>删除</button></td>
                </tr>
            </tbody>
        </table>
        <div class="add">
            <h2>添加新书</h2>
            <div class="form-group">
                <p>书名:<input type="text" v-model="newBook.bookname"></p>
                <p>作者:<input type="text" v-model="newBook.auth"></p>
                <p>价格:<input type="text" v-model="newBook.price"></p>
                <p>标签:<input type="text" v-model="newBook.tag"></p>
                <p><button @click='add()'>添加</button></p>
            </div>
        </div>
    </div>
    <script>
        var vm = new Vue({
            el: '#app',
            data: {
                books: [{
                    bookname: '《三国演义》',
                    auth: '罗贯中',
                    price: 99.99,
                    tag: '经典',
                    hidden: true
                }, {
                    bookname: '《红楼梦》',
                    auth: '曹雪芹',
                    price: 88,
                    tag: '推荐',
                    hidden: true
                }, {
                    bookname: '《水浒传》',
                    auth: '施耐庵',
                    price: 77,
                    tag: '热销',
                    hidden: true
                }, {
                    bookname: '《西游记》',
                    auth: '吴承恩',
                    price: 60,
                    tag: '经典',
                    hidden: true
                }, ],
                newBook: {
                    bookname: '',
                    auth: '',
                    price: '',
                    tag: ''
                }
            },
            methods: {
                add: function () { //方法
                    this.books.push({
                        bookname: this.newBook.bookname,
                        auth: this.newBook.auth,
                        price: this.newBook.price,
                        tag: this.newBook.tag,
                        hidden: true
                    })
                },
                del: function (index) {
                    this.books[index].hidden = false
                }
            }
        })
    </script>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值