|  | @@ -19,7 +19,12 @@
 | 
	
		
			
				|  |  |          <el-form-item>
 | 
	
		
			
				|  |  |            <el-button type="danger" native-type="seach">搜索</el-button>
 | 
	
		
			
				|  |  |            <!-- <el-button native-type="reset" type="primary">重置</el-button> -->
 | 
	
		
			
				|  |  | -          <el-button @click="exporOrPreList" type="primary" v-permission="'studentRegistration/registerOrPreListExport'">导出</el-button>
 | 
	
		
			
				|  |  | +          <el-button
 | 
	
		
			
				|  |  | +            @click="exporOrPreList"
 | 
	
		
			
				|  |  | +            type="primary"
 | 
	
		
			
				|  |  | +            v-permission="'studentRegistration/registerOrPreListExport'"
 | 
	
		
			
				|  |  | +            >导出</el-button
 | 
	
		
			
				|  |  | +          >
 | 
	
		
			
				|  |  |          </el-form-item>
 | 
	
		
			
				|  |  |        </save-form>
 | 
	
		
			
				|  |  |        <div class="tableWrap">
 | 
	
	
		
			
				|  | @@ -55,7 +60,7 @@
 | 
	
		
			
				|  |  |                </div>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  | -          <el-table-column align="center" label="预报名时间差" >
 | 
	
		
			
				|  |  | +          <el-table-column align="center" label="预报名时间差">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  |                {{ scope.row.perRegIntervalStr }}
 | 
	
		
			
				|  |  |              </template>
 | 
	
	
		
			
				|  | @@ -101,7 +106,7 @@ import pagination from "@/components/Pagination/index";
 | 
	
		
			
				|  |  |  import { getRegisterOrPreList } from "../api";
 | 
	
		
			
				|  |  |  import cleandeep from "clean-deep";
 | 
	
		
			
				|  |  |  import moment from "moment";
 | 
	
		
			
				|  |  | -import{Export}  from "@/utils/downLoadFile";
 | 
	
		
			
				|  |  | +import { Export } from "@/utils/downLoadFile";
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  export default {
 | 
	
		
			
				|  |  |    name: "forecastName",
 | 
	
	
		
			
				|  | @@ -178,18 +183,20 @@ export default {
 | 
	
		
			
				|  |  |          return "--";
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  | -    exporOrPreList(){
 | 
	
		
			
				|  |  | -       let params = this.searchForm;
 | 
	
		
			
				|  |  | +    exporOrPreList() {
 | 
	
		
			
				|  |  | +      let params = this.searchForm;
 | 
	
		
			
				|  |  |        Export(
 | 
	
		
			
				|  |  |          this,
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            method: "get",
 | 
	
		
			
				|  |  |            url: "/api-web/studentRegistration/registerOrPreListExport",
 | 
	
		
			
				|  |  | -          params:{...params, musicGroupId: this.musicGroupId,}
 | 
	
		
			
				|  |  | +          params: { ...params, musicGroupId: this.musicGroupId },
 | 
	
		
			
				|  |  | +          fileName: "时间数据统计.xls",
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          "是否导出时间数据统计?"
 | 
	
		
			
				|  |  |        );
 | 
	
		
			
				|  |  | -    }
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |  };
 | 
	
		
			
				|  |  |  </script>
 |