修复订单状态字段

This commit is contained in:
TOP糯米 2023-02-25 15:19:28 +08:00
parent de3547c79b
commit d09713aca8
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ export default {
},
toDetail() {
let type = "detail";
if (this.order.status == this.$models.order.state.NO_SELECT_WORKER) {
if (this.order.state == this.$models.order.state.NO_SELECT_WORKER) {
type = "worker";
}
this.$utils.toPage("/pages/order/detail?type=" + type + "&id=" + this.order.id);