We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 661e72b commit 2bfc9c3Copy full SHA for 2bfc9c3
src/views/mall/statistics/member/index.vue
@@ -267,6 +267,7 @@ const getMemberAreaStatisticsList = async () => {
267
const getMemberSexStatisticsList = async () => {
268
const list = await MemberStatisticsApi.getMemberSexStatisticsList()
269
const dictDataList = getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)
270
+ dictDataList.push({ label: '未知', value: null } as any)
271
sexChartOptions.series![0].data = dictDataList.map((dictData: DictDataType) => {
272
const userCount = list.find((item: MemberSexStatisticsRespVO) => item.sex === dictData.value)
273
?.userCount
0 commit comments