Commit 130d2365 authored by youjie's avatar youjie

no message

parent c13bfd32
...@@ -511,6 +511,14 @@ export default { ...@@ -511,6 +511,14 @@ export default {
created() { created() {
this.initRankRangeList(); this.initRankRangeList();
}, },
watch:{
diyDateRange: {
handler(val, oldVal) {
this.diyDateRange = val
this.setDiyDateRange()
},
},
},
mounted() { mounted() {
this.changeRankTypeHandler(); this.changeRankTypeHandler();
this.GetBriefing(); this.GetBriefing();
......
...@@ -548,6 +548,11 @@ export default { ...@@ -548,6 +548,11 @@ export default {
Id: "7", Id: "7",
show: true, show: true,
}, },
{
Name: "修改日期",
Id: "10",
show: item.OrderType&&item.OrderType.indexOf(1) != -1?true:false,
}
]; ];
}); });
}; };
......
...@@ -511,6 +511,11 @@ export default { ...@@ -511,6 +511,11 @@ export default {
Id: "7", Id: "7",
show: true, show: true,
}, },
{
Name: "修改日期",
Id: "10",
show: item.OrderType&&item.OrderType.indexOf(1) != -1?true:false,
}
]; ];
}); });
}; };
......
...@@ -489,6 +489,15 @@ export default { ...@@ -489,6 +489,15 @@ export default {
if (row.More == "9") { if (row.More == "9") {
this.endOfLoss(row); this.endOfLoss(row);
} }
// 修改日期
if (row.More == "10") {
this.modifiedDate(row);
}
},
// 修改日期
modifiedDate(row){
let $this = this
this.MsgBus.$emit("modifiedDateOrderBoxOpen", $this.ID, row, true);
}, },
// 订单收损完结 // 订单收损完结
endOfLoss(row){ endOfLoss(row){
......
...@@ -644,6 +644,15 @@ ...@@ -644,6 +644,15 @@
if (row.More == "9") { if (row.More == "9") {
this.endOfLoss(row); this.endOfLoss(row);
} }
// 修改日期
if (row.More == "10") {
this.modifiedDate(row);
}
},
// 修改日期
modifiedDate(row){
let $this = this
this.MsgBus.$emit("modifiedDateOrderBoxOpen", $this.ID, row, true);
}, },
// 订单收损完结 // 订单收损完结
endOfLoss(row) { endOfLoss(row) {
...@@ -1115,6 +1124,11 @@ ...@@ -1115,6 +1124,11 @@
Name: "操作日志", Name: "操作日志",
Id: "7", Id: "7",
show: true, show: true,
},
{
Name: "修改日期",
Id: "10",
show: item.OrderType&&item.OrderType.indexOf(1) != -1?true:false,
} }
] ]
}); });
......
...@@ -375,6 +375,12 @@ ...@@ -375,6 +375,12 @@
$this.obj = obj; $this.obj = obj;
$this.dialogTicketOrderVisible = true; $this.dialogTicketOrderVisible = true;
}); });
this.MsgBus.$on("modifiedDateOrderBoxOpen", function (GuestId, obj) {
$this.dialogTicketOrderVisibleName = "修改日期";
$this.GuestId = GuestId;
$this.obj = obj;
$this.dialogTicketOrderVisible = true;
});
this.MsgBus.$on("closeTicketOrderDialogBox", function () { this.MsgBus.$on("closeTicketOrderDialogBox", function () {
$this.dialogTicketOrderVisible = false; $this.dialogTicketOrderVisible = false;
this.$emit("getList"); this.$emit("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