Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
saas-dml
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
saas-dml
Commits
e43210f0
提交
e43210f0
authored
4月 24, 2024
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: 用户分析新增标签
上级
b9f16523
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
115 行增加
和
0 行删除
+115
-0
figure.png
src/assets/images/figure.png
+0
-0
api.ts
src/modules/analyze/user/api.ts
+5
-0
UserLabel.vue
src/modules/analyze/user/components/UserLabel.vue
+108
-0
Index.vue
src/modules/analyze/user/views/Index.vue
+2
-0
没有找到文件。
src/assets/images/figure.png
0 → 100644
浏览文件 @
e43210f0
129.3 KB
src/modules/analyze/user/api.ts
浏览文件 @
e43210f0
...
@@ -29,3 +29,8 @@ export function getMemberAttrs(params: { sso_id: string; member_meta_id: string
...
@@ -29,3 +29,8 @@ export function getMemberAttrs(params: { sso_id: string; member_meta_id: string
export
function
getMemberMetaAttrs
()
{
export
function
getMemberMetaAttrs
()
{
return
httpRequest
.
get
(
'/api/lab/v1/experiment/analyse/member-meta-attrs'
)
return
httpRequest
.
get
(
'/api/lab/v1/experiment/analyse/member-meta-attrs'
)
}
}
// 获取指定用户的标签
export
function
getUserTags
(
params
:
{
sso_id
:
string
;
limit
:
number
})
{
return
httpRequest
.
get
(
'/api/lab/v1/experiment/analyse/user-tags'
,
{
params
})
}
src/modules/analyze/user/components/UserLabel.vue
0 → 100644
浏览文件 @
e43210f0
<
script
setup
>
import
{
getUserTags
}
from
'../api'
const
props
=
defineProps
({
ssoId
:
String
})
const
list
=
ref
([])
async
function
fetchList
()
{
if
(
!
props
.
ssoId
)
return
const
res
=
await
getUserTags
({
sso_id
:
props
.
ssoId
,
limit
:
20
})
list
.
value
=
res
.
data
.
items
.
map
(
item
=>
{
return
{
...
item
,
weight
:
parseFloat
(
item
.
weight
)
/
5
+
1
||
0
}
})
}
watch
(
()
=>
props
.
ssoId
,
()
=>
{
fetchList
()
},
{
immediate
:
true
}
)
</
script
>
<
template
>
<div
class=
"user-label"
>
<ul>
<li
v-for=
"item in list"
:key=
"item.id"
:style=
"
{ scale: item.weight }">
<div
class=
"user-label__inner"
>
{{
item
.
name
}}
<span
class=
"user-label__arrow"
></span>
</div>
</li>
</ul>
</div>
</
template
>
<
style
lang=
"scss"
scoped
>
.user-label
{
position
:
relative
;
margin
:
40px
;
text-align
:
center
;
background
:
url(@/assets/images/figure.png)
no-repeat
center
center
;
background-size
:
contain
;
height
:
600px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
ul
{
display
:
grid
;
grid-template-columns
:
repeat
(
2
,
1fr
);
column-gap
:
240px
;
row-gap
:
20px
;
}
.user-label__inner
{
position
:
relative
;
display
:
inline-block
;
padding
:
4px
10px
;
font-size
:
14px
;
text-align
:
left
;
font-family
:
Roboto
;
line-height
:
24px
;
color
:
rgba
(
16
,
16
,
16
,
1
);
background-color
:
rgba
(
231
,
232
,
232
,
1
);
border
:
1px
solid
rgba
(
187
,
187
,
187
,
1
);
border-radius
:
5px
;
}
.user-label__arrow
{
position
:
absolute
;
height
:
10px
;
width
:
10px
;
&
:
:
before
{
background
:
rgba
(
231
,
232
,
232
,
1
);
border
:
1px
solid
rgba
(
187
,
187
,
187
,
1
);
box-sizing
:
border-box
;
content
:
' '
;
height
:
10px
;
position
:
absolute
;
transform
:
rotate
(
45deg
);
width
:
10px
;
}
}
li
:nth-child
(
odd
)
{
text-align
:
right
;
.user-label__arrow
{
right
:
-5px
;
top
:
0px
;
transform
:
translate
(
0px
,
10px
);
&
:
:
before
{
border-top-right-radius
:
2px
;
border-bottom-color
:
transparent
!
important
;
border-left-color
:
transparent
!
important
;
}
}
}
li
:nth-child
(
even
)
{
text-align
:
left
;
.user-label__arrow
{
left
:
-5px
;
top
:
0px
;
transform
:
translate
(
0px
,
10px
);
&
:
:
before
{
border-bottom-left-radius
:
2px
;
border-right-color
:
transparent
!
important
;
border-top-color
:
transparent
!
important
;
}
}
}
}
</
style
>
src/modules/analyze/user/views/Index.vue
浏览文件 @
e43210f0
<
script
setup
>
<
script
setup
>
import
ChartCard
from
'@/components/ChartCard.vue'
import
ChartCard
from
'@/components/ChartCard.vue'
import
UserChart
from
'../components/UserChart.vue'
import
UserChart
from
'../components/UserChart.vue'
import
UserLabel
from
'../components/UserLabel.vue'
import
{
DataLine
}
from
'@element-plus/icons-vue'
import
{
DataLine
}
from
'@element-plus/icons-vue'
import
{
useUser
}
from
'@/composables/useAllData'
import
{
useUser
}
from
'@/composables/useAllData'
import
{
useMapStore
}
from
'@/stores/map'
import
{
useMapStore
}
from
'@/stores/map'
...
@@ -177,6 +178,7 @@ const statusOption = computed(() => {
...
@@ -177,6 +178,7 @@ const statusOption = computed(() => {
<b
class=
"total"
>
{{
userTotal
}}
</b>
<b
class=
"total"
>
{{
userTotal
}}
</b>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
<UserLabel
:ssoId=
"userValue"
></UserLabel>
<div
class=
"row"
>
<div
class=
"row"
>
<ChartCard
title=
"用户性别分布"
:options=
"genderOption"
:loading=
"loading1"
></ChartCard>
<ChartCard
title=
"用户性别分布"
:options=
"genderOption"
:loading=
"loading1"
></ChartCard>
<ChartCard
title=
"用户数据来源分布"
:options=
"connectionOption"
:loading=
"loading2"
></ChartCard>
<ChartCard
title=
"用户数据来源分布"
:options=
"connectionOption"
:loading=
"loading2"
></ChartCard>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论