const {
	http
} = uni.$u

export default {
	login: (params, config = {}) => http.post('/login', params, {
		custom: {
			catchError: true,
			showFailMessage: true
		}
	}),
	sayhello: (params = {}) => http.get("/sayb", params),
	
	// 查看预警信息
	selectBusinessRiskInfo: (params = {}) => http.post("/v1/businessData/selectBusinessRiskInfo", params)
}