Commit 5fc51e6b authored by youjie's avatar youjie

no message

parent 08579859
...@@ -1939,9 +1939,9 @@ ...@@ -1939,9 +1939,9 @@
GetChangeThePrice(){ GetChangeThePrice(){
let DateTime = new Date(); let DateTime = new Date();
let Year = DateTime.getFullYear() let Year = DateTime.getFullYear()
let Month = DateTime.getMonth()+1 let Month = DateTime.getMonth()
let Months = Month-1>9?Month-1:'0'+Month let Months = Month>9?Month:'0'+Month
let day = new Date(Year, (Month-1), 0).getDate() let day = new Date(Year, Month, 0).getDate()
let DepartETime = Year+'-'+Months+'-'+day let DepartETime = Year+'-'+Months+'-'+day
let msg = { let msg = {
pageIndex:1, pageIndex:1,
...@@ -1965,7 +1965,8 @@ ...@@ -1965,7 +1965,8 @@
IsSelectCRM:0, IsSelectCRM:0,
IsMyOrder:"1", IsMyOrder:"1",
OrderType:"0", OrderType:"0",
Q_IsCollect:"2" Q_IsCollect:"2",
TicketStatus:'1',
} }
this.ChangeThePriceData = [] this.ChangeThePriceData = []
this.apipost( this.apipost(
......
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