|
@@ -181,7 +181,10 @@ export default {
|
|
|
var month = date.getMonth() + 1 < 10 ?
|
|
|
'0' + (date.getMonth() + 1) : date.getMonth()+ 1
|
|
|
var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate()
|
|
|
- var nowDate=year+month+day
|
|
|
+ let hh = new Date().getHours();
|
|
|
+ let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes() : new Date().getMinutes();
|
|
|
+ let ss = new Date().getSeconds()<10 ? '0'+new Date().getSeconds() : new Date().getSeconds();
|
|
|
+ var nowDate=year+month+day+hh+mf+ss
|
|
|
|
|
|
this.$http({
|
|
|
url: "/market/mkOnlineChannel/exportLedger",
|