<template> <ul class="list"> <li class="item" v-for="item of letters" :key="item" :ref="item" @touchstart.prevent="handleTouchStart" @touchmove="handleTouchMove" @touchend="handleTouchEnd" @click="handleLetterClick" > {{item}} </li> </ul> </template> <script> export default { name: 'CityAlphabet', props: { cities: Object }, computed: { letters () { const letters = [] for (let i in this.cities) { letters.push(i) } return letters } }, data () { return { touchStatus: false, startY: 0, timer: null } }, updated () { this.startY = this.$refs['A'][0].offsetTop }, methods: { handleLetterClick (e) { this.$emit('change', e.target.innerText) }, handleTouchStart () { this.touchStatus = true }, handleTouchMove (e) { if (this.touchStatus) { if (this.timer) { clearTimeout(this.timer) } this.timer = setTimeout(() => { const touchY = e.touches[0].clientY - 79 const index = Math.floor((touchY - this.startY) / 20) if (index >= 0 && index < this.letters.length) { this.$emit('change', this.letters[index]) } }, 8) } }, handleTouchEnd () { this.touchStatus = false } } } </script> <style lang="stylus" scoped> @import '~styles/varibles.styl' .list display: flex flex-direction: column justify-content: center position: absolute top: 1.58rem right: 0 bottom: 0 width: .4rem .item line-height: .4rem text-align: center color: $bgColor </style>解释一下这段代码
时间: 2023-06-16 17:06:06 浏览: 194
牛牛视频答题小程序 <template name="tmpl-15-container">
这段代码是一个 Vue 组件,用于渲染城市列表右侧的字母导航栏。具体解释如下:
- 模板部分:使用一个无序列表(ul)来展示字母导航栏,每个字母作为一个列表项(li)展示,并且使用 v-for 指令来循环遍历 letters 数组,同时使用 :key 和 :ref 指令来标识每个列表项。
- 脚本部分:定义了一个名为 CityAlphabet 的 Vue 组件,其中包含一个 props 属性 cities,用于接收城市列表数据。通过 computed 计算属性 letters 来获取 cities 对象中的所有属性名,即城市的首字母,并返回一个数组。
- 数据部分:使用 data 函数来定义组件的数据状态,包括 touchStatus(用于标识触摸状态)、startY(用于记录滑动开始的 Y 坐标)、timer(用于记录定时器)。
- 生命周期部分:在 updated 钩子函数中,当组件更新后,获取字母导航栏第一个字母所在的位置,即 $refs['A'][0].offsetTop,用于计算滑动时当前字母的索引值。
- 方法部分:定义了三个事件处理函数,分别是 handleLetterClick(处理点击字母的事件)、handleTouchStart(处理触摸开始的事件)、handleTouchMove(处理触摸滑动的事件)以及 handleTouchEnd(处理触摸结束的事件)。在 handleTouchMove 中,通过计算滑动距离和字母导航栏第一个字母所在位置,来获取当前所在的字母索引值,并触发 change 事件向父组件传递该字母信息。
- 样式部分:使用 stylus 预处理器编写样式,设置导航栏的位置、大小、颜色等属性。
阅读全文