现象、原因:
input组件绑定date类型的字段,默认选择是显示年月日的,有些项目需求想只选择年月
解决方案:在input组件所在w对应同名称css文件中,重写覆盖系统默认样式即可

.x-popPicker[type=date] .x-popPicker-content .x-day{
display: none;
}

.x-popPicker[type=date] .x-popPicker-content .x-year,
.x-popPicker[type=date] .x-popPicker-content .x-month{
    width: 50%;
}

效果对比:

date类型默认显示图
input绑定date类型的字段默认显示图

AA11M9J_L7Q8)B]97(4]{@W
input绑定date类型的字段修改样式后显示图