Browse Source

【安宁pc端 用户数据分析】-【党员排行(新) - 所属网格bug修改】魏凯 2020-10-26

updateDept
weikai 5 years ago
parent
commit
81944f0e9b
  1. 16
      src/views/modules/analysis/user/metauserpartyrank.vue

16
src/views/modules/analysis/user/metauserpartyrank.vue

@ -132,6 +132,22 @@ export default {
this.dataForm.streetId = '' this.dataForm.streetId = ''
} }
} }
},
created: function () {
this.getOptions()
},
methods: {
getOptions () {
this.$http
.get(`/sys/user/deptOptions/getByLoginUser`)
.then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.msg)
}
this.options = res.data.options
})
.catch(() => {})
}
} }
} }
</script> </script>

Loading…
Cancel
Save