| 
						
						
							
								
							
						
						
					 | 
					@ -64,6 +64,7 @@ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         align="center" | 
					 | 
					 | 
					                         align="center" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         :fixed="item.columnName == 'NAME' ? 'left' : false" | 
					 | 
					 | 
					                         :fixed="item.columnName == 'NAME' ? 'left' : false" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         :show-overflow-tooltip="true" | 
					 | 
					 | 
					                         :show-overflow-tooltip="true" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					                         :width="item.width || computedWidth(item.label, item.itemType)" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         > | 
					 | 
					 | 
					                         > | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         <!-- :width="item.itemType === 'radio' ? computedWidth(item.label) : 180" --> | 
					 | 
					 | 
					                         <!-- :width="item.itemType === 'radio' ? computedWidth(item.label) : 180" --> | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					          <template slot-scope="scope"> | 
					 | 
					 | 
					          <template slot-scope="scope"> | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					@ -96,7 +97,7 @@ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					              <el-button @click="handleEdit(scope.row)" | 
					 | 
					 | 
					              <el-button @click="handleEdit(scope.row)" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         type="text" | 
					 | 
					 | 
					                         type="text" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                         size="small" | 
					 | 
					 | 
					                         size="small" | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					                         class="div-table-button--edit">编辑</el-button> | 
					 | 
					 | 
					                         class="div-table-button--edit">修改</el-button> | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					              <el-popconfirm title="删除之后无法回复,确认删除?" | 
					 | 
					 | 
					              <el-popconfirm title="删除之后无法回复,确认删除?" | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                             @onConfirm="handleDel(scope.row)"> | 
					 | 
					 | 
					                             @onConfirm="handleDel(scope.row)"> | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					                <!-- <el-button slot="reference" | 
					 | 
					 | 
					                <!-- <el-button slot="reference" | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					@ -390,8 +391,12 @@ export default { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      this.tranferShow = false | 
					 | 
					 | 
					      this.tranferShow = false | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      this.getTableData() | 
					 | 
					 | 
					      this.getTableData() | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    }, | 
					 | 
					 | 
					    }, | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					    computedWidth (label) { | 
					 | 
					 | 
					    computedWidth (label, type) { | 
				
			
			
				
				
			
		
	
		
		
			
				
					
					 | 
					 | 
					      const wd = 20 * label.length | 
					 | 
					 | 
					       | 
				
			
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      let wd = '' | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      if (type == 'input' || type == 'select') wd = 40 * label.length | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      else if(type == 'radio') wd = 20 * label.length | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					      console.log('type-----wd', wd) | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      return wd > 80 ? wd : 80 | 
					 | 
					 | 
					      return wd > 80 ? wd : 80 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    }, | 
					 | 
					 | 
					    }, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    filterEdit (id) { | 
					 | 
					 | 
					    filterEdit (id) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  |