seiminPicker.vue 3.4 KB

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