|
@@ -318,6 +318,8 @@ func GetXlsxfile(mMap []map[string]interface{}, dataType int, fn string, fields
|
|
|
}
|
|
|
row.AddCell().SetValue(urlArr)
|
|
|
}
|
|
|
+ } else if kk == "bidopentime" || kk == "bidendtime" {
|
|
|
+ row.AddCell().SetValue(time.Unix(qu.Int64All(v[kk]), 0).Format("2006-01-02"))
|
|
|
} else {
|
|
|
row.AddCell().SetValue(v[kk])
|
|
|
}
|
|
@@ -400,6 +402,8 @@ func GetXlsxfile(mMap []map[string]interface{}, dataType int, fn string, fields
|
|
|
}
|
|
|
row.AddCell().SetValue(urlArr)
|
|
|
}
|
|
|
+ } else if kk == "bidopentime" || kk == "bidendtime" {
|
|
|
+ row.AddCell().SetValue(time.Unix(qu.Int64All(v[kk]), 0).Format("2006-01-02"))
|
|
|
} else {
|
|
|
row.AddCell().SetValue(v[kk])
|
|
|
}
|