|  | @@ -8,6 +8,7 @@
 | 
	
		
			
				|  |  |          :class="{ active: currentTab2 === index }"
 | 
	
		
			
				|  |  |          @click="selectTab2(index)"
 | 
	
		
			
				|  |  |        >
 | 
	
		
			
				|  |  | +         <img :src="tab.imgSrc" style="width: 22px;"/>
 | 
	
		
			
				|  |  |          {{ tab.name }}
 | 
	
		
			
				|  |  |        </li>
 | 
	
		
			
				|  |  |      </ul>
 | 
	
	
		
			
				|  | @@ -219,6 +220,11 @@ import cloudChart from "../threejsView/index.vue" // 云图
 | 
	
		
			
				|  |  |  import { request, uploadFile } from "@/utils/request"
 | 
	
		
			
				|  |  |  import emitter from "@/utils/emitter"
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import meshFile from "@/assets/img/meshFile.png";
 | 
	
		
			
				|  |  | +import jiegoucanshu from "@/assets/img/jiegoucanshu.png";
 | 
	
		
			
				|  |  | +import configParams from "@/assets/img/configParams.png";
 | 
	
		
			
				|  |  | +import analysisParams from "@/assets/img/analysisParams.png";
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  let fid = ref()
 | 
	
		
			
				|  |  |  let formLabelWidth1 = ref(170)
 | 
	
		
			
				|  |  |  let formLabelWidth120 = ref(120)
 | 
	
	
		
			
				|  | @@ -230,10 +236,10 @@ let wid = ref();
 | 
	
		
			
				|  |  |  let tacsid = ref();
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  let tabslist2= ref([
 | 
	
		
			
				|  |  | -  { id: '0', name: '网格文件' },
 | 
	
		
			
				|  |  | -  { id: '1', name: '结构参数' },
 | 
	
		
			
				|  |  | -  { id: '2', name: '设置参数' },
 | 
	
		
			
				|  |  | -  { id: '3', name: '分析参数' },
 | 
	
		
			
				|  |  | +  { id: '0', name: '网格文件' ,imgSrc:meshFile},
 | 
	
		
			
				|  |  | +  { id: '1', name: '结构参数' ,imgSrc:jiegoucanshu},
 | 
	
		
			
				|  |  | +  { id: '2', name: '设置参数' ,imgSrc:configParams},
 | 
	
		
			
				|  |  | +  { id: '3', name: '分析参数' ,imgSrc:analysisParams},
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  ])
 | 
	
		
			
				|  |  |  
 |