From 59246843573da0e27b71dedaf669a9989ec61b67 Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Fri, 13 Oct 2023 14:24:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9F=A5=E7=9C=8B=E6=8A=A5?= =?UTF-8?q?=E5=A4=87=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/order.js | 9 +++++++++ src/router/index.js | 8 ++++++++ src/views/index/reportingList.vue | 13 +++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 src/views/index/reportingList.vue 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