Commit 2c3b6321 authored by 黄奎's avatar 黄奎

11

parent 4c1aee32
......@@ -197,7 +197,8 @@
</span>
</li>
<li>
<span><em>{{$t('hotel.order_Number')}}</em>
<span>
<em>{{$t('hotel.order_Number')}}</em>
<el-input v-model='msg.OrderID' :placeholder="$t('pub.pleaseImport')"></el-input>
</span>
</li>
......@@ -596,10 +597,10 @@
RB_Department_Id: 0,
CreateBy: 0,
OrderID: '',
StartTime: '',
EndTime: '',
CStartTime: '',
CEndTime: '',
StartTime: '', //入住时间开始
EndTime: '', //入住时间结束
CStartTime: '', //订单创建时间开始
CEndTime: '', //订单创建时间结束
Source: '4',
HotelName: "", //酒店名称
},
......@@ -1019,6 +1020,14 @@
if (!this.isHaveThirdHotelOrderAuth) {
this.msg.CreateBy = this.currentUserInfo.EmployeeId;
}
var myDate = new Date();
var nowDate =
myDate.getFullYear() +
"-" +
parseInt(myDate.getMonth() + 1) +
"-" +
myDate.getDate();
this.msg.CStartTime = nowDate;
this.getThirdOrderSourceEnumEnumList();
this.getEmployee();
this.getList();
......
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