seiminPicker.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view class="seiminPicker">
  3. <view class="picker-modal" v-if="showPicker" @click="_close"></view>
  4. <view class="picker-content" :style="{transform: showPicker ? 'translateY(0)' : 'translateY(100%)'}">
  5. <view class="picker-header">
  6. <view class="packer-title" :style="{color:titleColor, fontSize:titleFontSize}" v-html="title"></view>
  7. </view>
  8. <picker-view indicator-style="height: 90rpx;" class="picker-view" :value="pickerValue" @change="changePicker">
  9. <picker-view-column>
  10. <view class="picker-item" :style="{fontSize:itemFontSize}" v-for="(item, index) in pickerList" :key="index">
  11. {{item.label}}
  12. </view>
  13. </picker-view-column>
  14. </picker-view>
  15. <view class="picker-confirm"
  16. :style="{color: confirmColor, fontSize: confirmFontSize, fontWeight:confirmFontWeight}"
  17. @click="__confirmPicker">确定</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. name: 'seiminPicker',
  24. props: {
  25. title: { //标题文字
  26. type: String,
  27. default: ""
  28. },
  29. titleColor: { //标题文字颜色
  30. type: String,
  31. default: ""
  32. },
  33. titleFontSize: { //标题文字大小
  34. type: String,
  35. default: '26rpx'
  36. },
  37. confirmColor: { // 确定按钮颜色
  38. type: String,
  39. default: ''
  40. },
  41. confirmFontSize: { //确定文字大小
  42. type: String,
  43. default: '28rpx'
  44. },
  45. confirmFontWeight: { //确定按钮的字体粗细
  46. type: String,
  47. default: ''
  48. },
  49. itemFontSize: { //选项文字大小
  50. type: String,
  51. default: '28rpx'
  52. },
  53. pickerList: { //数据
  54. type: Array
  55. },
  56. },
  57. data() {
  58. return {
  59. showPicker: false,
  60. pickerValue: [0],
  61. }
  62. },
  63. methods: {
  64. _close() {
  65. this.showPicker = false
  66. },
  67. _open() {
  68. this.showPicker = true
  69. },
  70. //确定
  71. __confirmPicker() {
  72. this.showPicker = false
  73. let checkedObj = this.pickerList[this.pickerValue]
  74. this.$emit('onConfirm', checkedObj)
  75. },
  76. //滑动picker
  77. changePicker(e) {
  78. this.pickerValue = e.detail.value
  79. },
  80. }
  81. }
  82. </script>
  83. <style lang="scss" scoped>
  84. .picker-modal {
  85. position: fixed;
  86. top: 0;
  87. left: 0;
  88. right: 0;
  89. bottom: 0;
  90. background-color: rgba(0, 0, 0, 0.5);
  91. z-index: 99;
  92. }
  93. .picker-content {
  94. position: fixed;
  95. bottom: 0;
  96. left: 0;
  97. right: 0;
  98. z-index: 99;
  99. background-color: #F9FAFB;
  100. transition: all .3s;
  101. }
  102. .picker-header {
  103. @include flex(center, center);
  104. padding: 20rpx;
  105. border-bottom: 1px solid #E5E9ED;
  106. background-color: #fff;
  107. }
  108. .picker-confirm {
  109. margin-top: 10rpx;
  110. border-top: 1px solid #E5E9ED;
  111. height: 90rpx;
  112. @include flex(center, center);
  113. background-color: #fff;
  114. }
  115. .packer-title {
  116. text-align: center;
  117. }
  118. .picker-view {
  119. position: relative;
  120. bottom: 0;
  121. left: 0;
  122. right: 0;
  123. height: 490rpx;
  124. background-color: rgba(255, 255, 255, 1);
  125. }
  126. .uni-picker-view-mask {
  127. border-bottom: 1px solid #E5E9ED;
  128. }
  129. .picker-item {
  130. text-align: center;
  131. line-height: 90rpx;
  132. text-overflow: ellipsis;
  133. }
  134. </style>