|
@@ -59,7 +59,16 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="积分" prop="base_point" sortable="custom">
|
|
<el-table-column label="积分" prop="base_point" sortable="custom">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span class="red">+{{ scope.row.point_config.base_point }} {{ scope.row.pt_name }}</span>
|
|
|
|
|
|
+ <span class="red">
|
|
|
|
+ {{ scope.row.point_config.base_point }} {{ scope.row.pt_name }}
|
|
|
|
+ </span>
|
|
|
|
+
|
|
|
|
+<!-- <span class="red" v-if="scope.row.point_config.review_point!=0">
|
|
|
|
+ +{{ scope.row.point_config.review_point }} {{ scope.row.pt_name }}
|
|
|
|
+ </span>
|
|
|
|
+ <span class="red" v-else>
|
|
|
|
+ +{{ scope.row.point_config.base_point }} {{ scope.row.pt_name }}
|
|
|
|
+ </span> -->
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="截止时间" prop="expire_time" sortable="custom"></el-table-column>
|
|
<el-table-column label="截止时间" prop="expire_time" sortable="custom"></el-table-column>
|
|
@@ -115,6 +124,7 @@
|
|
import noData from '@/components/noData';
|
|
import noData from '@/components/noData';
|
|
import examinePopup from '@/components/examinePopup.vue';
|
|
import examinePopup from '@/components/examinePopup.vue';
|
|
import taskDetailsPopup from '@/views/common/below/taskDetailsPopup'
|
|
import taskDetailsPopup from '@/views/common/below/taskDetailsPopup'
|
|
|
|
+import {_debounce} from '@/api/auth';
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'my_task',
|
|
name: 'my_task',
|
|
@@ -155,6 +165,13 @@ export default {
|
|
},
|
|
},
|
|
components: { taskDetailsPopup, noData,examinePopup },
|
|
components: { taskDetailsPopup, noData,examinePopup },
|
|
watch: {
|
|
watch: {
|
|
|
|
+ 'formData.content': {
|
|
|
|
+ deep: true,
|
|
|
|
+ handler: _debounce(function(val) {
|
|
|
|
+ this.formData.page = 1;
|
|
|
|
+ this.get_list();
|
|
|
|
+ },1000)
|
|
|
|
+ },
|
|
'formData.pt_id'(val) {
|
|
'formData.pt_id'(val) {
|
|
this.formData.page = 1;
|
|
this.formData.page = 1;
|
|
this.get_list();
|
|
this.get_list();
|