import { $fytz } from '../index'; /** * 信访投诉及行政处罚相关API接口 */ export default { /** * 获取信访投诉信息 */ fetchComplaints(param) { return $fytz.post(`complaint/find`, param).then((res) => res.data); }, /** * 获取行政处罚信息 */ fetchPunishment(param) { return $fytz.post(`punishment/find`, param).then((res) => res.data); } };