|
@@ -1101,6 +1101,7 @@
|
|
|
//获取全部车辆
|
|
|
getVehicles()
|
|
|
.then(res => {
|
|
|
+ // console.log(res, '车辆信息')
|
|
|
let vehiclesData = JSON.parse(JSON.stringify(res.vehicles));
|
|
|
this.vehiclesDatas = vehiclesData;
|
|
|
this.carsinfordata = [];
|
|
@@ -1154,10 +1155,11 @@
|
|
|
Getorder() {
|
|
|
let json = {
|
|
|
page:this.pageSize,
|
|
|
- filter_by_state:this.filter_by_state
|
|
|
+ filter_by_state:5
|
|
|
}
|
|
|
Getorders(json)
|
|
|
.then(res => {
|
|
|
+ console.log(res,'red')
|
|
|
let orderData = JSON.parse(JSON.stringify(res.orders));
|
|
|
this.tableData = [];
|
|
|
this.pageCount = res.total;
|
|
@@ -1206,7 +1208,6 @@
|
|
|
} else {
|
|
|
item.Status = "未知 ";
|
|
|
}
|
|
|
-
|
|
|
if (orderData[index].order_type == "NORMAL") {
|
|
|
item.Type = "工作任务";
|
|
|
} else if (orderData[index].order_type == "CHARGE") {
|