如果后端返回的时间格式最好不要用formatTime这个方法来格式化时间,因为ios系统不支持2018-03-09这样格式的时间导致出现的这个问题,ios只识别2018/03/09这样的格式
注意两点即可:
1.苹果只认识 yyyy/mmmm/dddd/ 这类格式的日期
2.如果输出后还要进行处理日期对比,苹果默认会带中文字,如:年月日,需要转成上面1当中的日期格式在转时间戳进行比较
GetDateDiff(checked_in) {
//将xxxx-xx-xx的时间格式,转换为 xxxx/xx/xx的格式
checked_in = checked_in.replace(/\-/g, "/");
return checked_in
}