2025-08-25 15:33:34 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
// 查询一站式社区模块:社区建设列表
|
|
|
|
|
export function listOneStopCommunityConstruction(query) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/staff/oneStopCommunityConstruction/list',
|
|
|
|
|
method: 'get',
|
|
|
|
|
data: query
|
|
|
|
|
})
|
2026-01-07 09:43:11 +08:00
|
|
|
}
|
|
|
|
|
// 一站式社区模块:社区建设新增
|
|
|
|
|
export function OneStopCommunityConstructionAdd(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/staff/oneStopCommunityConstruction/add',
|
|
|
|
|
method: 'post',
|
|
|
|
|
data: data
|
|
|
|
|
})
|
2025-08-25 15:33:34 +08:00
|
|
|
}
|