diff --git a/src/views/modules/census/census-accountActiveList.vue b/src/views/modules/census/census-accountActiveList.vue index 9fd7e6275..fb65f0104 100644 --- a/src/views/modules/census/census-accountActiveList.vue +++ b/src/views/modules/census/census-accountActiveList.vue @@ -215,7 +215,7 @@ export default { getOrgTreeList() { const { user } = this.$store.state; this.$http - .post('/gov/org/customeragency/agencygridtree', {}) + .post('gov/org/customeragency/agencylist', {}) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg); diff --git a/src/views/modules/census/census-accountList.vue b/src/views/modules/census/census-accountList.vue index ed4079392..ad0ff343f 100644 --- a/src/views/modules/census/census-accountList.vue +++ b/src/views/modules/census/census-accountList.vue @@ -346,7 +346,7 @@ export default { getOrgTreeList() { const { user } = this.$store.state; this.$http - .post('/gov/org/customeragency/agencygridtree', {}) + .post('gov/org/customeragency/agencylist', {}) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg); diff --git a/src/views/modules/census/census-houseList.vue b/src/views/modules/census/census-houseList.vue index 54966d5ef..b0904e8dd 100644 --- a/src/views/modules/census/census-houseList.vue +++ b/src/views/modules/census/census-houseList.vue @@ -334,7 +334,9 @@ export default { }, series: [ { - name: '', + radius: ['60%', '90%'], + center: ['50%', '50%'], + type: 'pie', label: { normal: { show: false @@ -355,13 +357,6 @@ export default { tooltip: { show: false }, - type: 'pie', - radius: ['30%', '70%'], - - label: { - show: false, - position: 'center' - }, itemStyle: { normal: { color: '#F7F7F7' @@ -370,9 +365,8 @@ export default { data: [1] }, { - name: '', type: 'pie', - radius: ['40%', '60%'], + radius: ['70%', '80%'], avoidLabelOverlap: false, label: { show: false, @@ -442,7 +436,7 @@ export default { getOrgTreeList() { const { user } = this.$store.state; this.$http - .post('/gov/org/customeragency/agencygridtree', {}) + .post('gov/org/customeragency/agencylist', {}) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg);