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,
level: 1,
undoneStauts: 'undone',
orgId: this.currentLevelData.orgId,
orgLevel: this.currentLevelData.orgLevel,
pageNo: this.queryParams.pageNo
}).then(res => {
this.loading = false

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

@ -305,7 +305,7 @@
<div class="item-per">
<span>较上一年</span>
<img
v-if="item.isTop"
v-if="item.growth > 0"
src="~@/assets/images/shuju/renfang/index/up.png"
/>
<img
@ -757,7 +757,7 @@ export default {
(100 * item.categoryCount) / data.resiCount
),
// per: item.change_ratio,
growth: item.change_ratio,
growth: 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">
<el-form :model="queryParams" inline>
<el-date-picker
v-model="queryParams.month"
v-model="queryParams.period"
:append-to-body="false"
placeholder="按月度"
popper-class="date-current-weiyi"
@ -88,7 +88,7 @@ export default {
data() {
return {
queryParams: {
month: "",
period: "",
agencyId: "",
pageNo: 1,
pageSize: 10,

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

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

Loading…
Cancel
Save