Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
S
saas-dml
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
saas-dml
Commits
b9f16523
提交
b9f16523
authored
4月 24, 2024
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: 新增标签权重字段
上级
64ae5f48
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
27 行增加
和
4 行删除
+27
-4
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/modules/label/components/LabelFormDialog.vue
浏览文件 @
b9f16523
...
...
@@ -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
浏览文件 @
b9f16523
...
...
@@ -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
浏览文件 @
b9f16523
...
...
@@ -66,6 +66,7 @@ const listOptions = computed(() => {
}
},
{
label
:
'标签目录'
,
prop
:
'tag_type.name'
},
{
label
:
'标签权重'
,
prop
:
'weight'
},
{
label
:
'更新频率'
,
prop
:
'update_status'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论