|
|
@@ -57,7 +57,8 @@ export default {
|
|
|
this.cdata.year = dateBase.getFullYear();
|
|
|
this.cdata.nowdate = (dateBase.getMonth() + 1 < 10 ? "0" + (dateBase.getMonth() + 1) : dateBase.getMonth() + 1)
|
|
|
+"/"
|
|
|
- +(dateBase.getDay() + 1 < 10 ? "0" + (dateBase.getDay() + 1) : dateBase.getDay() + 1);
|
|
|
+ +(dateBase.getDate() < 10 ? "0" + (dateBase.getDate()) : dateBase.getDate() );
|
|
|
+ console.log(this.cdata.nowdate);
|
|
|
//良率直通图
|
|
|
await this.$http.get("kanban/datalist.action?caller=DAYTURNOUT&_noc=1&page=1&pageSize=100&condition=1=1")
|
|
|
.then((result)=>{
|