citychange.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <!-- 选择城市 -->
  3. <view class="page-main">
  4. <liu-indexed-list :dataList="dataList" @click="click"></liu-indexed-list>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. dataList: [{
  12. id: '1',
  13. name: '刘**',
  14. phone: '181****5576',
  15. img: 'https://cdn.pixabay.com/photo/2022/03/31/14/53/camp-7103189_1280.png'
  16. }, {
  17. id: '2',
  18. name: '税**',
  19. phone: '181****5576',
  20. img: 'https://cdn.pixabay.com/photo/2021/07/22/11/25/rabbit-6485072_1280.jpg'
  21. }, {
  22. id: '3',
  23. name: '柴**',
  24. phone: '181****5576',
  25. img: 'https://cdn.pixabay.com/photo/2020/05/19/13/35/cartoon-5190860_1280.jpg'
  26. }, {
  27. id: '4',
  28. name: '王**',
  29. phone: '181****5576',
  30. img: 'https://cdn.pixabay.com/photo/2020/05/19/13/32/cartoon-5190837_1280.jpg'
  31. }, {
  32. id: '5',
  33. name: '马**',
  34. phone: '181****5576',
  35. img: 'https://cdn.pixabay.com/photo/2023/03/07/12/45/child-7835677_1280.jpg'
  36. }, {
  37. id: '6',
  38. name: '韩**',
  39. phone: '181****5576',
  40. img: 'https://cdn.pixabay.com/photo/2022/11/29/19/05/boho-7625140_1280.jpg'
  41. }, {
  42. id: '7',
  43. name: '张**',
  44. phone: '181****5576',
  45. img: 'https://cdn.pixabay.com/photo/2020/05/19/13/32/cartoon-5190837_1280.jpg'
  46. }, {
  47. id: '8',
  48. name: '王**',
  49. phone: '181****5576',
  50. img: 'https://cdn.pixabay.com/photo/2020/05/19/13/35/cartoon-5190860_1280.jpg'
  51. }, {
  52. id: '9',
  53. name: '张**',
  54. phone: '18198045576',
  55. img: 'https://cdn.pixabay.com/photo/2021/07/22/11/25/rabbit-6485072_1280.jpg'
  56. }, {
  57. id: '10',
  58. name: '李**',
  59. phone: '181****5576',
  60. img: 'https://cdn.pixabay.com/photo/2022/03/31/14/53/camp-7103189_1280.png'
  61. }]
  62. };
  63. },
  64. methods: {
  65. //点击列表回调事件
  66. click(e) {
  67. console.log('点击列表回调:', e)
  68. }
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. </style>