Commit 88054fe9 authored by youjie's avatar youjie

no message

parent 65bc0bb1
......@@ -1252,8 +1252,13 @@
data() {
return {
ExamineThePriceMsg:{
Q_IsCollect: '2',//收款状态
DepartSTime: '', //出发时间
DepartETime: '',
EnterId: 0,//销售
RB_Branch_Id: '-1',//公司
OrderId:"",
OrderState:"1",
TicketStatus:"1",
OrderType:"0",
pageIndex:1,
pageSize:5,
......@@ -1929,6 +1934,13 @@
}
},
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) {
this.tsState = true;
}
......@@ -1986,12 +1998,6 @@
},
// 获取改价提醒的数据
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 = {
pageIndex:1,
pagesize:5,
......@@ -2003,7 +2009,7 @@
FinishsTime:"",
FinishETime:"",
DepartSTime:"",
DepartETime:DepartETime,
DepartETime: this.ExamineThePriceMsg.DepartETime,
TCNUM:"",
ProductName: "",
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