kz-ui-base 1.0.141 → 1.0.142

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.
Files changed (2) hide show
  1. package/api/system/dept.js +10 -1
  2. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import request from '@utils/request'
2
2
 
3
- // 查询部门列表(可用状态)
3
+ // 查询部门列表(可用状态&PageSize=10条)
4
4
  export function listDept(query) {
5
5
  return request({
6
6
  url: '/system/dept/listAvailDept',
@@ -9,6 +9,15 @@ export function listDept(query) {
9
9
  })
10
10
  }
11
11
 
12
+ // 查询部门列表(可用状态&PageSize=999条)
13
+ export function listDeptAll(query) {
14
+ return request({
15
+ url: '/system/dept/listAvailDeptAll',
16
+ method: 'get',
17
+ params: query
18
+ })
19
+ }
20
+
12
21
  // 查询部门列表(全部状态)
13
22
  export function listDeptAllStatus(query) {
14
23
  return request({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kz-ui-base",
3
- "version": "1.0.141",
3
+ "version": "1.0.142",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {