1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // 指标报表字典
- import request from '../../utils/request'
- // 查询指标报表字典树数据
- export function selectReportDictTree(data) {
- return request({
- url: '/targetManagement/selectReportDictTree',
- method: 'post',
- data,
- })
- }
- // 根据id删除指标报表字典数据(比较重要的指标信息,因此作物理删除,改为弃用)
- export function deleteReportDictById(data) {
- return request({
- url: '/targetManagement/deleteReportDictById',
- method: 'post',
- data,
- })
- }
- // 查询指标报表字典数据
- export function selectReportDict(data) {
- return request({
- url: '/targetManagement/selectReportDict',
- method: 'post',
- data,
- })
- }
- // 查询指标报表类型字典数据
- export function selectReportType() {
- return request({
- url: '/targetManagement/selectReportType',
- method: 'get',
- })
- }
- // 查询指标报表计算结果
- export function reportSqlExecute(data) {
- return request({
- url: '/targetManagement/reportSqlExecute',
- method: 'post',
- data,
- })
- }
- // 查询指标报表分组类型
- export function selectReportLevel(data) {
- return request({
- url: '/targetManagement/selectReportLevel',
- method: 'post',
- data,
- })
- }
|