Commit 9faa1574 authored by 李志鸣's avatar 李志鸣

fea(api文件): 更新api文件

parent b1fba7db
...@@ -584,6 +584,20 @@ ...@@ -584,6 +584,20 @@
"method": "get" "method": "get"
} }
}, },
"area-controller": {
"realTime-get": {
"url": "/area/areaInfo/realTime",
"method": "get"
},
"statistics-get": {
"url": "/area/bus/statistics",
"method": "get"
},
"busNo-get": {
"url": "/area/detail/busNo",
"method": "get"
}
},
"auth-controller": { "auth-controller": {
"check-post": { "check-post": {
"url": "/auth/check", "url": "/auth/check",
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
size="mini" size="mini"
style="width: 150px" style="width: 150px"
placeholder="请输入订单号" placeholder="请输入订单号"
v-model="busNo"> v-model="orderNo">
</el-input> </el-input>
</div> </div>
<div class="work-order-number"> <div class="work-order-number">
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
size="mini" size="mini"
style="width: 150px" style="width: 150px"
placeholder="请输入工单号" placeholder="请输入工单号"
v-model="orderNo"> v-model="workOrderNo">
</el-input> </el-input>
</div> </div>
<el-button <el-button
...@@ -375,10 +375,12 @@ ...@@ -375,10 +375,12 @@
export default { export default {
data () { data () {
return { return {
// 筛选条件车身 // 筛选条件工单
busNo: '', workOrderNo: '',
// 筛选条件订单号 // 筛选条件订单号
orderNo: '' orderNo: '',
// 涂装车间实时信息
paintingWorkshopRealTimeData: []
} }
}, },
methods: { methods: {
...@@ -423,6 +425,12 @@ ...@@ -423,6 +425,12 @@
this.$router.push({ this.$router.push({
path: '/monitor/monitorFinishedCar' path: '/monitor/monitorFinishedCar'
}) })
},
// 获取涂装车间实时信息
getPaintingWorkshopRealTimeData () {
this.$fetch('area-controller/realTime-get', {}).then((response) => {
console.log(response)
})
} }
} }
} }
......
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