[input 
type为date的时候选择时间问题.zip](https://github.com/apache/incubator-weex/files/2345012/input.type.date.zip)
文件已经上传,内有出问题机型视频及vue代码和原生修改截图,因为这个问题只有在我公司的一台手机上复现,在 http://dotwe.org/ 
及其他手机上并不能复现

原生出问题代码(此方法不能调用)
`-(void)done:(id)sender
{
    [self hide];
    if (self.delegate && [self.delegate 
respondsToSelector:@selector(fetchDatePickerValue:)]) {
        NSString *value = @"";
        if([_type isEqualToString:@"time"])
        {
            value = [WXUtility timeToString:self.datePicker.date];
        }else if([_type isEqualToString:@"date"])
        {
            value = [WXUtility dateToString:self.datePicker.date];
        }
        [self.delegate fetchDatePickerValue:value];
    }
    
}`

[ Full content available at: 
https://github.com/apache/incubator-weex/issues/1484 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to