Browse Source

问题修改

V1.0
张若晨 2 years ago
parent
commit
3e13f92d60
  1. 1
      src/views/dataBoard/cpts/family/modules/BusinessRecords.vue
  2. 2
      src/views/dataBoard/cpts/family/modules/Family.vue
  3. 1
      src/views/dataBoard/cpts/personnel/modules/BusinessRecords.vue
  4. 2
      src/views/dataBoard/cpts/personnel/modules/Family.vue
  5. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/community.vue
  6. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/complaint.vue
  7. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/economize.vue
  8. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/give-service.vue
  9. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/reporting-events.vue
  10. 2
      src/views/dataBoard/cpts/personnel/modules/businessTables/resident.vue

1
src/views/dataBoard/cpts/family/modules/BusinessRecords.vue

@ -135,6 +135,7 @@ export default {
.business-records {
margin-top: 12px;
margin-bottom: 25px;
height: 392px;
}
.table {
/deep/ .el-table td,

2
src/views/dataBoard/cpts/family/modules/Family.vue

@ -65,7 +65,7 @@ export default {
)
.then(({ data: res }) => {
const data = res.data;
this.data = data.length > 12 ? data.slice(0, 11) : data;
this.data = data.length > 12 ? data.slice(0, 12) : data;
const arr = data.filter((item) => item.houseHolderRel == "本人");
this.hzData = arr.length > 0 ? arr[0] : {};
this.$emit("setJuminData", data);

1
src/views/dataBoard/cpts/personnel/modules/BusinessRecords.vue

@ -106,6 +106,7 @@ export default {
.business-records {
margin-top: 12px;
margin-bottom: 25px;
height: 392px;
}
.table {
/deep/ .el-table td,

2
src/views/dataBoard/cpts/personnel/modules/Family.vue

@ -89,7 +89,7 @@ export default {
.then(({ data: res }) => {
if (res.code == 0) {
const data = res.data;
this.data = data.length > 12 ? data.slice(0, 11) : data;
this.data = data.length > 12 ? data.slice(0, 12) : data;
const arr = data.filter((item) => item.houseHolderRel == "本人");
this.info = arr.length > 0 ? arr[0] : {};
}

2
src/views/dataBoard/cpts/personnel/modules/businessTables/community.vue

@ -12,7 +12,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

2
src/views/dataBoard/cpts/personnel/modules/businessTables/complaint.vue

@ -13,7 +13,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

2
src/views/dataBoard/cpts/personnel/modules/businessTables/economize.vue

@ -12,7 +12,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

2
src/views/dataBoard/cpts/personnel/modules/businessTables/give-service.vue

@ -12,7 +12,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

2
src/views/dataBoard/cpts/personnel/modules/businessTables/reporting-events.vue

@ -12,7 +12,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

2
src/views/dataBoard/cpts/personnel/modules/businessTables/resident.vue

@ -12,7 +12,7 @@
</template>
</el-table-column>
</el-table>
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 20px">
<div v-else style="width: 100%; height: 100%; text-align: center; padding-top: 120px">
<img width="268px" height="128px" src="~@/assets/images/overview/zanwu.png" />
<div style="color: #fff">暂无数据</div>
</div>

Loading…
Cancel
Save