@freelog/tools-lib 0.1.113 → 0.1.114

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -49,6 +49,25 @@ export function currentUserInfo() {
49
49
  });
50
50
  }
51
51
 
52
+ // 分页查看用户列表
53
+ interface UsersParamsType {
54
+ skip?: number;
55
+ limit?: number;
56
+ keywords?: string;
57
+ userId?: number;
58
+ tagIds?: string;
59
+ startRegisteredDate?: string;
60
+ endRegisteredDate?: string;
61
+ }
62
+
63
+ export function users(params: UsersParamsType) {
64
+ return FUtil.Request({
65
+ method: 'GET',
66
+ url: `/v2/users`,
67
+ params: params,
68
+ });
69
+ }
70
+
52
71
  // 查看用户详情
53
72
  interface UserDetailsParamsType {
54
73
  mobile?: string;