admin
2025-07-25 f5e8c9ecc4b1980e215dcf940aba004a8d6ab353
kp_html/kp/js/code_list.js
@@ -79,8 +79,8 @@
         // 费用数据
         commission_data:{"total_commission":0, "month_commission":0},
         // L2数据结束索引
         l2_end_index:null
         l2_end_index:null,
         fast_mode: 1
      },
      watch: {
         delegated_buy_code_infos: function() {
@@ -192,7 +192,7 @@
            
            var date = $("#date").val();
            http_util.get_l2_datas(app.code, date, app.l2_end_index, function(res) {
            http_util.get_l2_datas(app.code, date, app.l2_end_index, app.fast_mode, function(res) {
               layer.close(index);
               res = JSON.parse(res);
               if (res.code == 0) {
@@ -335,6 +335,10 @@
            app.hidden_little_money = e.currentTarget.checked;
         },
         
         set_fast_mode: function(e) {
            app.fast_mode = e.currentTarget.checked?1:0;
         },
         hidden_canceled_big_money_check: function(e) {
            app.not_hidden_canceled_big_money = e.currentTarget.checked;
         },