import request from '@/utils/request' import { getCommunityId } from '@/api/community/communityApi' // 获取投诉类型列表 export function listComplaintTypes(params) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/complaintType.listComplaintType', method: 'get', params: { ...params, communityId } }).then(response => { const res = response.data resolve(res) }).catch(error => { reject(error) }) }) } // 保存投诉信息 export function saveComplaint(data) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/complaint.saveComplaint', method: 'post', data: { ...data, communityId } }).then(response => { const res = response.data if (res.code === 0) { resolve(res) } else { reject(new Error(res.msg)) } }).catch(error => { reject(error) }) }) } // 查询房间信息 export function queryRooms(params) { return new Promise((resolve, reject) => { const communityId = getCommunityId() request({ url: '/room.queryRooms', method: 'get', params: { ...params, communityId } }).then(response => { const res = response.data resolve(res) }).catch(error => { reject(error) }) }) }