市北新大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
298 B

2 years ago
import request from 'utils/request'
import config from 'utils/config'
const baseURL = config.screenBaseUrl
// 获取下拉框组织机构tree
export function getOrgTree() {
return request({
baseURL,
url: '/shibei/data/report/screen/agency/tree',
method: 'POST',
data: {}
})
}