22 lines
663 B
TypeScript
22 lines
663 B
TypeScript
![]() |
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export function cost_approved_project_list(params: any) {
|
||
|
return request.post({ url: '/cost_consultation_report/cost_approved_project_list', params })
|
||
|
}
|
||
|
|
||
|
// 获取首页文章数据
|
||
|
export function cost_project_report(params?: any) {
|
||
|
return request.get({ url: '/cost_consultation_report/cost_project_report', params })
|
||
|
}
|
||
|
|
||
|
// 底部导航详情
|
||
|
export function project_trace(params?: any) {
|
||
|
return request.get({ url: '/cost_consultation_report/project_trace', params })
|
||
|
}
|
||
|
|
||
|
// 底部导航保存
|
||
|
export function setDecorateTabbar(params: any) {
|
||
|
return request.post({ url: '/decorate.tabbar/save', params })
|
||
|
}
|