index.js 302 Bytes
//获取通知分页API
const getNotifyApi = (params = {}) => {
	return uni.$u.http.get("/yt/notice_user/page", params)
};

//获取通知详情API
const byNotifyIdGetDetailApi = (id) => {
	return uni.$u.http
		.get(`/yt/notice_user/${id}`)
}

export default {
	getNotifyApi,
	byNotifyIdGetDetailApi
}