Commit 88054fe9 authored by youjie's avatar youjie

no message

parent 65bc0bb1
...@@ -1252,8 +1252,13 @@ ...@@ -1252,8 +1252,13 @@
data() { data() {
return { return {
ExamineThePriceMsg:{ ExamineThePriceMsg:{
Q_IsCollect: '2',//收款状态
DepartSTime: '', //出发时间
DepartETime: '',
EnterId: 0,//销售
RB_Branch_Id: '-1',//公司
OrderId:"", OrderId:"",
OrderState:"1", TicketStatus:"1",
OrderType:"0", OrderType:"0",
pageIndex:1, pageIndex:1,
pageSize:5, pageSize:5,
...@@ -1929,6 +1934,13 @@ ...@@ -1929,6 +1934,13 @@
} }
}, },
created() { created() {
let DateTime = new Date();
let Year = DateTime.getFullYear()
let Month = DateTime.getMonth()
let Months = Month>9?Month:'0'+Month
let day = new Date(Year, Month, 0).getDate()
let DepartETime = Year+'-'+Months+'-'+day
this.ExamineThePriceMsg.DepartETime = DepartETime
if (!localStorage.getItem("tsNumber") || localStorage.getItem("tsNumber") != this.tsNumber) { if (!localStorage.getItem("tsNumber") || localStorage.getItem("tsNumber") != this.tsNumber) {
this.tsState = true; this.tsState = true;
} }
...@@ -1986,12 +1998,6 @@ ...@@ -1986,12 +1998,6 @@
}, },
// 获取改价提醒的数据 // 获取改价提醒的数据
GetChangeThePrice(type){ GetChangeThePrice(type){
let DateTime = new Date();
let Year = DateTime.getFullYear()
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 = { let msg = {
pageIndex:1, pageIndex:1,
pagesize:5, pagesize:5,
...@@ -2003,7 +2009,7 @@ ...@@ -2003,7 +2009,7 @@
FinishsTime:"", FinishsTime:"",
FinishETime:"", FinishETime:"",
DepartSTime:"", DepartSTime:"",
DepartETime:DepartETime, DepartETime: this.ExamineThePriceMsg.DepartETime,
TCNUM:"", TCNUM:"",
ProductName: "", ProductName: "",
CustomerWame:"", CustomerWame:"",
......
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