|  | @@ -3,7 +3,7 @@
 | 
	
		
			
				|  |  |      <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
 | 
	
		
			
				|  |  |        <el-form-item label="订单号">
 | 
	
		
			
				|  |  |          <el-input
 | 
	
		
			
				|  |  | -          v-model="queryParams.orderId"
 | 
	
		
			
				|  |  | +          v-model="queryParams.id"
 | 
	
		
			
				|  |  |            placeholder="请输入订单号"
 | 
	
		
			
				|  |  |            clearable
 | 
	
		
			
				|  |  |            style="width: 240px;"
 | 
	
	
		
			
				|  | @@ -21,7 +21,7 @@
 | 
	
		
			
				|  |  |        </el-form-item>
 | 
	
		
			
				|  |  |        <el-form-item label="团队类型">
 | 
	
		
			
				|  |  |          <el-select
 | 
	
		
			
				|  |  | -        v-model="queryParams.teamType"
 | 
	
		
			
				|  |  | +        v-model="queryParams.teamTypeId"
 | 
	
		
			
				|  |  |          placeholder="团队类型"
 | 
	
		
			
				|  |  |          clearable
 | 
	
		
			
				|  |  |          style="width: 240px"
 | 
	
	
		
			
				|  | @@ -285,21 +285,21 @@ export default {
 | 
	
		
			
				|  |  |      handleQuery() {
 | 
	
		
			
				|  |  |        this.queryParams.pageNum = 1;
 | 
	
		
			
				|  |  |        if(this.queryParams.time){
 | 
	
		
			
				|  |  | -        this.queryParams.payBeginTime = this.queryParams.time[0];
 | 
	
		
			
				|  |  | -        this.queryParams.payEndTime = this.queryParams.time[1];
 | 
	
		
			
				|  |  | +        this.queryParams.beginTime = this.queryParams.time[0];
 | 
	
		
			
				|  |  | +        this.queryParams.endTime = this.queryParams.time[1];
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  |        this.getList();
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      /** 重置按钮操作 */
 | 
	
		
			
				|  |  |      resetQuery() {
 | 
	
		
			
				|  |  |        this.dateRange = [];
 | 
	
		
			
				|  |  | -      this.$set(this.queryParams, 'orderId', '');
 | 
	
		
			
				|  |  | +      this.$set(this.queryParams, 'id', '');
 | 
	
		
			
				|  |  |        this.$set(this.queryParams, 'status', '');
 | 
	
		
			
				|  |  | -      this.$set(this.queryParams, 'teamType', '');
 | 
	
		
			
				|  |  | +      this.$set(this.queryParams, 'teamTypeId', '');
 | 
	
		
			
				|  |  |        this.$set(this.queryParams, 'teamName', '');
 | 
	
		
			
				|  |  |        this.$set(this.queryParams, 'performName', '');
 | 
	
		
			
				|  |  | -      this.$set(this.queryParams, 'payBeginTime', '');
 | 
	
		
			
				|  |  | -      this.$set(this.queryParams, 'payEndTime', '');
 | 
	
		
			
				|  |  | +      this.$set(this.queryParams, 'beginTime', '');
 | 
	
		
			
				|  |  | +      this.$set(this.queryParams, 'endTime', '');
 | 
	
		
			
				|  |  |        this.$set(this.queryParams, 'time', '');
 | 
	
		
			
				|  |  |        this.queryParams.pageNum = 1;
 | 
	
		
			
				|  |  |        this.handleQuery();
 |