|  | @@ -12,7 +12,7 @@ export function listDept(query) {
 | 
											
												
													
														|  |  // 查询部门列表(排除节点)
 |  |  // 查询部门列表(排除节点)
 | 
											
												
													
														|  |  export function listDeptExcludeChild(deptId) {
 |  |  export function listDeptExcludeChild(deptId) {
 | 
											
												
													
														|  |    return request({
 |  |    return request({
 | 
											
												
													
														|  | -    url: '/system/dept/list/exclude/' + deptId,
 |  | 
 | 
											
												
													
														|  | 
 |  | +    url: '/basicdata/warehouse/list/exclude/' + deptId,
 | 
											
												
													
														|  |      method: 'get'
 |  |      method: 'get'
 | 
											
												
													
														|  |    })
 |  |    })
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
										
											
												
													
														|  | @@ -20,7 +20,7 @@ export function listDeptExcludeChild(deptId) {
 | 
											
												
													
														|  |  // 查询部门详细
 |  |  // 查询部门详细
 | 
											
												
													
														|  |  export function getDept(deptId) {
 |  |  export function getDept(deptId) {
 | 
											
												
													
														|  |    return request({
 |  |    return request({
 | 
											
												
													
														|  | -    url: '/system/dept/' + deptId,
 |  | 
 | 
											
												
													
														|  | 
 |  | +    url: '/basicdata/warehouse/' + deptId,
 | 
											
												
													
														|  |      method: 'get'
 |  |      method: 'get'
 | 
											
												
													
														|  |    })
 |  |    })
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
										
											
												
													
														|  | @@ -28,7 +28,7 @@ export function getDept(deptId) {
 | 
											
												
													
														|  |  // 查询部门下拉树结构
 |  |  // 查询部门下拉树结构
 | 
											
												
													
														|  |  export function treeselect() {
 |  |  export function treeselect() {
 | 
											
												
													
														|  |    return request({
 |  |    return request({
 | 
											
												
													
														|  | -    url: '/system/dept/treeselect',
 |  | 
 | 
											
												
													
														|  | 
 |  | +    url: '/basicdata/warehouse/treeselect',
 | 
											
												
													
														|  |      method: 'get'
 |  |      method: 'get'
 | 
											
												
													
														|  |    })
 |  |    })
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
										
											
												
													
														|  | @@ -53,7 +53,7 @@ export function addDept(data) {
 | 
											
												
													
														|  |  // 修改部门
 |  |  // 修改部门
 | 
											
												
													
														|  |  export function updateDept(data) {
 |  |  export function updateDept(data) {
 | 
											
												
													
														|  |    return request({
 |  |    return request({
 | 
											
												
													
														|  | -    url: '/system/dept',
 |  | 
 | 
											
												
													
														|  | 
 |  | +    url: '/basicdata/warehouse',
 | 
											
												
													
														|  |      method: 'put',
 |  |      method: 'put',
 | 
											
												
													
														|  |      data: data
 |  |      data: data
 | 
											
												
													
														|  |    })
 |  |    })
 | 
											
										
											
												
													
														|  | @@ -62,7 +62,7 @@ export function updateDept(data) {
 | 
											
												
													
														|  |  // 删除部门
 |  |  // 删除部门
 | 
											
												
													
														|  |  export function delDept(deptId) {
 |  |  export function delDept(deptId) {
 | 
											
												
													
														|  |    return request({
 |  |    return request({
 | 
											
												
													
														|  | -    url: '/system/dept/' + deptId,
 |  | 
 | 
											
												
													
														|  | 
 |  | +    url: '/basicdata/warehouse/' + deptId,
 | 
											
												
													
														|  |      method: 'delete'
 |  |      method: 'delete'
 | 
											
												
													
														|  |    })
 |  |    })
 | 
											
												
													
														|  |  }
 |  |  }
 |