浏览代码

宅基地调查

wulanhaote
yujk 3 年前
父节点
当前提交
ca8a6a20af
共有 1 个文件被更改,包括 3 次插入5 次删除
  1. +3
    -5
      src/views/homesteadSurvey/index.vue

+ 3
- 5
src/views/homesteadSurvey/index.vue 查看文件

@@ -330,15 +330,14 @@
this.$cookies.set("item",JSON.stringify(item));
},
getList() {
this.totalList = []
this.doneList = [];
this.todoList = [];
listTask(this.queryParams).then(response => {
this.total = response.total
this.totalList = []
this.done = 0;
this.doneList = [];
this.todo = 0;
this.todoList = [];
response.rows.map(res => {
console.log(res.reportNhNumber)
if(res.taskStatus == "FINISHED"){
this.done+=1
this.doneList.push(res);
@@ -346,7 +345,6 @@
this.todo+=1
this.todoList.push(res);
}
/*this.totalList.push(res);*/
if(res.taskExecutor!=null&&res.taskExecutor!=''){
res.taskExecutor = res.taskExecutor.split(',')
}


正在加载...
取消
保存