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 @@