You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
				
					
						
						
							|  | // 成长档案相关接口 | 
						
						
							|  |  | 
						
						
							|  | const api = { | 
						
						
							|  | 	// 成长档案-查询成长档案列表 | 
						
						
							|  | 	queryExperienceList: { | 
						
						
							|  | 		url: '/experience/queryExperienceList', | 
						
						
							|  | 		method: 'GET', | 
						
						
							|  | 	}, | 
						
						
							|  | 	// 成长档案-查询成长档案详情 | 
						
						
							|  | 	queryExperienceById: { | 
						
						
							|  | 		url: '/experience/queryExperienceById', | 
						
						
							|  | 		method: 'GET', | 
						
						
							|  | 	}, | 
						
						
							|  | 	// 成长档案-新增成长档案 | 
						
						
							|  | 	addExperience: { | 
						
						
							|  | 		url: '/experience/addExperience', | 
						
						
							|  | 		method: 'POST', | 
						
						
							|  | 		auth: true,  | 
						
						
							|  | 		limit : 500, | 
						
						
							|  | 		showLoading : true, | 
						
						
							|  | 	}, | 
						
						
							|  | } | 
						
						
							|  | 
 | 
						
						
							|  | export default api
 |