|  | @@ -156,13 +156,18 @@
 | 
	
		
			
				|  |  |                </template>
 | 
	
		
			
				|  |  |              </el-table-column>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -            <el-table-column
 | 
	
		
			
				|  |  | -              label="计划名称"
 | 
	
		
			
				|  |  | -              align="center"
 | 
	
		
			
				|  |  | -              prop="planName"
 | 
	
		
			
				|  |  | -            />
 | 
	
		
			
				|  |  | +            <el-table-column label="计划名称" align="center" prop="planName"/>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -            <el-table-column label="启用状态" align="center" key="enabled" prop="enabled">
 | 
	
		
			
				|  |  | +            <el-table-column label="对比时间" align="center" prop="compareTimeType">
 | 
	
		
			
				|  |  | +              <template slot-scope="scope">
 | 
	
		
			
				|  |  | +                {{ getCompareTimeLabel(scope.row.compareTimeType) }}
 | 
	
		
			
				|  |  | +              </template>
 | 
	
		
			
				|  |  | +            </el-table-column>
 | 
	
		
			
				|  |  | +            <el-table-column label="提醒时间" align="center" prop="reminderTime"/>
 | 
	
		
			
				|  |  | +            <el-table-column label="时间单位" align="center" prop="timeUnitText"/>
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +            <el-table-column label="启用状态" align="center" key="compareTimeType" prop="compareTimeType">
 | 
	
		
			
				|  |  |                <template slot-scope="scope">
 | 
	
		
			
				|  |  |                  <span>{{ scope.row.enabled ? '启用' : '停用' }}</span>
 | 
	
		
			
				|  |  |                </template>
 | 
	
	
		
			
				|  | @@ -517,6 +522,12 @@ export default {
 | 
	
		
			
				|  |  |          (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
 | 
	
		
			
				|  |  |        );
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | +    getCompareTimeLabel(compareTimeTypeValue) {
 | 
	
		
			
				|  |  | +      const option = this.compareTimeOptions.find(
 | 
	
		
			
				|  |  | +        (option) => option.value == compareTimeTypeValue
 | 
	
		
			
				|  |  | +      );
 | 
	
		
			
				|  |  | +      return option ? option.label : '未知类型'; // 如果未找到对应选项,返回默认提示
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      getDefaultOrg(org) {
 | 
	
		
			
				|  |  |        this.orgName = org.name;
 | 
	
		
			
				|  |  |      },
 |