feat(credit): 添加用户数据范围控制功能

- 在所有信用模块的搜索参数接口中添加 userId 字段
- 集成 withCreditUserScope 数据范围工具函数到各个 API 请求
- 实现对行政许可、破产重整、分支机构、失信被执行人等所有信用数据的用户范围过滤
- 统一处理分页和列表查询的数据范围限制
- 确保所有信用相关 API 都支持基于用户的权限控制
This commit is contained in:
2026-01-21 13:15:48 +08:00
parent fa188f482b
commit 6b21547b09
57 changed files with 216 additions and 167 deletions

View File

@@ -1,4 +1,6 @@
import request from '@/utils/request';
import { withCreditUserScope } from '@/api/credit/utils/data-scope';
import type { ApiResult, PageResult } from '@/api';
import type { CreditJudgmentDebtor, CreditJudgmentDebtorParam } from './model';
@@ -10,9 +12,7 @@ export async function pageCreditJudgmentDebtor(
) {
const res = await request.get<ApiResult<PageResult<CreditJudgmentDebtor>>>(
'/credit/credit-judgment-debtor/page',
{
params
}
{ params: withCreditUserScope(params) }
);
if (res.data.code === 0) {
return res.data.data;
@@ -28,9 +28,7 @@ export async function listCreditJudgmentDebtor(
) {
const res = await request.get<ApiResult<CreditJudgmentDebtor[]>>(
'/credit/credit-judgment-debtor',
{
params
}
{ params: withCreditUserScope(params) }
);
if (res.data.code === 0 && res.data.data) {
return res.data.data;
@@ -178,7 +176,7 @@ export async function refreshCreditJudgmentDebtorCompanyId(params?: {
const res = await request.post<ApiResult<unknown>>(
'/credit/credit-judgment-debtor/company-id/refresh',
undefined,
{ params }
{ params: withCreditUserScope(params) }
);
if (res.data.code === 0) {
return res.data.message;

View File

@@ -50,6 +50,8 @@ export interface CreditJudgmentDebtor {
* 被执行人搜索条件
*/
export interface CreditJudgmentDebtorParam extends PageParam {
userId?: number;
id?: number;
keywords?: string;
}