select.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <template>
  2. <view class="select-box">
  3. <!-- 下拉选项 -->
  4. <view class="select-current relative" @tap="toggleDropdown">
  5. <text class="current-name">{{ selectedOption.name }}</text>
  6. <image class="image" :src="resource.wow_all_active" />
  7. <!-- <view class="select_line" :class="activeTab == 0 ? 'line' : 'line-none'"></view> -->
  8. </view>
  9. <view class="option-list" v-if="dropdownOpen">
  10. <text
  11. class="option"
  12. v-for="option in options"
  13. :key="option.id"
  14. @tap="selectOption(option)"
  15. >
  16. {{ option.name }}
  17. </text>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import resource from '@/utils/resource'
  23. export default {
  24. props: {
  25. activeTab: {
  26. Type: Number,
  27. default: 0
  28. }
  29. },
  30. data() {
  31. return {
  32. resource,
  33. options: [
  34. { id: 0, name: '全部' },
  35. { id: 1, name: '现货' },
  36. { id: 2, name: '预售' }
  37. ],
  38. selectedOption: { id: 0, name: '全部' },
  39. dropdownOpen: false
  40. }
  41. },
  42. methods: {
  43. toggleDropdown() {
  44. this.dropdownOpen = !this.dropdownOpen
  45. },
  46. selectOption(option) {
  47. this.selectedOption = option
  48. this.dropdownOpen = false
  49. // 触发选项变更事件,将选项的信息传递给父组件
  50. this.$emit('change', option.id)
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss" scoped>
  56. .select-box {
  57. width: 100rpx;
  58. height: 60rpx;
  59. display: inline-block;
  60. }
  61. .select-current {
  62. padding: 10rpx;
  63. vertical-align: baseline;
  64. .image {
  65. position: absolute;
  66. top: 18rpx;
  67. left: 68rpx;
  68. width: 24rpx;
  69. height: 24rpx;
  70. margin-right: 8rpx;
  71. }
  72. .current-name {
  73. position: absolute;
  74. top: 10rpx;
  75. left: 5rpx;
  76. }
  77. .select_line {
  78. position: absolute;
  79. top: 50rpx;
  80. left: 30%;
  81. }
  82. }
  83. .option-list {
  84. position: absolute;
  85. top: 65rpx;
  86. left: 6rpx;
  87. width: 90rpx;
  88. display: flex;
  89. flex-direction: column;
  90. color: #fff;
  91. background-color: $color-theme;
  92. border-radius: 4rpx;
  93. }
  94. .option {
  95. padding: 10px;
  96. cursor: pointer;
  97. }
  98. .line {
  99. width: 35rpx;
  100. height: 5rpx;
  101. margin: 5rpx auto 0;
  102. border-radius: 5rpx;
  103. background: #a76ef4;
  104. }
  105. .line-none {
  106. width: 3rpx;
  107. height: 5rpx;
  108. margin: 5rpx auto 0;
  109. border-radius: 5rpx;
  110. background: #222335;
  111. }
  112. </style>