|                                   |  | 
// 个人中心相关接口
const api = {	// 修改个人信息接口
	updateInfo: {		url: '/userInfo/updateUser',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},	// 获取个人信息
	getInfo: {		url: '/userInfo/queryUser',		method: 'GET',		auth: true,	},	// 咨询客服-常见问题列表
	queryFaqList: {		url: '/userInfo/queryFaqList',		method: 'GET',	},	// 我的-意见反馈
	addFeedback: {		url: '/userInfo/addFeedback',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},}
export default api
 |