|  | @@ -19,7 +19,7 @@
 | 
	
		
			
				|  |  |             >
 | 
	
		
			
				|  |  |          </el-date-picker>
 | 
	
		
			
				|  |  |        </el-form-item>
 | 
	
		
			
				|  |  | -        
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          <el-form-item>
 | 
	
		
			
				|  |  |            <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
 | 
	
		
			
				|  |  |            <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
 | 
	
	
		
			
				|  | @@ -41,7 +41,7 @@
 | 
	
		
			
				|  |  |          <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
 | 
	
		
			
				|  |  |          <template slot-scope="scope">
 | 
	
		
			
				|  |  |            <el-button
 | 
	
		
			
				|  |  | -           
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |              size="mini"
 | 
	
		
			
				|  |  |              type="text"
 | 
	
		
			
				|  |  |              @click="handleShow(scope.row)"
 | 
	
	
		
			
				|  | @@ -72,9 +72,9 @@
 | 
	
		
			
				|  |  |        </el-dialog>
 | 
	
		
			
				|  |  |      </div>
 | 
	
		
			
				|  |  |    </template>
 | 
	
		
			
				|  |  | -  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |    <script>
 | 
	
		
			
				|  |  | -  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |    import { listCustomerAssign,   cancelCustomerAssign } from "@/api/crm/customerAssign";
 | 
	
		
			
				|  |  |    import { getCustomerListByIds } from "@/api/crm/customer";
 | 
	
		
			
				|  |  |    export default {
 | 
	
	
		
			
				|  | @@ -115,7 +115,7 @@
 | 
	
		
			
				|  |  |            sysUserId: null,
 | 
	
		
			
				|  |  |            assignType: null,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | -        
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |        };
 | 
	
		
			
				|  |  |      },
 | 
	
		
			
				|  |  |      created() {
 | 
	
	
		
			
				|  | @@ -143,7 +143,7 @@
 | 
	
		
			
				|  |  |              this.loading = false;
 | 
	
		
			
				|  |  |              });
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | -         
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          /** 搜索按钮操作 */
 | 
	
		
			
				|  |  |          handleQuery() {
 | 
	
		
			
				|  |  |              this.queryParams.pageNum = 1;
 | 
	
	
		
			
				|  | @@ -151,8 +151,9 @@
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          /** 重置按钮操作 */
 | 
	
		
			
				|  |  |          resetQuery() {
 | 
	
		
			
				|  |  | -            this.resetForm("queryForm");
 | 
	
		
			
				|  |  | -            this.handleQuery();
 | 
	
		
			
				|  |  | +          this.dateRange = [];
 | 
	
		
			
				|  |  | +          this.resetForm("queryForm");
 | 
	
		
			
				|  |  | +          this.handleQuery();
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          // 多选框选中数据
 | 
	
		
			
				|  |  |          handleSelectionChange(selection) {
 | 
	
	
		
			
				|  | @@ -173,8 +174,7 @@
 | 
	
		
			
				|  |  |                  this.msgSuccess("操作成功");
 | 
	
		
			
				|  |  |              }).catch(function() {});
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | -         
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |    };
 | 
	
		
			
				|  |  |    </script>
 | 
	
		
			
				|  |  | -  
 |