Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
saas-dml
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
saas-dml
Commits
76c9c231
提交
76c9c231
authored
4月 24, 2024
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'pro' into gdrtvu
上级
d960db18
e43210f0
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
142 行增加
和
4 行删除
+142
-4
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
LabelFormDialog.vue
src/modules/label/components/LabelFormDialog.vue
+25
-4
types.ts
src/modules/label/types.ts
+1
-0
Index.vue
src/modules/label/views/Index.vue
+1
-0
没有找到文件。
src/assets/images/figure.png
0 → 100644
浏览文件 @
76c9c231
129.3 KB
src/modules/analyze/user/api.ts
浏览文件 @
76c9c231
...
...
@@ -29,3 +29,8 @@ export function getMemberAttrs(params: { sso_id: string; member_meta_id: string
export
function
getMemberMetaAttrs
()
{
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
浏览文件 @
76c9c231
<
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
浏览文件 @
76c9c231
<
script
setup
>
import
ChartCard
from
'@/components/ChartCard.vue'
import
UserChart
from
'../components/UserChart.vue'
import
UserLabel
from
'../components/UserLabel.vue'
import
{
DataLine
}
from
'@element-plus/icons-vue'
import
{
useUser
}
from
'@/composables/useAllData'
import
{
useMapStore
}
from
'@/stores/map'
...
...
@@ -177,6 +178,7 @@ const statusOption = computed(() => {
<b
class=
"total"
>
{{
userTotal
}}
</b>
</el-form-item>
</el-form>
<UserLabel
:ssoId=
"userValue"
></UserLabel>
<div
class=
"row"
>
<ChartCard
title=
"用户性别分布"
:options=
"genderOption"
:loading=
"loading1"
></ChartCard>
<ChartCard
title=
"用户数据来源分布"
:options=
"connectionOption"
:loading=
"loading2"
></ChartCard>
...
...
src/modules/label/components/LabelFormDialog.vue
浏览文件 @
76c9c231
...
...
@@ -29,7 +29,8 @@ const form = reactive({
update_status
:
'2'
,
update_rule
:
{
type
:
1
,
info
:
1
},
status
:
'1'
,
label
:
''
label
:
''
,
weight
:
0
})
watchEffect
(()
=>
{
if
(
props
.
data
)
{
...
...
@@ -39,7 +40,7 @@ watchEffect(() => {
}
catch
(
error
)
{
console
.
log
(
error
)
}
Object
.
assign
(
form
,
props
.
data
,
{
update_rule
:
updateRule
})
Object
.
assign
(
form
,
props
.
data
,
{
update_rule
:
updateRule
,
weight
:
parseFloat
(
props
.
data
.
weight
)
})
}
})
...
...
@@ -56,7 +57,15 @@ function handleSubmit() {
}
// 新建
function
handleCreate
()
{
const
params
=
pick
({
...
form
,
update_rule
:
JSON
.
stringify
(
form
.
update_rule
)
},
[
'name'
,
'type_id'
,
'update_status'
,
'update_rule'
,
'status'
,
'label'
])
const
params
=
pick
({
...
form
,
update_rule
:
JSON
.
stringify
(
form
.
update_rule
)
},
[
'name'
,
'type_id'
,
'update_status'
,
'update_rule'
,
'status'
,
'label'
,
'weight'
])
createLabel
(
params
).
then
(()
=>
{
ElMessage
({
message
:
'创建成功'
,
type
:
'success'
})
emit
(
'update'
)
...
...
@@ -65,7 +74,16 @@ function handleCreate() {
}
// 修改
function
handleUpdate
()
{
const
params
=
pick
({
...
form
,
update_rule
:
JSON
.
stringify
(
form
.
update_rule
)
},
[
'id'
,
'name'
,
'type_id'
,
'update_status'
,
'update_rule'
,
'status'
,
'label'
])
const
params
=
pick
({
...
form
,
update_rule
:
JSON
.
stringify
(
form
.
update_rule
)
},
[
'id'
,
'name'
,
'type_id'
,
'update_status'
,
'update_rule'
,
'status'
,
'label'
,
'weight'
])
updateLabel
(
params
).
then
(()
=>
{
ElMessage
({
message
:
'修改成功'
,
type
:
'success'
})
emit
(
'update'
)
...
...
@@ -90,6 +108,9 @@ function handleUpdate() {
<el-option
v-for=
"item in typeList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"标签权重"
prop=
"weight"
>
<el-slider
v-model=
"form.weight"
:max=
"1"
:step=
"0.1"
/>
</el-form-item>
<el-form-item
label=
"更新频率"
prop=
"update_status"
>
<el-radio-group
v-model=
"form.update_status"
>
<el-radio
v-for=
"item in updateStatusRuleList"
:key=
"item.value"
:value=
"item.value"
:disabled=
"item.value === '1'"
>
...
...
src/modules/label/types.ts
浏览文件 @
76c9c231
...
...
@@ -27,6 +27,7 @@ export interface Label {
updated_time
:
string
updated_operator
:
Operator
label
:
string
weight
:
string
}
// 标签更新规则
export
interface
LabelUpdateRule
{
...
...
src/modules/label/views/Index.vue
浏览文件 @
76c9c231
...
...
@@ -66,6 +66,7 @@ const listOptions = computed(() => {
}
},
{
label
:
'标签目录'
,
prop
:
'tag_type.name'
},
{
label
:
'标签权重'
,
prop
:
'weight'
},
{
label
:
'更新频率'
,
prop
:
'update_status'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论