Commit 634682bc authored by zhengke's avatar zhengke

修改

parent 81c6796a
...@@ -186,6 +186,14 @@ ...@@ -186,6 +186,14 @@
if (this.$route.query.OrderId) { if (this.$route.query.OrderId) {
this.msg.OrderId = this.$route.query.OrderId; this.msg.OrderId = this.$route.query.OrderId;
} }
let nowDay = new Date();
var year = nowDay.getFullYear(); //年
var month = nowDay.getMonth() + 1; //月
var day = nowDay.getDate(); //日
var currentDay = year + '-' + month + '-' + day;
this.dateList[0] = currentDay
this.dateList[1] = currentDay
this.getOrderState(); this.getOrderState();
this.getCourseList(); this.getCourseList();
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment