v1.0.43: 硬数据检索区删除状态筛选下拉,状态字段完全从前端移除

This commit is contained in:
nanguaboss
2026-08-10 00:23:22 +08:00
parent 03891db798
commit 2203a1a0e3
2 changed files with 3 additions and 7 deletions
+2 -6
View File
@@ -50,10 +50,7 @@ $(function () {
' <option value="company">企业</option><option value="person">人员</option>' +
' <option value="product">产品</option><option value="need">需求</option><option value="mixed">混合</option></select>' +
' <select id="hard-source"><option value="">全部来源</option></select>' +
' <select id="hard-status"><option value="">全部状态</option>' +
' <option value="待处理">待处理</option><option value="待分配">待分配</option>' +
' <option value="处理中">处理中</option><option value="已拒收">已拒收</option></select>' +
' <input type="text" id="hard-keyword" placeholder="公司/姓名/电话/邮箱/描述关键词">' +
' <input type="text" id="hard-keyword" placeholder="公司/姓名/电话/邮箱关键词">' +
' <button class="btn btn-primary" id="hard-search">搜索</button>' +
' <button class="btn" id="hard-reset">重置</button>' +
' <span class="spacer"></span>' +
@@ -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) {