|
@ -161,17 +161,17 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="总人数" width="105" align="center"> |
|
|
<el-table-column label="总人数" width="105" align="center"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span style="color:#006fd6">{{scope.row.total}}</span> |
|
|
<span style="color:#006fd6" @click="handelClickToResi(scope.row)">{{scope.row.total}}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="分类信息不完整数" align="center" :show-overflow-tooltip="true"> |
|
|
<el-table-column label="分类信息不完整数" align="center" :show-overflow-tooltip="true"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span style="color:#ff1200;cursor: pointer;" @click="handelCLickJump(scope.row)">{{scope.row.nonIntegratedNum}}</span> |
|
|
<span style="color:#ff1200;cursor: pointer;" @click="handelCLickJump(scope.row,'nonIntegrity')">{{scope.row.nonIntegratedNum}}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="更新负责人" :show-overflow-tooltip="true" align="center" v-if="showAll"> |
|
|
<el-table-column label="更新负责人" :show-overflow-tooltip="true" align="center" v-if="showAll"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span style="color:#ff1200;">{{scope.row.userName}}</span> |
|
|
<span style="color:#989898;">{{scope.row.userName}}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="更新周期" align="center" width="105"> |
|
|
<el-table-column label="更新周期" align="center" width="105"> |
|
@ -181,7 +181,7 @@ |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column label="更新人数" align="center" width="105"> |
|
|
<el-table-column label="更新人数" align="center" width="105"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
<span style="color:#006fd6;">{{scope.row.updateResiNum}}</span><span style="color:#989898;">({{scope.row.updatePeriodName?scope.row.updatePeriodName:'--'}})</span> |
|
|
<span style="color:#006fd6;" @click="handelCLickJump(scope.row,'updateResiList')">{{scope.row.updateResiNum}}</span><span style="color:#989898;">({{scope.row.updatePeriodName?scope.row.updatePeriodName:'--'}})</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
@ -590,11 +590,20 @@ export default { |
|
|
this.$message.error(msg); |
|
|
this.$message.error(msg); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
handelCLickJump(e){ |
|
|
handelClickToResi(e){ |
|
|
|
|
|
this.$router.push({ |
|
|
|
|
|
name: "base-resi", |
|
|
|
|
|
params: { |
|
|
|
|
|
category: e.residentCategory, |
|
|
|
|
|
}, |
|
|
|
|
|
}); |
|
|
|
|
|
}, |
|
|
|
|
|
handelCLickJump(e,type){ |
|
|
this.$router.push({ |
|
|
this.$router.push({ |
|
|
path: "/main/base-nonIntResi", |
|
|
path: "/main/base-nonIntResi", |
|
|
query: { |
|
|
query: { |
|
|
resiCategory: e.residentCategory, |
|
|
resiCategory: e.residentCategory, |
|
|
|
|
|
type:type |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|