From ec060ce444cdd1c48a54686cadbc8950478eedcf Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期五, 22 八月 2025 16:27:34 +0800 Subject: [PATCH] 网页内容修改 --- kp_html/kp/js/http.js | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/kp_html/kp/js/http.js b/kp_html/kp/js/http.js index 643269b..920de9c 100644 --- a/kp_html/kp/js/http.js +++ b/kp_html/kp/js/http.js @@ -565,6 +565,25 @@ callback(result); }); }, + remove_l_down_rate: function(code, callback) { + let data = { + type: "common", + data: { + ctype: "remove_l_down_rate", + code: code + + }, + sign: '' + } + console.log("璇锋眰鍏冩暟鎹細", data) + console.log("璇锋眰json鏁版嵁锛�", JSON.stringify(data)) + http_util.socket_request(JSON.stringify(data), function(result) { + result = JSON.parse(result); + callback(result); + }); + }, + + // 鑾峰彇濮旀墭闃熷垪 get_trade_queue: function(code, callback) { let data = { @@ -595,6 +614,43 @@ callback(result); }); }, + + get_want_buy_detail_list: function(callback) { + var params = { + } + http_util.http_request("/get_want_buy_detail_list", params, callback); + }, + + get_l_down_watch_index_overview: function(code, callback) { + var params = { + code:code + }; + http_util.http_request("/get_l_down_watch_index_overview", params, callback); + }, + + + list_delegate_records: function(updateTime, callback) { + var params = { + update_time: updateTime, + } + http_util.http_request("/get_all_delegate_list", params, callback); + }, + list_deal_records: function(updateTime, callback) { + let data = { + type: "deal_list", + data: { + update_time: updateTime + }, + sign: '' + }; + http_util.socket_request(JSON.stringify(data), function(result) { + result = JSON.parse(result); + callback(result); + }); + }, + + + -- Gitblit v1.8.0