From 4229c0aaf60e69cc6e7e8d5d2e187fa61e946fa0 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 17 Feb 2023 10:46:18 +0800
Subject: [PATCH] 视频预览中添加多余的图标去除,添加巡逻路线时相关接口调用删除,无用代码去除
---
src/api/video/index.js | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/src/api/video/index.js b/src/api/video/index.js
index d3157c0..b1b99e1 100644
--- a/src/api/video/index.js
+++ b/src/api/video/index.js
@@ -2,7 +2,7 @@
* @Author: shuishen 1109946754@qq.com
* @Date: 2022-11-15 15:10:41
* @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2023-02-16 11:51:45
+ * @LastEditTime: 2023-02-17 10:34:10
* @FilePath: \srs-police-affairs\src\api\video\index.js
* @Description:
*
@@ -58,16 +58,12 @@
* @param {*} params 包含参数 range 参数值参考 116.292735,40.0717; 116.476708, 40.083625; 116.476708, 40.083625; 116.292735, 40.0717
* @returns
*/
-export const getRegionList = (page = 1, count = 15, id) => {
+export const getRegionList = (params) => {
return request({
url: '/device/query/SpatialQueryList',
- method: 'get',
+ method: 'post',
requestBaseUrl: 'outside',
- params: {
- page,
- count,
- id
- }
+ data: params
})
}
--
Gitblit v1.9.3