Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
沈秋雨
/
import_hk_songs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7d5fed77
...
7d5fed77e09a0ab38bb72e92fcbd7a6adb7b8d8a
authored
2026-07-20 10:00:15 +0800
by
沈秋雨
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(review): 修改确认状态和标签为入库相关描述
1 parent
48f822d7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
l2_review_dashboard.html
l2_review_dashboard.html
View file @
7d5fed7
...
...
@@ -1037,8 +1037,8 @@
metric
(
'待审核'
,
row
.
pending_review_count
||
'0'
),
metric
(
'已审核'
,
row
.
reviewed_count
||
'0'
),
metric
(
'已提交'
,
row
.
submitted_count
||
'0'
),
metric
(
'确认
不重复
'
,
row
.
approved_count
||
'0'
),
metric
(
'确认
重复
'
,
row
.
rejected_count
||
'0'
),
metric
(
'确认
入库
'
,
row
.
approved_count
||
'0'
),
metric
(
'确认
不入库
'
,
row
.
rejected_count
||
'0'
),
metric
(
'已删除'
,
row
.
deleted_count
||
'0'
),
metric
(
'new'
,
row
.
new_count
||
'-'
),
metric
(
'merge'
,
row
.
duplicate_count
||
'0'
),
...
...
@@ -1172,8 +1172,8 @@
}
const
_DB_REVIEW_LABELS
=
{
approved_import
:
'确认
不重复
(待入库)'
,
rejected_duplicate
:
'确认
重复
'
,
approved_import
:
'确认
入库
(待入库)'
,
rejected_duplicate
:
'确认
不入库
'
,
unsure
:
'待确认'
,
deleted
:
'已删除'
,
};
...
...
@@ -1325,7 +1325,7 @@
<div class="review-bar" style="align-items:center">
<span style="flex:1">
<b>
${
esc
(
query
.
review_status
===
'approved_import'
&&
query
.
staging_status
===
'imported'
?
'确认
不重复
(已提交)'
?
'确认
入库
(已提交)'
:
(
_DB_REVIEW_LABELS
[
query
.
review_status
]
||
query
.
review_status
))}
</b>
${
query
.
reviewed_by
?
` · 审核人
${
esc
(
query
.
reviewed_by
)}
`
:
''
}
${
query
.
reviewed_at
?
` ·
${
esc
(
query
.
reviewed_at
)}
`
:
''
}
...
...
@@ -1337,7 +1337,7 @@
<div class="review-bar">
${[
'duplicate'
,
'not_duplicate'
,
'unsure'
].
map
(
value
=>
`
<button class="review-choice
${
selectedReview
.
final_decision
===
value
?
'active'
:
''
}
" data-review="
${
value
}
">
${
value
===
'duplicate'
?
'确认
重复'
:
value
===
'not_duplicate'
?
'确认不重复
'
:
'待确认'
}
${
value
===
'duplicate'
?
'确认
不入库'
:
value
===
'not_duplicate'
?
'确认入库
'
:
'待确认'
}
</button>`
).
join
(
''
)}
<input id="reviewNote" value="
${
esc
(
selectedReview
.
note
||
''
)}
" placeholder="人工备注">
<button id="deleteReviewBtn" class="secondary" style="color:#c0392b;border-color:#c0392b">删除</button>
...
...
@@ -1508,7 +1508,7 @@
alert('历史报表仅供查看,请在 staging-db 中执行入库。');
return;
}
if (!confirm('确认入库数据库中所有
“确认不重复(待入库)”
样本?')) return;
if (!confirm('确认入库数据库中所有
"确认入库(待入库)"
样本?')) return;
els.importReviewedBtn.disabled = true;
els.importReviewedBtn.textContent = '入库中...';
try {
...
...
Please
register
or
sign in
to post a comment