diff --git a/package.json b/package.json index da5261a..f4d587f 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "unocss": "^0.65.1", "video.js": "^8.23.4", "vue": "3.4.31", + "vue-baidu-map-3x": "^1.0.40", "vue-cropper": "1.1.1", "vue-router": "4.4.0" }, diff --git a/src/api/pest/pushHistory.js b/src/api/pest/pushHistory.js new file mode 100644 index 0000000..87b4687 --- /dev/null +++ b/src/api/pest/pushHistory.js @@ -0,0 +1,24 @@ +/* + * @Author: chris + * @Date: 2025-09-05 11:34:53 + * @LastEditors: chris + * @LastEditTime: 2025-10-27 17:05:10 + */ +import request from "@/utils/request"; + +// 查询推送历史列表 +export function listNotify(query) { + return request({ + url: "/leilinglitchi/business/device/list", + method: "get", + params: Object.assign({ type: 1 }, query), + }); +} + +// 查询推送历史详细 +export function getNotify(id) { + return request({ + url: "/leilinglitchi/business/device/" + id, + method: "get", + }); +} diff --git a/src/components/deviceFlatList/index.vue b/src/components/deviceFlatList/index.vue index 85adb2d..b058a1b 100644 --- a/src/components/deviceFlatList/index.vue +++ b/src/components/deviceFlatList/index.vue @@ -2,7 +2,7 @@ * @Author: chris * @Date: 2025-02-06 16:43:54 * @LastEditors: chris - * @LastEditTime: 2025-09-22 17:33:54 + * @LastEditTime: 2025-10-29 16:12:03 -->