Commit b6fd8146 authored by 黄奎's avatar 黄奎

页面修改

parent efb15071
......@@ -1104,11 +1104,11 @@
},
//删除航班
DeleteTicket(index) {
if (this.CtObj.ticketList && this.CtObj.ticketList.length > 0) {
var that = this;
if (this.CtObj.ticketList && this.CtObj.ticketList.length > 0) {
that.Confirm("删除航班后将不能恢复?", function () {
if (index > -1) {
this.CtObj.ticketList.splice(index, 1);
that.CtObj.ticketList.splice(index, 1);
}
});
}
......@@ -1132,7 +1132,7 @@
var that = this;
that.Confirm("删除酒店后将不能恢复?", function () {
if (index > -1) {
this.CtObj.hotelList.splice(index, 1);
that.CtObj.hotelList.splice(index, 1);
}
});
}
......
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