123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import request from '@/utils/request'
- // 根据小区楼栋单元 获取工程用料统计(areaId(string) 小区ID realityQuality材质 realitySpecifications 规格)
- export function getMunicipalStatisticsData(param) {
- return request({
- 'url': '/zdsz/materialStatistics/list',
- 'method': 'post',
- 'data': param
- })
- }
- // 根据楼栋小区单元楼栋 查询完成情况统计(areaId(string) 小区ID buildingId单元 unitId楼栋)
- export function getObtainRoomcCompletionInformationList(param) {
- return request({
- 'url': '/zdsz/engineeringCivil/getObtainRoomcCompletionInformationList',
- 'method': 'post',
- 'data': param
- })
- }
- // 新增(提交)市政工程
- export function submitMunicipalData(param) {
- return request({
- 'url': '/zdsz/engineeringIndustry',
- 'method': 'post',
- 'data': param
- })
- }
- // 工业工程新增
- export function Submitengineering(engineering) {
- return request({
- 'url': '/zdsz/engineeringIndustry',
- 'method': 'post',
- 'data': engineering
- })
- }
- // 获取房间工程历史
- export function getRoomProjectList(id, type) {
- return request({
- 'url': '/zdsz/engineeringCivil/' + id + '/' + type,
- 'method': 'get',
- })
- }
- // 查询房间是否有工程
- export function getRoomProjectId(room) {
- return request({
- 'url': '/zdsz/engineeringCivil/query',
- 'method': 'post',
- 'data': room
- })
- }
- // 材质规格下拉
- export function getEnginSpecificationsList(materId) {
- const data = {
- materId
- }
- return request({
- 'url': '/zdsz/enginSpecifications/getEnginSpecificationsList',
- 'method': 'get',
- 'data': data
- })
- }
- // 工程材质下拉
- export function getEnginMaterialQualityList(enginType) {
- const data = {
- enginType
- }
- return request({
- 'url': '/zdsz/enginMaterialQuality/getEnginMaterialQualityList',
- 'method': 'get',
- 'data': data
- })
- }
- // 新增拆旧管
- export function addTearOldPipe(param) {
- return request({
- 'url': '/zdsz/engineeringCivil',
- 'method': 'post',
- 'data': param
- })
- }
- // 获取小区字典值
- export function getAreaList(district) {
- const data = {
- district
- }
- return request({
- 'url': '/zdsz/area/getAreaList',
- 'method': 'get',
- 'data': data
- })
- }
- // 获取楼宇字典值
- export function getBuildingList(areaId) {
- const data = {
- areaId
- }
- return request({
- 'url': '/zdsz/building/getBuildingList',
- 'method': 'get',
- 'data': data
- })
- }
- // 获取单元字典值
- export function getUnitList(buildingId) {
- const data = {
- buildingId
- }
- return request({
- 'url': '/zdsz/unit/getUnitList',
- 'method': 'get',
- 'data': data
- })
- }
- // 获取房间字典值
- export function getHousesList(unitId) {
- const data = {
- unitId
- }
- return request({
- 'url': '/zdsz/house/getHousesList',
- 'method': 'get',
- 'data': data
- })
- }
|