Commit 5fc51e6b authored by youjie's avatar youjie

no message

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