Vue.js中computed练习

1.编写售卖界面

1.1代码编写

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>computed计算属性练习</title>

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<style type="text/css">
.container {
display: flex;
flex-direction: column;
width: 90%;
margin: 0 auto;
}

        .item {
            display: flex;
            border: 1px solid #eee;
            border-radius: 10px;
            width: 95%;
            height: 150px;
            margin-bottom: 8px;
            /* 垂直方向居中 */
            align-items: center;
            /* 水平方向居中 */
            /* justify-content: center; */
            padding-left: 10px;
            padding-right: 10px;
        }

        .item-id {
            flex: 1 1 10%;
        }

        .item-name {
            flex: 1 1 20%;
            font-weight: bold;
            font-size: 20px;
        }

        .item-img {
            flex: 1 1 20%
        }

        .item-img img {
            width: 40%;
            height: 40%;
        }

        .item-price {
            flex: 1 1 20%;
            font-weight: bold;
            font-size: 20px;
        }

        .item-count {
            flex: 1 1 30%;
        }

        .goods-count {
            width: 35px;
            height: 20px;
            text-align: center;
        }
        .item-count button{
            width: 30px;
            height: 30px;
            font-weight: bold;
        }
        .setbt{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .btn{
            width: 100px;
            height: 40px;
            background-color: #FF5000;
            border-radius: 10px;
            border: none;
            outline: none;
            color: #FFF;
            font-size: 16px;
        }
    </style>
</head>
<body>
    <div id="app">
        <div class="container">
            <div class="item" v-for="goods in goodsList">
                <div class="item-id">
                    {{goods.id}}
                </div>
                <div class="item-img">
                    <img :src="goods.cover">
                </div>
                <div class="item-name">
                    <a :href="goods.ul">{{goods.name}}</a>
                </div>
                <div class="item-price">
                    {{goods.price}}
                </div>
                <div class="item-count">
                    <button type="button" @click="goods.count-=1" :disabled="goods.count === 0">-</button>
                    <input type="text" class="goods-count" v-model="goods.count" />
                    <button type="button" @click="goods.count+=1">+</button>
                </div>
            </div>
            <hr>
            <div class="setbt">
                <h3>总价:¥{{totalPrice}}</h3>
                <button type="button" class="btn" @click="setbt()">结算</button>
            </div>
            <div class="result" v-if="show">
                你购买了{{setbt}}件商品,需要支付总价为:{{totalPrice}}元
            </div>
        </div>
    </div>
    <script type="text/javascript">
        var app = new Vue({
            el: '#app',
            data: {
                goodsList: [{
                        id: 1,
                        name: 'iPhone 8',
                        cover: 'img/001.jpg',
                        price: 6000,
                        count: 1,
                        "ul":"https://gouwu.sogou.com/compare?query=202144365&cateid=198;199;200&adsUrl=http%3A%2F%2Fitem.jd.com%2F6077638.html&isads=1&bids=&pid=sogou-wsse-492114f6915a69aa-0000&host=sogou.com",
                    },
                    {
                        id: 2,
                        name: 'iPhone 6',
                        cover: 'img/002.jpg',
                        price: 7000,
                        count: 1,
                        "ul":"https://gouwu.sogou.com/compare?query=159696816&cateid=198;199;200&adsUrl=http%3A%2F%2Fwww.zol.com%2Fdetail%2Fcell_phone%2Fapple%2F28098081.html&isads=1&bids=&pid=sogou-wsse-492114f6915a69aa-0000&host=sogou.com",
                    },
                    {
                        id: 3,
                        name: 'iPhone X',
                        cover: 'img/003.jpg',
                        price: 8000,
                        count: 1,
                        "ul":"https://gouwu.sogou.com/compare?query=202144330&cateid=198;199;200&adsUrl=http%3A%2F%2Fitem.jd.com%2F6072692.html&isads=1&bids=&pid=sogou-wsse-492114f6915a69aa-0000&host=sogou.com",
                    }
                ],
                show: false
            },
            methods: {},
            computed: {
                totalPrice: function() {
                    var totalPrice = 0;
                    var len = this.goodsList.length;
                    for (var i = 0; i < len; i++) {
                        totalPrice += this.goodsList[i].price * this.goodsList[i].count;
                    }
                    return totalPrice;
                },
                setbt: function() {
                    this.show = true;
                    var totalCount = 0;
                    var len = this.goodsList.length;
                    for (var i = 0; i < len; i++) {
                        totalCount += this.goodsList[i].count;
                    }
                    return totalCount;
                }
            }
        })
    </script>
</body>

</html>

1.2结果效果图

image.png

1.3使其在手机上扫码运行

1.3.1使用计算机cmd命令输入ipconfig,出现以下界面,复制其中IPv4地址

image.png

1.3.2将代码运行到浏览器,并将复制的地址覆盖下图中的红框部分,然后将最后覆盖后的整体链接复制下来
image.png

1.3.3将复制好的整体链接放入HBuilder中的web浏览器中,敲回车,然后点击红色圈类的二维码,用手机浏览器扫码获取

image.png

1.3.4最后手机成功图片

image.png

2.练习-搜索页面的实现

2.1代码编写

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Vue.js computed练习-搜索页面的实现</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<style type="text/css">
.container {
width: 90%;
margin: 0 auto;
}

        .input-box {
            width: 50%;
            height: 25px;
            margin-bottom: 10px;
        }

        .item {
            display: flex;
            height: 100px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .item-title {
            flex: 1 1 80%;
        }

        .item-thumbnail {
            flex: 1 1 20%
        }

        .item-thumbnail img {
            width: 100%;
            height: 100%;
        }
    </style>
</head>
<body>
    <div id="app">
        <div class="container">
            <input type="text" v-model="searchString" placeholder="请输入" class="input-box" />
            <div class="item" v-for="article in filteredArticles">
                <a :href="article.url" class="item-title">
                    {{article.title}}
                </a>
                <div class="item-thumbnail">
                    <a :href="article.url" class="item-title"><img :src="article.image"></a>
                </div>
            </div>
        </div>
    </div>
    <script type="text/javascript">
        var app = new Vue({
            el: '#app',
            data: {
                searchString: "",
                // 数据模型
                articles: [{
                        "title": "堪称神器的3款在线工具,你一定用得上!",
                        "url": "https://www.jianshu.com/p/e83e7999346b",
                        "image": "https://upload-images.jianshu.io/upload_images/11438996-56b25f32c9307b4b?imageMogr2/auto-orient/strip%7CimageView2/2/w/640/format/webp",
                    },
                    {
                        "title": "经典面试题:从 URL 输入到页面展现到底发生什么?",
                        "url": "https://www.jianshu.com/p/45ba3e0d0c7e",
                        "image": "https://upload-images.jianshu.io/upload_images/3973862-d90954249a6f6ccd.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1000/format/webp",
                    },
                    {
                        "title": "如何免翻墙使用谷歌搜索和Chrome应用商店",
                        "url": "https://www.jianshu.com/p/484f8e6c88f6",
                        "image": "https://upload-images.jianshu.io/upload_images/858154-015a4b083685a3d1.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/800/format/webp",
                    },
                    {
                        "title": "四款前所未有好用的黑科技APP,绝对的良心实用,赶紧告诉家人",
                        "url": "https://www.jianshu.com/p/2aec84d269fe",
                        "image": "https://upload-images.jianshu.io/upload_images/16042993-168b2cb17fd7ec0c?imageMogr2/auto-orient/strip%7CimageView2/2/w/640/format/webp",
                    },
                    {
                        "title": "坚持学英语的方法有哪些",
                        "url": "https://www.jianshu.com/p/0a6a61b0933c",
                        "image": "https://upload-images.jianshu.io/upload_images/3525704-c7293758fc59e56b.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/960/format/webp",
                    }
                ]
            },
            computed: {
                // 计算函数,匹配搜索
                filteredArticles: function() {
                    var articles_array = this.articles,
                        searchString = this.searchString;
                    //搜索关键词为空,则返回原始数据集
                    if (!searchString) {
                        return articles_array;
                    }
                    //搜索关键词去除无用空格,转换为小写
                    searchString = searchString.trim().toLowerCase();
                    //过滤数组中每个元素,如果
                    articles_array = articles_array.filter(function(item) {
                        if (item.title.toLowerCase().indexOf(searchString) !== -1) {
                            return item;
                        }
                    })
                    // 返回转化后的数组
                    return articles_array;;
                }
            }
        })
    </script
</body>

</html>

2.2页面效果

image.png

2.3重复1中步骤,即可实现在手机端显示运行

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

推荐阅读更多精彩内容

  • 第一部分 HTML&CSS整理答案 1. 什么是HTML5? 答:HTML5是最新的HTML标准。 注意:讲述HT...
    kismetajun阅读 27,456评论 1 45
  • 前端开发面试题 <a name='preface'>前言</a> 只看问题点这里 看全部问题和答案点这里 本文由我...
    自you是敏感词阅读 757评论 0 3
  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,744评论 1 92
  • 前端开发知识点 HTML&CSS对Web标准的理解、浏览器内核差异、兼容性、hack、CSS基本功:布局、盒子模型...
    Hebborn_hb阅读 843评论 0 1
  • 查询全部字段,按某个字段排序 查询指定字段,按某个字段排序
    Jlan阅读 520评论 0 0