xiaokuaisong-xiaochengxu/uniapp04/pages/connection/connection.vue
2024-10-18 15:53:00 +08:00

23 lines
401 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!-- 通讯录页面 -->
<uni-indexed-list :options="list" :show-select="true" @click="bindClick" />
</template>
<script>
import airport from './airport.js'
export default {
components: {},
data() {
return {
list: airport.list
}
},
methods: {
bindClick(e) {
console.log('点击item返回数据' + JSON.stringify(e))
}
},
}
</script>
<style></style>