| 
														
															@@ -14,6 +14,7 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     concernedMajors, 
														 | 
														
														 | 
														
															     concernedMajors, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     removeConcernedMajor, 
														 | 
														
														 | 
														
															     removeConcernedMajor, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   } from "@/api/webApi/career-other"; 
														 | 
														
														 | 
														
															   } from "@/api/webApi/career-other"; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+  import { formatDate } from '@/utils' 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															   export default { 
														 | 
														
														 | 
														
															   export default { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     data() { 
														 | 
														
														 | 
														
															     data() { 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -31,6 +32,9 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           type: { 
														 | 
														
														 | 
														
															           type: { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             label: "专业类型" 
														 | 
														
														 | 
														
															             label: "专业类型" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           }, 
														 | 
														
														 | 
														
															           }, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+          createTime: { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            label: "收藏时间" 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+          }, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           actions: { 
														 | 
														
														 | 
														
															           actions: { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             label: "操作", 
														 | 
														
														 | 
														
															             label: "操作", 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             slot: "column-delete", 
														 | 
														
														 | 
														
															             slot: "column-delete", 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -52,7 +56,10 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         concernedMajors(this.queryParams).then((res) => { 
														 | 
														
														 | 
														
															         concernedMajors(this.queryParams).then((res) => { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           console.log("concernedMajors res", res); 
														 | 
														
														 | 
														
															           console.log("concernedMajors res", res); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           if (res.code == 200 || res.code == 0) { 
														 | 
														
														 | 
														
															           if (res.code == 200 || res.code == 0) { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-            this.dataList = res.rows; 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            this.dataList = res.rows.map(item => { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              item.createTime = formatDate(item.createTime) 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              return item 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            }); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             this.total = res.total; 
														 | 
														
														 | 
														
															             this.total = res.total; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           } else { 
														 | 
														
														 | 
														
															           } else { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             this.msgError(res.msg || "concernedMajors 请求异常"); 
														 | 
														
														 | 
														
															             this.msgError(res.msg || "concernedMajors 请求异常"); 
														 |