diff --git a/static/js/config.js b/static/js/config.js
index 763ed54..48f1b41 100644
--- a/static/js/config.js
+++ b/static/js/config.js
@@ -5,7 +5,7 @@ var BASE_URL = '/api/';
var PAGE_SIZE = 20;
/** 系统版本号(logo旁展示):修改代码后运行 tools/bump_version.php 自动递增 */
-var APP_VERSION = 'v1.0.42';
+var APP_VERSION = 'v1.0.43';
/** 页脚版权/备案信息(在 config.js 中修改) */
var FOOTER_TEXT = '© 2026 SuperLink 管理系统 版权所有 | 备案号:请替换为真实备案号';
diff --git a/static/js/fragment.js b/static/js/fragment.js
index 6f23f7c..be2ff1e 100644
--- a/static/js/fragment.js
+++ b/static/js/fragment.js
@@ -50,10 +50,7 @@ $(function () {
' ' +
' ' +
' ' +
- ' ' +
- ' ' +
+ ' ' +
' ' +
' ' +
' ' +
@@ -93,7 +90,7 @@ $(function () {
$('#hard-search').on('click', function () { loadHardList(1); });
$('#hard-keyword').on('keydown', function (e) { if (e.keyCode === 13) loadHardList(1); });
$('#hard-reset').on('click', function () {
- $('#hard-type').val(''); $('#hard-source').val(''); $('#hard-status').val(''); $('#hard-keyword').val('');
+ $('#hard-type').val(''); $('#hard-source').val(''); $('#hard-keyword').val('');
loadHardList(1);
});
$('#hard-add').on('click', function () { openHardAdd(); });
@@ -135,7 +132,6 @@ $(function () {
page: page,
source_type: $('#hard-type').val(),
source_channel: $('#hard-source').val(),
- status: $('#hard-status').val(),
keyword: $.trim($('#hard-keyword').val())
};
httpGet('fragment/hard_list.php', params).then(function (d) {