diff --git a/src/api/order.js b/src/api/order.js
index 685a7946..c1cfbe7a 100644
--- a/src/api/order.js
+++ b/src/api/order.js
@@ -43,6 +43,15 @@ export function orderReporting(data){
data
})
}
+// 查看报备列表
+export function orderReportingList(data){
+ return request({
+ url:'/supplierAppV2/dispatchApp/order/orderReportingList',
+ method:'POST',
+ contentType:'application/json',
+ data
+ })
+}
// 获取订单结算单信息
export function getOrderSettlement(data){
return request({
diff --git a/src/router/index.js b/src/router/index.js
index 338fb65d..bb13d3f8 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -23,6 +23,14 @@ const routes = [
title: '报备'
}
},
+ {
+ path: "/reportingList",
+ name: 'reportingList',
+ component: () => import('@/views/index/reportingList.vue'),
+ meta: {
+ title: '查看报备'
+ }
+ },
{
path: "/workOrderDetail",
name: 'workOrderDetail',
diff --git a/src/views/index/reportingList.vue b/src/views/index/reportingList.vue
new file mode 100644
index 00000000..4a0a2940
--- /dev/null
+++ b/src/views/index/reportingList.vue
@@ -0,0 +1,13 @@
+
+查看报备
+
+
+
+
+
\ No newline at end of file