Browse Source

修改k线报错

master
liaoxinyu 1 year ago
parent
commit
b103fd1c0e
  1. 2
      static/chart_main/sevencoin.js

2
static/chart_main/sevencoin.js

@ -260,7 +260,7 @@ $(function () {
const yy = `${date.getFullYear()}`.substr(2); const yy = `${date.getFullYear()}`.substr(2);
const MM = `0${date.getMonth() + 1}`.slice(-2); const MM = `0${date.getMonth() + 1}`.slice(-2);
const dd = `0${date.getDate()}`.slice(-2); const dd = `0${date.getDate()}`.slice(-2);
const HH = `0${getHours}`.slice(-2); const HH = `0${date.getHours()}`.slice(-2);
const mm = `0${date.getMinutes()}`.slice(-2); const mm = `0${date.getMinutes()}`.slice(-2);

Loading…
Cancel
Save