From c76edb2a8936a68cfaedde9382370b3a31683c71 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Sun, 27 Apr 2025 21:46:16 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BC=98=E5=8C=96=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=BB=93=E6=9E=84=E5=B9=B6=E4=BF=AE=E5=A4=8D=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=8A=9F=E8=83=BD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除提现页面的重复代码,统一使用`binding/withdrawal/index.vue` - 将`onMounted`替换为`onShow`以确保页面显示时获取最新数据 - 修复`getTransactionDetailsList`的URL参数问题 - 更新开发环境API地址 - 优化提现表单处理逻辑 --- api/home.js | 2 +- .../authentication/connectAddress/detail.vue | 9 +- otherPages/binding/partner/index.vue | 33 +- otherPages/binding/withdrawal/index.vue | 46 +- otherPages/myOrdersManage/clock/index.vue | 4 +- otherPages/myOrdersManage/withdrawal/index.vue | 158 - otherPages/orderTakingManage/detail/index.vue | 6 +- otherPages/workbenchManage/myUser/index.vue | 5 +- otherPages/workbenchManage/myWallet/index.vue | 3 +- pages.json | 7 +- pages/myOrdersManage/dateOrder.json | 3787 ++++---------------- utils/getUrl.js | 3 +- 12 files changed, 738 insertions(+), 3325 deletions(-) delete mode 100644 otherPages/myOrdersManage/withdrawal/index.vue diff --git a/api/home.js b/api/home.js index a740edb..b669a5f 100644 --- a/api/home.js +++ b/api/home.js @@ -91,7 +91,7 @@ export const hhrMyUserList = (data) => { // 收益明细 export const getTransactionDetailsList = (params) => { return request({ - url: `/applet/wallet/getTransactionDetailsList/${transactionType}`, + url: `/applet/wallet/getTransactionDetailsList`,///${transactionType} headers: { isToken: true }, diff --git a/otherPages/authentication/connectAddress/detail.vue b/otherPages/authentication/connectAddress/detail.vue index cc60d8d..e194079 100644 --- a/otherPages/authentication/connectAddress/detail.vue +++ b/otherPages/authentication/connectAddress/detail.vue @@ -185,6 +185,11 @@ } function getDetail(){ + + if(!addressId.value){ + return + } + addressDetail(addressId.value). then(res => { console.log(res.data); @@ -194,8 +199,8 @@ area: eidtItem?.value?.area || null, address: eidtItem?.value?.address || null, status: eidtItem?.value?.status == 'true' || null, - latitude: eidtItem?.value?.latitude || null, - longitude: eidtItem?.value?.longitude || null + latitude: form.value.latitude || eidtItem?.value?.latitude || null, + longitude: form.value.latitude || eidtItem?.value?.longitude || null } }) } diff --git a/otherPages/binding/partner/index.vue b/otherPages/binding/partner/index.vue index b0dea59..8373202 100644 --- a/otherPages/binding/partner/index.vue +++ b/otherPages/binding/partner/index.vue @@ -42,39 +42,44 @@ import { ref, reactive, - onMounted } from 'vue'; + import { + onShow + } from "@dcloudio/uni-app" + import { getTransactionDetailsList } from "@/api/home.js" const icon = ref('/static/images/levelImage/money.png') - const detaliList = reactive([{ - title: "合伙人推广佣金", - time: "2020-12-29 12:54:54", - amont: "168.00" - }, - { - title: "合伙人推广佣金", - time: "2020-12-29 12:54:54", - amont: "168.00" - }, + const detaliList = reactive([ + // { + // title: "合伙人推广佣金", + // time: "2020-12-29 12:54:54", + // amont: "168.00" + // }, + // { + // title: "合伙人推广佣金", + // time: "2020-12-29 12:54:54", + // amont: "168.00" + // }, ]) const state = reactive({ transactionType: 0 }) - onMounted(() => { + onShow(() => { getList() }) - const getList = () => { - getTransactionDetailsList({ + const getList = async () => { + let response = await getTransactionDetailsList({ transactionType: state.transactionType }) + console.log(response) } diff --git a/otherPages/binding/withdrawal/index.vue b/otherPages/binding/withdrawal/index.vue index bf8aff0..7079179 100644 --- a/otherPages/binding/withdrawal/index.vue +++ b/otherPages/binding/withdrawal/index.vue @@ -9,7 +9,8 @@ ¥ + border="bottom" type="number" color="#FF2742" + v-model="form.amount"> @@ -31,7 +32,7 @@ - @@ -42,21 +43,29 @@ computed, } from "vue" import { useStore } from 'vuex' + import { + cashOut + } from "@/api/amount/index.js" const store = useStore() const configList = computed(() => { return store.getters.configList }) + const userInfo = computed(() => { + return store.getters.userInfo + }) - const num = ref('');; - const fullName = ref('') + const form = ref({ + amount: '', + name : '', + }) const inputDialogRef = ref(null) const inputClose = ref(null) const cashClick = () => { - if (num.value) { - fullName.value = '' + if (form.value.amount) { + form.value.name = '' inputDialogRef.value.open() } else { uni.showToast({ @@ -67,16 +76,23 @@ } } - const dialogInputConfirm = (val) => { + const dialogInputConfirm = async (val) => { if (val) { - uni.showToast({ - icon: 'success', - title: '提现成功', - duration: 2000 - }) - fullName.value = val + + let response = await cashOut({ + ...form.value, + type: 0, + userId: userInfo.value.userId + }) + if (response.code == 200) { + uni.showToast({ + title: response.msg, + icon: "none" + }) + } + form.value.name = val inputClose.value.close() - fullName.value = '' + form.value.name = '' } else { uni.showToast({ icon: 'error', @@ -88,7 +104,7 @@ const close = () => { inputDialogRef.value.close() - fullName.value = '' + form.value.name = '' } diff --git a/otherPages/myOrdersManage/clock/index.vue b/otherPages/myOrdersManage/clock/index.vue index 0b0706f..55a3c1a 100644 --- a/otherPages/myOrdersManage/clock/index.vue +++ b/otherPages/myOrdersManage/clock/index.vue @@ -187,11 +187,11 @@ - 保存草稿 - + --> - - - - - 提现金额 - - - - ¥ - - - - - - - - - 提现说明 - - - - - - 提现 - - - - - - - - - - \ No newline at end of file diff --git a/otherPages/orderTakingManage/detail/index.vue b/otherPages/orderTakingManage/detail/index.vue index 8d8c64d..2bb0b1f 100644 --- a/otherPages/orderTakingManage/detail/index.vue +++ b/otherPages/orderTakingManage/detail/index.vue @@ -241,7 +241,7 @@ - + @@ -459,7 +459,7 @@ // 跳转到我的订单页面 const toMyOrder = () => { orderSuccessClose(); - uni.navigateTo({ + uni.switchTab({ url: '/pages/myOrdersManage/index' }); } @@ -566,7 +566,7 @@ .button-group { display: flex; - flex-direction: column; + align-items: center; gap: 20rpx; } diff --git a/otherPages/workbenchManage/myUser/index.vue b/otherPages/workbenchManage/myUser/index.vue index 50d14ff..363aa53 100644 --- a/otherPages/workbenchManage/myUser/index.vue +++ b/otherPages/workbenchManage/myUser/index.vue @@ -67,6 +67,9 @@ import { onMounted, computed, } from "vue" + +import { onShow } from '@dcloudio/uni-app' + import { useStore } from 'vuex' import haveOrder from "./components/haveOrder.vue" import noOrder from "./components/noOrder.vue" @@ -115,7 +118,7 @@ const state = reactive({ info: {}, baseInfo: {} }) -onMounted(() => { +onShow(() => { getList() state.info = JSON.parse(uni.getStorageSync("baseInfo")) getBaseInfo() diff --git a/otherPages/workbenchManage/myWallet/index.vue b/otherPages/workbenchManage/myWallet/index.vue index c449c8d..6ab6d23 100644 --- a/otherPages/workbenchManage/myWallet/index.vue +++ b/otherPages/workbenchManage/myWallet/index.vue @@ -98,6 +98,7 @@ binBaseInfo, bindCode } from "@/api/home.js" +import { onShow } from '@dcloudio/uni-app' const mounthName = ref('本月数据') const totalName = ref('累计数据') @@ -121,7 +122,7 @@ totalData: [] }) - onMounted(() => { + onShow(() => { state.info = JSON.parse(uni.getStorageSync("baseInfo")) getBaseInfo() }) diff --git a/pages.json b/pages.json index f981a3d..d8bf9c4 100644 --- a/pages.json +++ b/pages.json @@ -222,12 +222,7 @@ "style": { "navigationBarTitleText": "保证金退还" } - }, { - "path": "withdrawal/index", - "style": { - "navigationBarTitleText": "提现" - } - }, { + }, { "path": "transaction/index", "style": { "navigationBarTitleText": "交易明细" diff --git a/pages/myOrdersManage/dateOrder.json b/pages/myOrdersManage/dateOrder.json index ba0afc7..69cb2bf 100644 --- a/pages/myOrdersManage/dateOrder.json +++ b/pages/myOrdersManage/dateOrder.json @@ -1,3123 +1,668 @@ { - "msg": "日订单数据", - "code": 200, - "data": [ - { - "serviceDate": "2025-01-31", - "num": 3, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 80, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-31", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080817346560, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080817756160, - "orderId": 6155080803223552, - "orderServiceId": 6155080817346560, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080817346560, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-31", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 90, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-31", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080809793536, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080810252288, - "orderId": 6155080803223552, - "orderServiceId": 6155080809793536, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080809793536, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-31", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 69, - "createTime": "2025-04-16 04:45:33", - "createBy": null, - "updateTime": "2025-04-16 08:21:46", - "updateBy": null, - "serviceDate": "2025-01-31", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437415454720, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437416028160, - "orderId": 6158437407770624, - "orderServiceId": 6158437415454720, - "productId": 67, - "outProductId": "203", - "skuId": 407, - "outSkuId": "2031", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/103f9df8607139449881e320f15b218d88陪玩@3x.png", - "productName": "陪玩", - "salePrice": 20.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"时间\":\"15min\"}" - }, - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437416339456, - "orderId": 6158437407770624, - "orderServiceId": 6158437415454720, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437415454720, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-31", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744751717539, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "appletOrderItemDate": [ - { - "id": 99, - "createTime": "2025-04-16 05:15:19", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-31", - "status": 0, - "appletOrderId": null, - "orderId": 1744751717539, - "orderSn": null, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "orderServiceId": 6155341957367808, - "userId": null, - "orderItemList": [ - { - "createBy": 63, - "createTime": "2025-01-21 15:53:19", - "updateBy": null, - "updateTime": null, - "id": 6155341958088704, - "orderId": 6155341956122624, - "orderServiceId": 6155341957367808, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 63, - "createTime": "2025-01-21 15:53:19", - "updateBy": null, - "updateTime": null, - "id": 6155341957367808, - "orderId": 6155341956122624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-31", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 42, - "expectServiceTime": "", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 15:51:53", - "id": 42, - "name": "六一", - "petType": "cat", - "gender": null, - "birthDate": null, - "remark": "体检有心脏肥大,平时健康无症状", - "photo": "https://cdn.catmdogd.com/2025/01/21463bf85096ca4a12a89a088ef407cd6dtmp_4e8ff79d42608f1831ead3eff6dfad82.jpg", - "breed": "美短", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "顽皮捣蛋" - ], - "vaccineStatus": "有免疫史", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "其他" - ], - "owner": "63" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-30", - "num": 3, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 81, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-30", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080816379904, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080817068032, - "orderId": 6155080803223552, - "orderServiceId": 6155080816379904, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080816379904, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-30", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 91, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-30", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080809089024, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080809498624, - "orderId": 6155080803223552, - "orderServiceId": 6155080809089024, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080809089024, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-30", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 70, - "createTime": "2025-04-16 04:45:33", - "createBy": null, - "updateTime": "2025-04-16 08:21:46", - "updateBy": null, - "serviceDate": "2025-01-30", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437413783552, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437414176768, - "orderId": 6158437407770624, - "orderServiceId": 6158437413783552, - "productId": 68, - "outProductId": "204", - "skuId": 410, - "outSkuId": "20401", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/15c037a63146da44d397c3ecf66ac342ec毛发梳理@3x.png", - "productName": "毛发梳理", - "salePrice": 15.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"版本\":\"通用\"}" - }, - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437414389760, - "orderId": 6158437407770624, - "orderServiceId": 6158437413783552, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437413783552, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-30", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749974137, - "cityAddress": "上海市上海市静安区", - "address": "大宁路667弄2号602", - "appletOrderItemDate": [ - { - "id": 76, - "createTime": "2025-04-16 04:46:15", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-30", - "status": 0, - "appletOrderId": null, - "orderId": 1744749974137, - "orderSn": null, - "cityAddress": "上海市上海市静安区", - "address": "大宁路667弄2号602", - "orderServiceId": 6158150190254080, - "userId": null, - "orderItemList": [ - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150190778368, - "orderId": 6158150188533760, - "orderServiceId": 6158150190254080, - "productId": 67, - "outProductId": "203", - "skuId": 407, - "outSkuId": "2031", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/103f9df8607139449881e320f15b218d88陪玩@3x.png", - "productName": "陪玩", - "salePrice": 20.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"时间\":\"15min\"}" - }, - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150191155200, - "orderId": 6158150188533760, - "orderServiceId": 6158150190254080, - "productId": 69, - "outProductId": "205", - "skuId": 411, - "outSkuId": "20501", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/150786d112deda4c96866c8d0da89b4014眼部清洁@3x.png", - "productName": "意外清洁", - "salePrice": 40.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"版本\":\"通用\"}" - }, - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150191450112, - "orderId": 6158150188533760, - "orderServiceId": 6158150190254080, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150190254080, - "orderId": 6158150188533760, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-30", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 162, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": null, - "id": 162, - "name": "GiGi", - "petType": "cat", - "gender": "女生", - "birthDate": "2023-11", - "remark": "刚刚绝育半个月", - "photo": "https://cdn.catmdogd.com/2025/01/23187395dce5eb46bd812a4f5c221f130ctmp_a772daf91f93483f4f66416bc2082b10.jpg", - "breed": "德文", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧", - "内向胆小" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": "", - "healthStatus": [ - "其他" - ], - "owner": "164" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-29", - "num": 2, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 82, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-29", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080815691776, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080816084992, - "orderId": 6155080803223552, - "orderServiceId": 6155080815691776, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080815691776, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-29", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 92, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-29", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080808073216, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080808728576, - "orderId": 6155080803223552, - "orderServiceId": 6155080808073216, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080808073216, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-29", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 71, - "createTime": "2025-04-16 04:45:33", - "createBy": null, - "updateTime": "2025-04-16 08:21:46", - "updateBy": null, - "serviceDate": "2025-01-29", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437413095424, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437413521408, - "orderId": 6158437407770624, - "orderServiceId": 6158437413095424, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437413095424, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-29", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-28", - "num": 3, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 83, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-28", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080814987264, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080815396864, - "orderId": 6155080803223552, - "orderServiceId": 6155080814987264, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080814987264, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-28", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 93, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-28", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080807041024, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080807663616, - "orderId": 6155080803223552, - "orderServiceId": 6155080807041024, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080807041024, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-28", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 72, - "createTime": "2025-04-16 04:45:33", - "createBy": null, - "updateTime": "2025-04-16 08:21:46", - "updateBy": null, - "serviceDate": "2025-01-28", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437411702784, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437412292608, - "orderId": 6158437407770624, - "orderServiceId": 6158437411702784, - "productId": 68, - "outProductId": "204", - "skuId": 410, - "outSkuId": "20401", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/15c037a63146da44d397c3ecf66ac342ec毛发梳理@3x.png", - "productName": "毛发梳理", - "salePrice": 15.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"版本\":\"通用\"}" - }, - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437412587520, - "orderId": 6158437407770624, - "orderServiceId": 6158437411702784, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437411702784, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-28", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744751717539, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "appletOrderItemDate": [ - { - "id": 100, - "createTime": "2025-04-16 05:15:19", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-28", - "status": 0, - "appletOrderId": null, - "orderId": 1744751717539, - "orderSn": null, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "orderServiceId": 6155341956368384, - "userId": null, - "orderItemList": [ - { - "createBy": 63, - "createTime": "2025-01-21 15:53:19", - "updateBy": null, - "updateTime": null, - "id": 6155341956974592, - "orderId": 6155341956122624, - "orderServiceId": 6155341956368384, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 63, - "createTime": "2025-01-21 15:53:19", - "updateBy": null, - "updateTime": null, - "id": 6155341956368384, - "orderId": 6155341956122624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-28", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 42, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 15:51:53", - "id": 42, - "name": "六一", - "petType": "cat", - "gender": null, - "birthDate": null, - "remark": "体检有心脏肥大,平时健康无症状", - "photo": "https://cdn.catmdogd.com/2025/01/21463bf85096ca4a12a89a088ef407cd6dtmp_4e8ff79d42608f1831ead3eff6dfad82.jpg", - "breed": "美短", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "顽皮捣蛋" - ], - "vaccineStatus": "有免疫史", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "其他" - ], - "owner": "63" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-27", - "num": 3, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 84, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-27", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080814266368, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080814692352, - "orderId": 6155080803223552, - "orderServiceId": 6155080814266368, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080814266368, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-27", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 94, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-27", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080805959680, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080806565888, - "orderId": 6155080803223552, - "orderServiceId": 6155080805959680, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080805959680, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-27", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 73, - "createTime": "2025-04-16 04:45:33", - "createBy": null, - "updateTime": "2025-04-16 08:21:46", - "updateBy": null, - "serviceDate": "2025-01-27", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437409916928, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437410621440, - "orderId": 6158437407770624, - "orderServiceId": 6158437409916928, - "productId": 67, - "outProductId": "203", - "skuId": 407, - "outSkuId": "2031", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/103f9df8607139449881e320f15b218d88陪玩@3x.png", - "productName": "陪玩", - "salePrice": 20.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"时间\":\"15min\"}" - }, - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437410981888, - "orderId": 6158437407770624, - "orderServiceId": 6158437409916928, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437409916928, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-27", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749974137, - "cityAddress": "上海市上海市静安区", - "address": "大宁路667弄2号602", - "appletOrderItemDate": [ - { - "id": 77, - "createTime": "2025-04-16 04:46:15", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-27", - "status": 0, - "appletOrderId": null, - "orderId": 1744749974137, - "orderSn": null, - "cityAddress": "上海市上海市静安区", - "address": "大宁路667弄2号602", - "orderServiceId": 6158150188697600, - "userId": null, - "orderItemList": [ - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150189074432, - "orderId": 6158150188533760, - "orderServiceId": 6158150188697600, - "productId": 67, - "outProductId": "203", - "skuId": 407, - "outSkuId": "2031", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/103f9df8607139449881e320f15b218d88陪玩@3x.png", - "productName": "陪玩", - "salePrice": 20.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"时间\":\"15min\"}" - }, - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150189303808, - "orderId": 6158150188533760, - "orderServiceId": 6158150188697600, - "productId": 69, - "outProductId": "205", - "skuId": 411, - "outSkuId": "20501", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/150786d112deda4c96866c8d0da89b4014眼部清洁@3x.png", - "productName": "意外清洁", - "salePrice": 40.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"版本\":\"通用\"}" - }, - { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150189533184, - "orderId": 6158150188533760, - "orderServiceId": 6158150188697600, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 164, - "createTime": "2025-01-23 15:30:00", - "updateBy": null, - "updateTime": null, - "id": 6158150188697600, - "orderId": 6158150188533760, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-27", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 162, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": null, - "id": 162, - "name": "GiGi", - "petType": "cat", - "gender": "女生", - "birthDate": "2023-11", - "remark": "刚刚绝育半个月", - "photo": "https://cdn.catmdogd.com/2025/01/23187395dce5eb46bd812a4f5c221f130ctmp_a772daf91f93483f4f66416bc2082b10.jpg", - "breed": "德文", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧", - "内向胆小" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": "", - "healthStatus": [ - "其他" - ], - "owner": "164" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-26", - "num": 2, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 85, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-26", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080813529088, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080813987840, - "orderId": 6155080803223552, - "orderServiceId": 6155080813529088, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080813529088, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-26", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 95, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-26", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080804763648, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080805386240, - "orderId": 6155080803223552, - "orderServiceId": 6155080804763648, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080804763648, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-26", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 74, - "createTime": "2025-04-16 04:45:34", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-26", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437408540672, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437408901120, - "orderId": 6158437407770624, - "orderServiceId": 6158437408540672, - "productId": 68, - "outProductId": "204", - "skuId": 410, - "outSkuId": "20401", - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/15c037a63146da44d397c3ecf66ac342ec毛发梳理@3x.png", - "productName": "毛发梳理", - "salePrice": 15.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 78, - "spData": "{\"版本\":\"通用\"}" - }, - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437409130496, - "orderId": 6158437407770624, - "orderServiceId": 6158437408540672, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437408540672, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-26", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-25", - "num": 2, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 86, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-25", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080812775424, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080813217792, - "orderId": 6155080803223552, - "orderServiceId": 6155080812775424, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080812775424, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-25", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 96, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-25", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080804042752, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080804468736, - "orderId": 6155080803223552, - "orderServiceId": 6155080804042752, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080804042752, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-25", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744749931856, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "appletOrderItemDate": [ - { - "id": 75, - "createTime": "2025-04-16 04:45:34", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-25", - "status": 0, - "appletOrderId": null, - "orderId": 1744749931856, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "江苏北路105弄小区5号楼503", - "orderServiceId": 6158437407901696, - "userId": null, - "orderItemList": [ - { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437408278528, - "orderId": 6158437407770624, - "orderServiceId": 6158437407901696, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 40, - "createTime": "2025-01-23 20:22:11", - "updateBy": null, - "updateTime": null, - "id": 6158437407901696, - "orderId": 6158437407770624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-25", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 69, - "expectServiceTime": "EVENING", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-23 10:03:47", - "id": 69, - "name": "lulu", - "petType": "cat", - "gender": "女生", - "birthDate": null, - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/1161c3c8198b4b4b81b39aa5abca194a68tmp_810ff2b601f3c6f93548a09a1c13b483.jpg", - "breed": "金渐层", - "bodyType": "小型(<10 KG)", - "personality": [ - "比较顽皮" - ], - "vaccineStatus": "每年都免疫", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "40" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-02-02", - "num": 2, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 78, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-02-02", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080818739200, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080819165184, - "orderId": 6155080803223552, - "orderServiceId": 6155080818739200, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080818739200, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-02-02", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 88, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-02-02", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080811251712, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080811694080, - "orderId": 6155080803223552, - "orderServiceId": 6155080811251712, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080811251712, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-02-02", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - }, - { - "orderId": 1744751717539, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "appletOrderItemDate": [ - { - "id": 98, - "createTime": "2025-04-16 05:15:19", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-02-02", - "status": 0, - "appletOrderId": null, - "orderId": 1744751717539, - "orderSn": null, - "cityAddress": "上海市上海市浦东新区", - "address": "仁怡苑13号楼704", - "orderServiceId": 6155341958498304, - "userId": null, - "orderItemList": [ - { - "createBy": 63, - "createTime": "2025-01-21 15:53:20", - "updateBy": null, - "updateTime": null, - "id": 6155341959120896, - "orderId": 6155341956122624, - "orderServiceId": 6155341958498304, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 63, - "createTime": "2025-01-21 15:53:20", - "updateBy": null, - "updateTime": null, - "id": 6155341958498304, - "orderId": 6155341956122624, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-02-02", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 42, - "expectServiceTime": "", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 15:51:53", - "id": 42, - "name": "六一", - "petType": "cat", - "gender": null, - "birthDate": null, - "remark": "体检有心脏肥大,平时健康无症状", - "photo": "https://cdn.catmdogd.com/2025/01/21463bf85096ca4a12a89a088ef407cd6dtmp_4e8ff79d42608f1831ead3eff6dfad82.jpg", - "breed": "美短", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "顽皮捣蛋" - ], - "vaccineStatus": "有免疫史", - "sterilization": null, - "dewormingStatus": "有驱虫史", - "doglicenseStatus": null, - "healthStatus": [ - "其他" - ], - "owner": "63" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-02-01", - "num": 1, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 79, - "createTime": "2025-04-16 04:47:12", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-02-01", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080818051072, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080818444288, - "orderId": 6155080803223552, - "orderServiceId": 6155080818051072, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:41", - "updateBy": null, - "updateTime": null, - "id": 6155080818051072, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-02-01", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 89, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-02-01", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080810563584, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080810989568, - "orderId": 6155080803223552, - "orderServiceId": 6155080810563584, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080810563584, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-02-01", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - } - ] - }, - { - "serviceDate": "2025-01-24", - "num": 1, - "orderList": [ - { - "orderId": 1744750030579, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "appletOrderItemDate": [ - { - "id": 87, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:47", - "updateBy": null, - "serviceDate": "2025-01-24", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080812038144, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080812480512, - "orderId": 6155080803223552, - "orderServiceId": 6155080812038144, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080812038144, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-24", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 87, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:12", - "id": 87, - "name": "果果", - "petType": "dog", - "gender": "女生", - "birthDate": "2015-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/21958e562ca43f410c85e92401df1338d6tmp_32d045309309223adecff92d3483a862.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情", - "粘人乖巧" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - }, - { - "id": 97, - "createTime": "2025-04-16 04:47:13", - "createBy": null, - "updateTime": "2025-04-16 08:21:48", - "updateBy": null, - "serviceDate": "2025-01-24", - "status": 0, - "appletOrderId": null, - "orderId": 1744750030579, - "orderSn": null, - "cityAddress": "上海市上海市长宁区", - "address": "剑河家苑24号楼1303", - "orderServiceId": 6155080803371008, - "userId": null, - "orderItemList": [ - { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080803764224, - "orderId": 6155080803223552, - "orderServiceId": 6155080803371008, - "productId": 63, - "outProductId": "P001", - "skuId": 404, - "outSkuId": null, - "productSnapshotId": null, - "skuSnapshotId": null, - "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", - "productName": "专业遛狗", - "salePrice": 75.00, - "purchasePrice": null, - "quantity": 1, - "productCategoryId": 76, - "spData": "{\"时间\":\"60\"}" - } - ], - "orderServiceList": { - "createBy": 31, - "createTime": "2025-01-21 11:27:40", - "updateBy": null, - "updateTime": null, - "id": 6155080803371008, - "orderId": 6155080803223552, - "pet": null, - "serviceFrequency": null, - "serviceDate": "2025-01-24", - "serviceTimeFirst": null, - "serviceTimeSecond": null, - "delFlag": 0, - "petId": 86, - "expectServiceTime": "AFTERNOON", - "feedCount": null, - "petVo": { - "createBy": null, - "createTime": null, - "updateBy": null, - "updateTime": "2025-01-21 11:26:24", - "id": 86, - "name": "顶顶", - "petType": "dog", - "gender": "男生", - "birthDate": "2014-01", - "remark": null, - "photo": "https://cdn.catmdogd.com/2025/01/2121a7bb24c43840be8ed70bd681567611tmp_3964a0af55af4c50a7bd2c8016a7b1be.jpg", - "breed": "泰迪", - "bodyType": "小型(<10 KG)", - "personality": [ - "友善热情" - ], - "vaccineStatus": "每年都免疫", - "sterilization": "已绝育", - "dewormingStatus": "定期驱虫", - "doglicenseStatus": null, - "healthStatus": [ - "身体健康,无异常" - ], - "owner": "31" - }, - "pets": null - } - } - ] - } - ] - } - ] + "content": [{ + "orderId": 6278846201284608, + "payId": 6278846201284609, + "orderSn": "250418-6278846201284608", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:48:20", + "updateBy": null, + "updateTime": null, + "id": 6278846205200384, + "orderId": 6278846201284608, + "orderServiceId": 6278846202382336, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:48:20", + "updateBy": null, + "updateTime": null, + "id": 6278846202382336, + "orderId": 6278846201284608, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:48:20", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278844121892864, + "payId": 6278844121892865, + "orderSn": "250418-6278844121892864", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:46:13", + "updateBy": null, + "updateTime": null, + "id": 6278844126758912, + "orderId": 6278844121892864, + "orderServiceId": 6278844123498496, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:46:13", + "updateBy": null, + "updateTime": null, + "id": 6278844123498496, + "orderId": 6278844121892864, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:46:13", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278842452690944, + "payId": 6278842452690945, + "orderSn": "250418-6278842452690944", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:44:32", + "updateBy": null, + "updateTime": null, + "id": 6278842456311808, + "orderId": 6278842452690944, + "orderServiceId": 6278842453706752, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:44:32", + "updateBy": null, + "updateTime": null, + "id": 6278842453706752, + "orderId": 6278842452690944, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:44:31", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278841349523456, + "payId": 6278841349523457, + "orderSn": "250418-6278841349523456", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:43:24", + "updateBy": null, + "updateTime": null, + "id": 6278841353963520, + "orderId": 6278841349523456, + "orderServiceId": 6278841350768640, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:43:24", + "updateBy": null, + "updateTime": null, + "id": 6278841350768640, + "orderId": 6278841349523456, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:43:24", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278837277427712, + "payId": 6278837277427713, + "orderSn": "250418-6278837277427712", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:39:16", + "updateBy": null, + "updateTime": null, + "id": 6278837281671168, + "orderId": 6278837277427712, + "orderServiceId": 6278837278607360, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:39:16", + "updateBy": null, + "updateTime": null, + "id": 6278837278607360, + "orderId": 6278837277427712, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:39:16", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278836794968064, + "payId": 6278836794968065, + "orderSn": "250418-6278836794968064", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:38:46", + "updateBy": null, + "updateTime": null, + "id": 6278836799145984, + "orderId": 6278836794968064, + "orderServiceId": 6278836796213248, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:38:46", + "updateBy": null, + "updateTime": null, + "id": 6278836796213248, + "orderId": 6278836794968064, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:38:46", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278835994511360, + "payId": 6278835994511361, + "orderSn": "250418-6278835994511360", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:37:57", + "updateBy": null, + "updateTime": null, + "id": 6278835998623744, + "orderId": 6278835994511360, + "orderServiceId": 6278835995707392, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:37:57", + "updateBy": null, + "updateTime": null, + "id": 6278835995707392, + "orderId": 6278835994511360, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:37:57", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278832806004736, + "payId": 6278832806004737, + "orderSn": "250418-6278832806004736", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:34:43", + "updateBy": null, + "updateTime": null, + "id": 6278832810018816, + "orderId": 6278832806004736, + "orderServiceId": 6278832807118848, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:34:43", + "updateBy": null, + "updateTime": null, + "id": 6278832807118848, + "orderId": 6278832806004736, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:34:43", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278831647475712, + "payId": 6278831647475713, + "orderSn": "250418-6278831647475712", + "memberId": 211, + "totalAmount": 71.25, + "payAmount": 71.25, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:33:32", + "updateBy": null, + "updateTime": null, + "id": 6278831651309568, + "orderId": 6278831647475712, + "orderServiceId": 6278831648573440, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:33:32", + "updateBy": null, + "updateTime": null, + "id": 6278831648573440, + "orderId": 6278831647475712, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-30", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "MORNING", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:33:32", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }, { + "orderId": 6278821909071872, + "payId": 6278821909071873, + "orderSn": "250418-6278821909071872", + "memberId": 211, + "totalAmount": 60.56, + "payAmount": 60.56, + "status": 4, + "aftersaleStatus": 1, + "orderItemList": [{ + "createBy": 211, + "createTime": "2025-04-18 21:23:38", + "updateBy": null, + "updateTime": null, + "id": 6278821913151488, + "orderId": 6278821909071872, + "orderServiceId": 6278821910251520, + "productId": 63, + "outProductId": "P001", + "skuId": 404, + "outSkuId": null, + "productSnapshotId": null, + "skuSnapshotId": null, + "pic": "https://catmdogf.oss-cn-shanghai.aliyuncs.com/2024/01/08ba3980c107c2472397b13ef9769257e1陪玩.png", + "productName": "专业遛狗", + "salePrice": 75.00, + "purchasePrice": null, + "quantity": 1, + "productCategoryId": 76, + "spData": "{\"时间\":\"60\"}" + }], + "orderServiceList": null, + "service": { + "createBy": 211, + "createTime": "2025-04-18 21:23:38", + "updateBy": null, + "updateTime": null, + "id": 6278821910251520, + "orderId": 6278821909071872, + "pet": null, + "serviceFrequency": null, + "serviceDate": "2025-04-23", + "serviceTimeFirst": null, + "serviceTimeSecond": null, + "delFlag": 0, + "petId": 177, + "expectServiceTime": "", + "feedCount": null, + "petVo": null, + "pets": null + }, + "note": null, + "deliverySn": null, + "createTime": "2025-04-18 21:23:38", + "paymentTime": null, + "receiverName": "1", + "receiverPhone": "13055015802", + "receiverProvince": "", + "receiverCity": "湖南省湘潭市雨湖区雨湖路272号湘潭市雨湖区人民政府", + "receiverDistrict": "", + "receiverDetailAddress": "1", + "timeToPay": null, + "staffId": null, + "petVOList": null + }], + "pageable": { + "sort": { + "sorted": false, + "unsorted": true, + "empty": true + }, + "offset": 10, + "pageNumber": 1, + "pageSize": 10, + "paged": true, + "unpaged": false + }, + "totalElements": 22, + "last": false, + "totalPages": 3, + "number": 1, + "size": 10, + "sort": { + "sorted": false, + "unsorted": true, + "empty": true + }, + "numberOfElements": 10, + "first": false, + "empty": false } \ No newline at end of file diff --git a/utils/getUrl.js b/utils/getUrl.js index f9acf5e..9c63f8c 100644 --- a/utils/getUrl.js +++ b/utils/getUrl.js @@ -3,7 +3,8 @@ const accountInfo = wx.getAccountInfoSync(); current = accountInfo.miniProgram.envVersion; const api = { - develop:"http://h5.xzaiyp.top", + // develop:"http://h5.xzaiyp.top", + develop:"http://pet-admin.hhlm1688.com/api", // develop: "http://youyi-test.natapp1.cc/prod-api", // 开发 trial: "http://h5.xzaiyp.top", //测试 release: "https://api.catmdogd.com/prod-api",