diff --git a/src/views/modules/census/census-accountActiveList.vue b/src/views/modules/census/census-accountActiveList.vue
index 53800b18b..e3c8373b4 100644
--- a/src/views/modules/census/census-accountActiveList.vue
+++ b/src/views/modules/census/census-accountActiveList.vue
@@ -207,6 +207,11 @@ export default {
},
handleSearch(val) {
+ let tmp = this.formData.orgId;
+ if (!tmp && typeof tmp != 'undefined' && tmp != 0) {
+ this.formData.orgId = '';
+ this.formData.level = '';
+ }
console.log(this.formData);
this.pageNo = 1;
this.getTableData();
diff --git a/src/views/modules/census/census-accountList.vue b/src/views/modules/census/census-accountList.vue
index 309faf8cb..262bbc96f 100644
--- a/src/views/modules/census/census-accountList.vue
+++ b/src/views/modules/census/census-accountList.vue
@@ -271,6 +271,12 @@ export default {
},
methods: {
handleSearch(val) {
+ let tmp = this.formData.orgId;
+ if (!tmp && typeof tmp != 'undefined' && tmp != 0) {
+ this.formData.orgId = '';
+ this.formData.level = '';
+ }
+
this.getCountLevel();
this.getTableData();
this.getsubData();
diff --git a/src/views/modules/census/census-nineList.vue b/src/views/modules/census/census-nineList.vue
index aea5cb4f9..aa924ccaf 100644
--- a/src/views/modules/census/census-nineList.vue
+++ b/src/views/modules/census/census-nineList.vue
@@ -90,8 +90,8 @@
:height="maxTableHeight"
>
占比 : {d}%',
+ backgroundColor: 'rgb(134,134,134)',
+ borderColor: 'rgb(134,134,134)',
+ textStyle: {
+ color: '#fff'
+ }
+ },
color: this.color,
title: {
text: this.pieData.total,
diff --git a/src/views/modules/census/census-orgStatusList.vue b/src/views/modules/census/census-orgStatusList.vue
index 1733974a9..45561ded8 100644
--- a/src/views/modules/census/census-orgStatusList.vue
+++ b/src/views/modules/census/census-orgStatusList.vue
@@ -4,7 +4,7 @@