zhengyiming
8 天以前 2c0bd65affde857b14fb5434dbbfe6ebf97d12dc
src/services/api/User.ts
@@ -108,6 +108,18 @@
  });
}
/** 获取全部用户下拉列表 POST /api/User/GetUserAllList */
export async function getUserAllList(body: API.QueryUserPageInput, options?: API.RequestConfig) {
  return request<API.UserListOutput[]>('/api/User/GetUserAllList', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 获取客户余额信息 GET /api/User/GetUserAmountShow */
export async function getUserAmountShow(options?: API.RequestConfig) {
  return request<API.UserAmountShowDto>('/api/User/GetUserAmountShow', {