From 8cbb6155e5d02f4d84512ba1a15298b1d7b11521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E8=BE=89?= <814457906@qq.com> Date: Thu, 3 Nov 2022 17:26:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/logistics/index.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 api/logistics/index.js diff --git a/api/logistics/index.js b/api/logistics/index.js new file mode 100644 index 0000000..5db2766 --- /dev/null +++ b/api/logistics/index.js @@ -0,0 +1,8 @@ +import request from "../request.js" +// 物流查询接口 +export function queryLogistics(orderNo,expressNo){ + return request({ + url: `/nurseApp/logistics/queryLogisticsInfo?orderNo=${orderNo}&expressNo=${expressNo}`, + method: 'GET' + }) +}