|  | @@ -95,7 +95,7 @@
 | 
	
		
			
				|  |  |  					</el-table-column>
 | 
	
		
			
				|  |  |  					<el-table-column prop="source_type" label="来源" align="left" min-width="140px">
 | 
	
		
			
				|  |  |  						<template slot-scope="scope">
 | 
	
		
			
				|  |  | -							<span v-show="scope.row.source_type == 1">积分录入 <span v-if="scope.row.employee_name">({{scope.row.recorder_name}})</span></span>
 | 
	
		
			
				|  |  | +							<span v-show="scope.row.source_type == 1">积分奖扣 <span v-if="scope.row.employee_name">({{scope.row.recorder_name}})</span></span>
 | 
	
		
			
				|  |  |  							<span v-show="scope.row.source_type == 2">任务</span>
 | 
	
		
			
				|  |  |  							<span v-show="scope.row.source_type == 3">积分系统分配</span>
 | 
	
		
			
				|  |  |  							<span v-show="scope.row.source_type == 4">考勤系统分配</span>
 | 
	
	
		
			
				|  | @@ -107,7 +107,7 @@
 | 
	
		
			
				|  |  |  							<span v-show="scope.row.source_type > 10">其他</span>
 | 
	
		
			
				|  |  |  						</template>
 | 
	
		
			
				|  |  |  					</el-table-column>
 | 
	
		
			
				|  |  | -					<el-table-column prop="create_time" label="录入时间" align="left" width="120px">
 | 
	
		
			
				|  |  | +					<el-table-column prop="create_time" label="录入时间" align="left" width="140px">
 | 
	
		
			
				|  |  |  						<template slot-scope="scope">
 | 
	
		
			
				|  |  |  							<!-- {{ cuttString(scope.row.create_time) }} -->
 | 
	
		
			
				|  |  |  							{{ scope.row.create_time }}
 | 
	
	
		
			
				|  | @@ -161,7 +161,7 @@
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  				<el-row v-show="detail_info.source_type_mark">
 | 
	
		
			
				|  |  |  					<el-col :span="6">来源类型</el-col>
 | 
	
		
			
				|  |  | -					<el-col :span="18">{{ detail_info.event_type_mark }}</el-col>
 | 
	
		
			
				|  |  | +					<el-col :span="18">{{ detail_info.source_type_mark }}</el-col>
 | 
	
		
			
				|  |  |  				</el-row>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  				<el-row v-show="!detail_info.rule_id">
 | 
	
	
		
			
				|  | @@ -388,7 +388,7 @@ export default {
 | 
	
		
			
				|  |  |  			
 | 
	
		
			
				|  |  |  			source_type: [
 | 
	
		
			
				|  |  |  				{id: 0,name: '全部'},
 | 
	
		
			
				|  |  | -				{id: 1,name: '积分录入'},
 | 
	
		
			
				|  |  | +				{id: 1,name: '积分奖扣'},
 | 
	
		
			
				|  |  |  				{id: 2,name: '任务'},
 | 
	
		
			
				|  |  |  				{id: 3,name: '积分系统分配'},
 | 
	
		
			
				|  |  |  				{id: 4,name: '考勤系统分配'},
 | 
	
	
		
			
				|  | @@ -590,6 +590,7 @@ export default {
 | 
	
		
			
				|  |  |  					(this.formData.rule_id ? '&rule_id=' + this.formData.rule_id : '') +
 | 
	
		
			
				|  |  |  					(this.formData.pt_id ? '&pt_id=' + this.formData.pt_id : '') +
 | 
	
		
			
				|  |  |  					(this.formData.dept_ids ? '&dept_ids=' + this.formData.dept_ids : '') +
 | 
	
		
			
				|  |  | +					(this.formData.source_type ? '&source_type=' + this.formData.source_type : '') +
 | 
	
		
			
				|  |  |  					(this.formData.start_day ? '&start_day=' + this.formData.start_day : '') +
 | 
	
		
			
				|  |  |  					(this.formData.end_day ? '&end_day=' + this.formData.end_day : '') +
 | 
	
		
			
				|  |  |  					(this.formData.keyword ? '&keyword=' + this.formData.keyword : ''),
 |