|  | @@ -55,8 +55,8 @@
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="积分" prop="point_config.base_point" width="100px">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  | -              <span v-if="scope.row.point_config?scope.row.point_config.base_point >= 0 && scope.row.status == 2 :false">+ {{scope.row.point_config.base_point}}</span>
 | 
	
		
			
				|  |  | -              <span v-else>{{scope.row.point_config?scope.row.point_config.base_point:''}}</span>
 | 
	
		
			
				|  |  | +		      <span v-if="scope.row.point_config.review_point>0" class="red">+{{scope.row.point_config.review_point}} {{scope.row.pt_name}}</span>
 | 
	
		
			
				|  |  | +			  <span v-else class="red">+{{scope.row.point_config.base_point}} {{scope.row.pt_name}}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="截止时间" prop="expire_time">
 | 
	
	
		
			
				|  | @@ -66,7 +66,11 @@
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="状态" prop="owner_id" width="100px">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  | -              <span :class="scope.row.status == 1?'yellow':scope.row.status == 2?'green':scope.row.status == 3?'color_3':scope.row.status == 4?'color_4':scope.row.status == 5?'color_5':''">{{scope.row.status == 1?'进行中':scope.row.status == 2?'已完成':scope.row.status == 3?'已退回':scope.row.status == 4?'已审批':scope.row.status == 5?'已撤销':''}}</span>
 | 
	
		
			
				|  |  | +              <span class="yellow" v-if="scope.row.status==1">进行中</span>
 | 
	
		
			
				|  |  | +              <span class="green" v-else-if="scope.row.status==2">已完成</span>
 | 
	
		
			
				|  |  | +              <span class="red" v-else-if="scope.row.status==3">退回</span>
 | 
	
		
			
				|  |  | +              <span class="green" v-else-if="scope.row.status==4">已审批</span>
 | 
	
		
			
				|  |  | +              <span class="textBox" v-else>已撤回</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -105,8 +109,7 @@
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="积分" prop="base_point" width="100px">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  | -              <span v-if="scope.row.status == 3 && scope.row.base_point >= 0">+ {{scope.row.base_point}}</span>
 | 
	
		
			
				|  |  | -              <span v-else>{{scope.row.base_point}}</span>
 | 
	
		
			
				|  |  | +		      <span v-if="scope.row.base_point>0" class="red">+{{scope.row.base_point}} {{scope.row.pt_name}}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="截止时间" prop="expire_time">
 | 
	
	
		
			
				|  | @@ -116,11 +119,11 @@
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="状态" prop="owner_id" width="100px">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  | -              <span class="color_3" v-show="scope.row.status == -1">已过期</span>
 | 
	
		
			
				|  |  | -              <span class="color_yelllo" v-show="scope.row.status == 1">待领取</span>
 | 
	
		
			
				|  |  | -              <span class="color_yelllo2"  v-show="scope.row.status == 2">待处理</span>
 | 
	
		
			
				|  |  | -              <span class="green" v-show="scope.row.status == 3">已完成</span>
 | 
	
		
			
				|  |  | -              <span class="color_5" v-show="scope.row.status == 4">已撤回</span>
 | 
	
		
			
				|  |  | +				<span class="yellow" v-if="scope.row.status==1">待领取</span>
 | 
	
		
			
				|  |  | +				<span class="yellow" v-else-if="scope.row.status==2">进行中</span>
 | 
	
		
			
				|  |  | +				<span class="green" v-else-if="scope.row.status==3">已完成</span>
 | 
	
		
			
				|  |  | +				<span class="fontColorZ" v-else-if="scope.row.status==4">已撤回</span>
 | 
	
		
			
				|  |  | +				<span class="red" v-else>已过期</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -159,7 +162,7 @@
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="任务积分" prop="point_config.base_point">
 | 
	
		
			
				|  |  |              <template slot-scope="scope">
 | 
	
		
			
				|  |  | -              <span>{{scope.row.point_config.base_point}}</span>
 | 
	
		
			
				|  |  | +				<span class="red">+{{scope.row.point_config.base_point}} {{$getTypsName(scope.row.pt_id)}}</span>
 | 
	
		
			
				|  |  |              </template>
 | 
	
		
			
				|  |  |            </el-table-column>
 | 
	
		
			
				|  |  |            <el-table-column label="重复周期" prop="task_cycle">
 |