V3.4版本中移动端时间选择器默认是图1的格式,如何设置可以按照V3.4版本之前的模式图2显示?
如下设置:
在input所在的.w对应的js中引用input
var Input = require(“$UI/system/components/justep/input/input”);
在model的函数定义中添加Input.mobileDatePickerType = ‘mobiscroll’;
var Model = function(){ this.callParent(); Input.mobileDatePickerType = 'mobiscroll'; };
评一波