| 
														
															@@ -81,21 +81,21 @@ export default { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       const options = this.generation.options 
														 | 
														
														 | 
														
															       const options = this.generation.options 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       if (!options || !this.generation.active) return {} 
														 | 
														
														 | 
														
															       if (!options || !this.generation.active) return {} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       const dynamicColumns = {} 
														 | 
														
														 | 
														
															       const dynamicColumns = {} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      this.generation.activeModels.forEach(model => { 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        if (model.generation != this.generation.active) return // 暂只执行一步 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        const resolverKey = model.option.key + 'AIResolver' 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        const resolver = this[resolverKey] 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        if (typeof resolver === 'function') { 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-          const genColumns = resolver(model, this.generation.activeModel, dynamicColumns) 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-          Object.assign(dynamicColumns, genColumns) 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        } 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      }) 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      const model = this.generation.activeModel 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      const resolverKey = model.option.key + 'AIResolver' 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      const resolver = this[resolverKey] 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      if (typeof resolver === 'function') { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+        const genColumns = resolver(model, model, dynamicColumns) 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+        Object.assign(dynamicColumns, genColumns) 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      } 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       return dynamicColumns 
														 | 
														
														 | 
														
															       return dynamicColumns 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     }, 
														 | 
														
														 | 
														
															     }, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     formatCols() { 
														 | 
														
														 | 
														
															     formatCols() { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      const _ = this.resolveDynamicTable // Note: force execute! 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       return { 
														 | 
														
														 | 
														
															       return { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         ...this.resolveTablePrefix, 
														 | 
														
														 | 
														
															         ...this.resolveTablePrefix, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        ...this.resolveDynamicTable, 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         ...this.resolveDynamicAITable, 
														 | 
														
														 | 
														
															         ...this.resolveDynamicAITable, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         ...this.resolveTableSuffix 
														 | 
														
														 | 
														
															         ...this.resolveTableSuffix 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       } 
														 | 
														
														 | 
														
															       } 
														 |