selectExpress.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <view v-if="show" :class="className">
  3. <view
  4. @click.stop="$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. className: {
  27. typeof: String,
  28. default: "",
  29. },
  30. },
  31. };
  32. </script>
  33. <style lang="scss" scoped>
  34. .select-list {
  35. background-color: #fff;
  36. border-radius: 10rpx;
  37. padding: 14rpx;
  38. position: absolute;
  39. bottom: 200rpx;
  40. right: 70rpx;
  41. z-index: 1000;
  42. width: 300rpx;
  43. height: 220rpx;
  44. overflow-y: auto;
  45. box-shadow: 0 0 4rpx #b6b5b5;
  46. ._label {
  47. font-size: 28rpx;
  48. color: #000;
  49. margin: 20rpx;
  50. text-align: center;
  51. }
  52. }
  53. .sending-name {
  54. background-color: #fff;
  55. border-radius: 10rpx;
  56. padding: 14rpx;
  57. position: absolute;
  58. top: 200rpx;
  59. left: 70rpx;
  60. z-index: 1000;
  61. width: 300rpx;
  62. height: 220rpx;
  63. overflow-y: auto;
  64. box-shadow: 0 0 4rpx #b6b5b5;
  65. ._label {
  66. font-size: 28rpx;
  67. color: #000;
  68. margin: 20rpx;
  69. text-align: center;
  70. }
  71. }
  72. .order-manage {
  73. background-color: #fff;
  74. border-radius: 10rpx;
  75. padding: 14rpx;
  76. position: absolute;
  77. bottom: 100rpx;
  78. right: 70rpx;
  79. z-index: 1000;
  80. width: 300rpx;
  81. height: 220rpx;
  82. overflow-y: auto;
  83. box-shadow: 0 0 4rpx #b6b5b5;
  84. ._label {
  85. font-size: 28rpx;
  86. color: #000;
  87. margin: 20rpx;
  88. text-align: center;
  89. }
  90. }
  91. </style>