1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * @Author: your name
- * @Date: 2021-11-18 13:40:39
- * @LastEditTime: 2021-11-18 17:49:02
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: \hyyfClient\src\utils\chenApi.js
- */
- import axios from './http';
- /** 生物安全 */
- /* 获取门禁所有 */
- export function getFaceGuardTotal(data) {
- return axios({
- url: 'http://192.168.1.171:9987/person/get_person_record_totalpage',
- method: 'post',
- data: data
- })
- }
- /* 车辆管理 - 车辆通行 */
- export function getCarPassage(data) {
- return axios({
- url: 'http://192.168.1.171:9987/car/get_car_record',
- method: 'get',
- params: data
- })
- }
- /* 车辆管理 - 车辆洗消 */
- export function getCarWash(params) {
- return axios({
- url: 'http://192.168.1.171:9987/accident/accident_record_xixiao',
- method: 'post',
- data: params
- })
- }
|