selectExpress.vue 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view v-if="show" class="select-list">
  3. <view
  4. @click="$emit('selected', item)"
  5. class="_label"
  6. v-for="(item, index) in filterList"
  7. :key="index"
  8. >{{ item.name }}
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. name: "selectExpress",
  15. props: {
  16. show: {
  17. typeof: Boolean,
  18. default: false,
  19. },
  20. filterList: {
  21. typeof: Array,
  22. default: () => {
  23. return {};
  24. },
  25. },
  26. },
  27. };
  28. </script>
  29. <style lang="scss" scoped>
  30. .select-list {
  31. background-color: #fff;
  32. border-radius: 10rpx;
  33. padding: 14rpx;
  34. position: absolute;
  35. bottom: 200rpx;
  36. right: 70rpx;
  37. z-index: 1000;
  38. width: 300rpx;
  39. height: 220rpx;
  40. overflow-y: auto;
  41. box-shadow: 0 0 4rpx #b6b5b5;
  42. ._label {
  43. font-size: 28rpx;
  44. color: #000;
  45. margin: 20rpx;
  46. text-align: center;
  47. }
  48. }
  49. </style>