uniapp时间日期选择器 - 只选择月份 - 月份选择器picker
Posted Rudon滨海渔村
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp时间日期选择器 - 只选择月份 - 月份选择器picker相关的知识,希望对你有一定的参考价值。
效果图
完整代码
<template>
<view>
<picker mode="date" fields="month" :value="date" @change="bindDateChange">
<view class="uni-input">date</view>
</picker>
</view>
</template>
<script>
export default
data()
return
date: this.getCurrentMonth()
,
methods:
bindDateChange: function(e)
this.date = e.target.value
console.log(this.date)
,
getCurrentMonth ()
const date = new Date()
let year = date.getFullYear()
let month = date.getMonth() + 1
month = month > 9 ? month : '0' + month
return `$year-$month`
</script>
<style>
</style>
官方手册
picker | uni-app官网https://uniapp.dcloud.io/component/picker.html#picker
封面
以上是关于uniapp时间日期选择器 - 只选择月份 - 月份选择器picker的主要内容,如果未能解决你的问题,请参考以下文章