shuishen
2026-02-10 abd285e6d013128aa57c9e30e851b2aa76d60ec5
src/api/contradictionEventShow/index.js
@@ -1,3 +1,13 @@
/*
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2024-06-21 16:37:19
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2025-01-08 20:37:12
 * @FilePath: \srs-police-affairs\src\api\contradictionEventShow\index.js
 * @Description:
 *
 * Copyright (c) 2025 by shuishen, All Rights Reserved.
 */
import request from "@/router/axios.js"
/**
@@ -6,12 +16,28 @@
 * @returns
 */
export const getDisputeRecordList = (params) => {
    return request({
        url: "/api/blade-disputeRecord/disputeRecord/page",
        method: "get",
        meta: {
            isToken: true,
        },
        params: params,
    })
  return request({
    url: "/api/blade-disputeRecord/disputeRecord/page",
    method: "get",
    meta: {
      // isToken: true,
    },
    params: params,
  })
}
/**
 * 矛盾纠纷记录表 统计
 * @param {*} params
 * @returns
 */
export const getStatistic = (params) => {
  return request({
    url: "/api/blade-disputeRecord/disputeRecord/getStatistic",
    method: "get",
    meta: {
      // isToken: true,
    },
    params: params,
  })
}