{{date}}
当前位置:   article > 正文

uniapp时间日期选择器 - 只选择月份 - 月份选择器picker_uniapp月份选择

uniapp月份选择

效果图

完整代码

  1. <template>
  2. <view>
  3. <picker mode="date" fields="month" :value="date" @change="bindDateChange">
  4. <view class="uni-input">{{date}}</view>
  5. </picker>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. date: this.getCurrentMonth()
  13. }
  14. },
  15. methods: {
  16. bindDateChange: function(e) {
  17. this.date = e.target.value
  18. console.log(this.date)
  19. },
  20. getCurrentMonth () {
  21. const date = new Date()
  22. let year = date.getFullYear()
  23. let month = date.getMonth() + 1
  24. month = month > 9 ? month : '0' + month
  25. return `${year}-${month}`
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>

官方手册

picker | uni-app官网https://uniapp.dcloud.io/component/picker.html#picker

封面

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/306580
推荐阅读
相关标签
  

闽ICP备14008679号