wl
2022-07-21 9b3de9ec4980c4b4acc8093a6e86dc14bc73292b
src/api/common.js
@@ -16,4 +16,19 @@
            fileName: val
        }
    })
}
}
export function report(params) {
    return request({
        url: '/report',
        method: 'post',
        data: params
    })
}
export function getReportById(id) {
    return request({
        url: `/report/${id}`,
        method: 'get',
    })
}