From c2fd4c88ba64b4787e436efc9eb6618473d442fb Mon Sep 17 00:00:00 2001 From: chenlong Date: Fri, 8 Sep 2023 15:30:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/chat.js | 17 ++ api/order.js | 20 ++ api/pet.js | 15 ++ pages/ChatDetail/index.vue | 174 +++++++++++++----- pages/FeedLog/index.vue | 11 +- pages/Index/components/ChatPage/index.vue | 22 +-- pages/Index/components/OrderPage/index.vue | 18 ++ .../dev/mp-weixin/pages/ChatDetail/index.js | 111 ++++++++++- .../dev/mp-weixin/pages/ChatDetail/index.wxml | 2 +- .../pages/Index/components/ChatPage/Index.js | 24 +-- .../pages/Index/components/OrderPage/Index.js | 19 +- utils/request.js | 5 + 12 files changed, 332 insertions(+), 106 deletions(-) diff --git a/api/chat.js b/api/chat.js index 9d9ab2f..d4b8355 100644 --- a/api/chat.js +++ b/api/chat.js @@ -16,4 +16,21 @@ export function chatList(page, is_worker){ is_worker: is_worker } }) +} + +/** + * 获取聊天token + * @param order_service_id 订单ID + * @param user_sign 用户类型:1 用户, 2 服务人员 + * @returns {Promise | Promise} + */ +export function getToken(order_service_id, user_sign){ + return request({ + url:'/user/chat-token', + method:"post", + data:{ + order_service_id:order_service_id, + type:user_sign + } + }) } \ No newline at end of file diff --git a/api/order.js b/api/order.js index d06008f..8267b44 100644 --- a/api/order.js +++ b/api/order.js @@ -15,4 +15,24 @@ export function cardOrder(card_id) card_id } }) +} + +/** + * 订单列表 + * @param data + * @returns {Promise} + */ +export function getOrderList(data = { + "page": 1, + "limit": 10, + "is_worker": 0, + "status": 0, + "start_time": "", + "end_time": "" +}){ + return request({ + url:"pet/order-list", + method: 'post', + data:data + }) } \ No newline at end of file diff --git a/api/pet.js b/api/pet.js index a34520f..537ae03 100644 --- a/api/pet.js +++ b/api/pet.js @@ -30,4 +30,19 @@ export function getDetail(id){ id } }) +} + +/** + * 喂养档案 + * @param pet_id + * @returns {Promise} + */ +export function feedLog(pet_id){ + return request({ + url:'pet/feed-info', + method:'post', + data:{ + pet_id + } + }) } \ No newline at end of file diff --git a/pages/ChatDetail/index.vue b/pages/ChatDetail/index.vue index f478f47..d590f86 100644 --- a/pages/ChatDetail/index.vue +++ b/pages/ChatDetail/index.vue @@ -6,66 +6,58 @@ - - + + - - + + - 2023/06/16 13:24 - 是按您预约时间上门服务吗 + {{ item.create_time }} + {{ item.info }} - - - - - - - - 2023/06/16 13:24 - 是的,您按预约时间上门就可以了 - - - - - - - - - - - - - 2023/06/16 13:24 - 好的,您家狗狗脾气如何呀 + + + + + + + + + + + + + - - - - 2023/06/16 13:24 - 狗狗脾气很好,不用担心 - - - - - - + + + + + + + + + + + - - - + + + + + @@ -80,10 +72,12 @@