zhengyiming
5 天以前 7c86889e5177ae0da77fd75f298fabe9971b2822
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', {