From fc10d75c6fd9168f4a36d35a42ac093fef538368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E6=99=93=E8=8C=B9?= <1935832701@qq.com> Date: Wed, 8 Nov 2023 10:01:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=A7=86=E9=A2=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/pagesB/solution/solution.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 api/pagesB/solution/solution.js diff --git a/api/pagesB/solution/solution.js b/api/pagesB/solution/solution.js new file mode 100644 index 0000000..4960d98 --- /dev/null +++ b/api/pagesB/solution/solution.js @@ -0,0 +1,19 @@ +import request from "@/api/request.js" +export function getUserSig(userId) { + return request({ + url: '/nurseApplet/consultation/getUserSig/'+userId, + method: 'get', + header: { + region: uni.getStorageSync('region'), + }, + }) +} +export function getRoomId(goodsOrderId) { + return request({ + url: '/nurseApplet/consultation/getRoomId/'+goodsOrderId, + method: 'get', + header: { + region: uni.getStorageSync('region'), + } + }) +} \ No newline at end of file