vue.js 1.0中用v-for遍历出的li中的@click事件在移动端无效
在vue.js使用v-for遍历出的li中的@click事件在移动端无效,在网页端可以执行,代码如下
<template>
<div class="rating-section" ref="ratingSection">
<div>
<div class="comprehensive">
<div class="score">
<div class="mark">{{seller.score}}</div>
<div class="text">综合评分</div>
<div class="compare">高于周边商家{{seller.rankRate}}%</div>
</div>
<div class="service">
<div class="service-item">
<span class="lable-text">服务态度</span>
<div class="star-container">
<star :size="12" :score="seller.serviceScore"></star>
</div>
<span class="inline-score">{{seller.serviceScore}}</span>
</div>
<div class="service-item">
<span class="lable-text">菜品评价</span>
<div class="star-container">
<star :size="12" :score="seller.foodScore"></star>
</div>
<span class="inline-score">{{seller.foodScore}}</span>
</div>
<div class="service-item">
<span class="lable-text">送达时间</span>
<span class="delivery">{{seller.deliveryTime}}分钟</span>
</div>
</div>
</div>
<div class="rating-container">
<div class="setter">
<rating-select :options="options"></rating-select>
</div>
<div class="rating-setting" @click="onlyContentClick">
<span class="icon-check_circle" :class="{'highlight':onlyContent}"></span>
<span class="text">只看有内容的评价</span>
</div>
<div class="rating-list">
<ul>
<li class="item-rating" v-for="item in ratings">
<div class="avart">
<img :src="item.avatar">
</div>
<div class="content">
<div class="username">{{item.username}}</div>
<div class="user-score">
<div class="score">
<star :size="12" :score="item.score"></star>
</div>
<span v-show="item.deliveryTime>0">{{item.deliveryTime}}分钟送达</span>
</div>
<div class="text">{{item.text}}</div>
<div class="thumbs-up">
<span class="split" :class="[{'icon-thumb_down':item.rateType===0},{'icon-thumb_up':item.rateType===1}]"></span>
<span class="thumb-item split" v-for="r in item.recommend">{{r}}</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</template> <script>
import BScroll from 'better-scroll';
import RatingSelect from '../ratingSelect/ratingSelect.vue';
import star from '../star/star.vue';
const ERROR_OK = 0;
export default{
data () {
return {
ratings: [],
onlyContent: false,
options: [
{
text: '全部',
count: 57,
type: 'positive'
}, {
text: '满意',
count: 47,
type: 'positive'
}, {
text: '不满意',
count: 10,
type: 'negative'
}]
};
},
created () {
this.loadData();
},
props: {
seller: {
type: Object,
default () {
return {};
}
}
},
components: {star, RatingSelect},
methods: {
onlyContentClick () {
this.onlyContent = !this.onlyContent;
},
loadData () {
this.$http.get('/getRatings').then(res => {
if (res.body.code === ERROR_OK) {
this.ratings = res.body.result;
this.$nextTick(() => {
if (!this.ratingScroll) {
this.initScroll();
} else {
this.ratingScroll.refresh();
}
});
}
});
},
initScroll () {
this.ratingScroll = new BScroll(this.$refs.ratingSection, {
click: true //better-scroll 默认会阻止浏览器的原生 click 事件。当设置为 true,better-scroll 会派发一个 click 事件
});
}
}
};
</script> <style scoped lang="stylus" rel="stylesheet/stylus">
.rating-section
position absolute;
top 176px;
bottom 0px;
overflow hidden;
width 100%;
font-size 0;
background-color rgb(243, 245, 247);
.comprehensive
display flex;
padding 18px 0;
background-color #FFF;
border-bottom 1px solid rgba(7, 17, 27, .1);
.score
padding 0px 16px;
border-right 1px solid rgba(7, 17, 27, .1);
text-align center;
.mark
margin-bottom 6px;
line-height 28px;
font-size 24px;
color rgb(255, 153, 0);
.text
margin-bottom 8px;
line-height 12px;
font-size 12px;
color rgb(7, 17, 27);
.compare
margin-bottom 6px;
line-height 10px;
font-size 10px;
color rgba(7, 17, 27, .6);
.service
flex 1;
padding-left 16px;
.service-item
margin-bottom 8px;
line-height 18px;
font-size 12px;
.lable-text
color rgb(7, 17, 27);
.inline-score
color rgb(255, 153, 0);
.delivery
color rgb(147, 153, 159);
.star-container
display inline-block;
&:last-child
margin-bottom 0;
.rating-container
margin-top 18px;
background-color #fff;
border-top 1px solid rgba(7, 17, 27, .1);
.setter
padding 0 18px;
border-bottom 1px solid rgba(7, 17, 27, .1);
.rating-setting
padding 12px 18px;
font-size 0;
color rgb(147, 153, 159);
.icon-check_circle
margin-right 4px;
font-size 24px;
&.highlight
color #00c850;
.text
font-size 12px;
line-height 24px;
vertical-align top;
.rating-list
padding 18px 18px 0px 18px;
border-top 1px solid rgba(7, 17, 27, .1);
.item-rating
display flex;
padding 18px 0;
font-size 12px;
border-bottom 1px solid rgba(7, 17, 27, .1);
&:first-child
padding-top 0;
.avart
margin-right 12px;
img
width 28px;
height 28px;
border-radius 50%;
.content
font-size 10px;
line-height 12px;
.username
color rgb(7, 17, 27);
.user-score
color rgb(147, 153, 159);
.score
display inline-block;
.text
margin-bottom 7px;
font-size 12px;
line-height 18px;
color rgb(7, 17, 27);
.thumbs-up
.split
margin-right 8px;
&:last-child
margin-right 0;
.icon-thumb_up
color #00a0dc;
.icon-thumb_down
color rgb(183, 187, 191);
.thumb-item
display inline-block;
padding 0px 6px;
margin-bottom 4px;
line-height 16px;
font-size 9px;
color rgb(147, 153, 159);
border-radius 2px;
background-color rgb(255, 255, 240, .1);
border 1px solid rgba(7, 17, 27, .1);
</style>
应该是你使用了better-scroll的原因,默认它会阻止touch事件。所以在配置中需要加上click: true
具体的配置还可以查看https://github.com/ustbhuangyi/better-scroll
vue.js 1.0中用v-for遍历出的li中的@click事件在移动端无效的更多相关文章
- v-for遍历出的元素上添加click事件,获取对应元素上的属性id值
<span v-for="(n,nav) in floorList" data-id="{{nav.itemId}}" v-on:click=" ...
- 还学的动吗? 盘点下Vue.js 3.0.0 那些让人激动的功能
转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具.解决方案和服务,赋能开发者. 原文出处:https://blog.bitsrc.io/vuejs-3-0-0-beta-features- ...
- 窥探Vue.js 2.0 - Virtual DOM到底是个什么鬼?
引言 你可能听说在Vue.js 2.0已经发布,并且在其中新添加如了一些新功能.其中一个功能就是"Virtual DOM". Virtual DOM是什么 在之前,React和Em ...
- 窥探Vue.js 2.0
title: 窥探Vue.js2.0 date: 2016-09-27 10:22:34 tags: vue category: 技术总结 --- 窥探Vue.js2.0 令人兴奋的Vue.js 2. ...
- Vue.js 2.0 参考手册.CHM下载
下载地址 Vue.js 2.0 参考手册.CHM下载链接: http://pan.baidu.com/s/1kVbhd4b 密码: wxfh
- Vue.js 2.0版
Vue.js 2.0版升级,更改了好多方法或指令 new Vue({ el:'#demo', data:{ msg:"vue2.0" } }) v-model lazy numbe ...
- Vue.js 2.0 和 React、Augular
Vue.js 2.0 和 React.Augular 引言 这个页面无疑是最难编写的,但也是非常重要的.或许你遇到了一些问题并且先前用其他的框架解决了.来这里的目的是看看Vue是否有更好的解决方案.那 ...
- 基于Vue.js 2.0 + Vuex打造微信项目
一.项目简介 基于Vue + Vuex + Vue-router + Webpack 2.0打造微信界面,实现了微信聊天.搜索.点赞.通讯录(快速导航).个人中心.模拟对话.朋友圈.设置等功能. 二. ...
- vue.js 2.0 官方文档学习笔记 —— 01. vue 介绍
这是我的vue.js 2.0的学习笔记,采取了将官方文档中的代码集中到一个文件的形式.目的是保存下来,方便自己查阅. !官方文档:https://cn.vuejs.org/v2/guide/ 01. ...
随机推荐
- 我的Android进阶之旅------>解决Android Studio全局搜索搜不到结果的问题
1.问题描述 今天使用Android Studio时,想通过使用快捷键Ctrl+Shift+F来进行全局搜索指定字符串,如下图所示:想搜索字符串"码农偷懒了", 打开string. ...
- Python游戏引擎开发(五):Sprite精灵类和鼠标事件
本次来实现Sprite类和鼠标事件. 说起这个Sprite啊,涉及过2D游戏研究领域的看官应该都听说过它. 它中文原意是"精灵",只是在不同人的眼中,它所表示的意义不同. 比方说在 ...
- Python-selenium 下拉框定位
1.通过select 进行定位下拉框 首先selenium 很人性化的给提供了一个Select的模块,供处理下来菜单,首先我们需要导入Select,通过from selenium.webdriver. ...
- 简明python教程七----面向对象的编程
根据操作数据的函数或语句块来设计程序的,被称为面向过程的编程. 把数据和功能结合起来,用称为对象的东西包裹起来的组织程序的方法,称为面向对象的编程理念. 类和对象是面向对象编程的两个主要方面.类创建一 ...
- python数据类型及其操作
一.数字 常用类型:int,float age = 10 # int型 salary = 3000.5 # float型 进制: 二进制: 11 = 1*21 + 1*20 = 3 八进制: 11 ...
- JavaScript 函数,math对象,Date对象 序列化 总结
函数 函数定义 // 普通函数定义 function f1() { console.log("Hello world!"); } // 带参数的函数 function f2(a, ...
- js, 树状菜单隐藏显示
js写的不是很严谨~~~嘿嘿 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"& ...
- PAT 天梯赛 L1-047. 装睡 【水】
题目链接 https://www.patest.cn/contests/gplt/L1-047 AC代码 #include <iostream> #include <cstdio&g ...
- redis 笔记03 RDB 持久化、AOF持久化、事件、客户端
RDB 持久化 1. RDB文件用于保存和还原Redis服务器所有数据库中的所有键值对数据. 2. SAVE命令由服务器进程直接执行保存操作,所以该命令会阻塞服务器. 3. BGSAVE由子进程执行保 ...
- logback logback.xml 常用配置详解(转)
本文转自:http://my.oschina.net/looly/blog/298675 推荐参考:http://blog.csdn.net/haidage/article/details/67945 ...