1
shuishen
2023-01-04 1485f5daeb46a3cc4bbf9abbb2a2a8cab44e2b2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2022-12-27 14:19:19
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-01-03 16:02:57
 * @FilePath: \srs-police-affairs\src\api\home\index.js
 * @Description: 
 * 
 * Copyright (c) 2023 by shuishen 1109946754@qq.com, All Rights Reserved. 
 */
import request from "@/router/axios.js"
 
 
/**
 * 获取值班列表
 * @param {*}   
 * @returns 
 */
export const getSchedulingList = () => {
    return request({
        url: `/api/scheduling/scheduling/page`,
        method: 'get',
        params: {
            current: 1,
            size: 100,
            sameday: 1,
        }
    })
}
 
 
export const getCallPolices = () => {
    return request({
        url: `/api/doorplate/doorplate/setOutAlarmList`,
        method: 'get',
        params: {}
    })
}