Browse Source

修复潜在不满意人数、需求清单等bug

feature
duanliangtao 2 years ago
parent
commit
b9d97f8dd8
  1. 2
      src/views/dataBoard/overview/components/MapDialog/DemandList.vue
  2. 4
      src/views/dataBoard/renfang/index.vue
  3. 4
      src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue
  4. 1
      src/views/dataBoard/satisfactionEval/modules/PersonnelPortrait/index.vue

2
src/views/dataBoard/overview/components/MapDialog/DemandList.vue

@ -130,6 +130,8 @@ export default {
categoryCode: this.categoryCode, categoryCode: this.categoryCode,
level: 1, level: 1,
undoneStauts: 'undone', undoneStauts: 'undone',
orgId: this.currentLevelData.orgId,
orgLevel: this.currentLevelData.orgLevel,
pageNo: this.queryParams.pageNo pageNo: this.queryParams.pageNo
}).then(res => { }).then(res => {
this.loading = false this.loading = false

4
src/views/dataBoard/renfang/index.vue

@ -305,7 +305,7 @@
<div class="item-per"> <div class="item-per">
<span>较上一年</span> <span>较上一年</span>
<img <img
v-if="item.isTop" v-if="item.growth > 0"
src="~@/assets/images/shuju/renfang/index/up.png" src="~@/assets/images/shuju/renfang/index/up.png"
/> />
<img <img
@ -757,7 +757,7 @@ export default {
(100 * item.categoryCount) / data.resiCount (100 * item.categoryCount) / data.resiCount
), ),
// per: item.change_ratio, // per: item.change_ratio,
growth: item.change_ratio, growth: item.categoryCountNext - item.categoryCount,
growthAbs: Math.abs(item.categoryCountNext - item.categoryCount) growthAbs: Math.abs(item.categoryCountNext - item.categoryCount)
}; };
}); });

4
src/views/dataBoard/satisfactionEval/dissatisfieReason/index.vue

@ -4,7 +4,7 @@
<div class="screen"> <div class="screen">
<el-form :model="queryParams" inline> <el-form :model="queryParams" inline>
<el-date-picker <el-date-picker
v-model="queryParams.month" v-model="queryParams.period"
:append-to-body="false" :append-to-body="false"
placeholder="按月度" placeholder="按月度"
popper-class="date-current-weiyi" popper-class="date-current-weiyi"
@ -88,7 +88,7 @@ export default {
data() { data() {
return { return {
queryParams: { queryParams: {
month: "", period: "",
agencyId: "", agencyId: "",
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,

1
src/views/dataBoard/satisfactionEval/modules/PersonnelPortrait/index.vue

@ -171,6 +171,7 @@ export default {
this.gridName = data.gridName; this.gridName = data.gridName;
this.service = data.service; this.service = data.service;
this.monthIncomeLevel = data.monthIncomeLevel; this.monthIncomeLevel = data.monthIncomeLevel;
this.residentTagArray = [];
if(data.residentTagName){ if(data.residentTagName){
this.residentTagArray = data.residentTagName.split(","); this.residentTagArray = data.residentTagName.split(",");
} }

Loading…
Cancel
Save