export const getLoginUrl = () => { return `/wxLogin`; }; export const getLogoutUrl = () => { return `/logout`; }; // 巡查上报 export const postReport = () => { return `/report`; }; // 获取上报列表 export const getReportList = () => { return `/report/list`; }; // 获取上报详情 export const getReportDetail = id => { return `/report/${id}/detail`; }; // 删除上报 export const delReport = id => { return `/report/${id}`; }; // 修改密码 export const putPassword = id => { return `/department/user/${id}/password`; }; // 获取道路路段 export const getRoadSection = () => { return `/road/section`; }; //行业查询 export const getIndustryUrl = () => { return `/elec/business/industry` }