sbd-npm 1.3.75 → 1.3.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/status.js +2 -1
- package/stock_basics.js +0 -12
package/package.json
CHANGED
package/status.js
CHANGED
@@ -65,7 +65,7 @@ $(function () {
|
|
65
65
|
j["mysql_remote_ip"].forEach(function (remote_ip) {
|
66
66
|
mysql_remote_ip.push(Status.pack_ip_link(remote_ip));
|
67
67
|
});
|
68
|
-
$("#mysql_remote_ip").
|
68
|
+
$("#mysql_remote_ip").html(mysql_remote_ip.join("、"));
|
69
69
|
}
|
70
70
|
_html = [];
|
71
71
|
let current_connections = 0, db_ip_array = [];
|
@@ -87,6 +87,7 @@ $(function () {
|
|
87
87
|
_html.push("</tr>");
|
88
88
|
});
|
89
89
|
$("#max_connections").html("<span class='label label-info'>" + current_connections + "</span> / " + j["max_connections"]);
|
90
|
+
$("#hard_disk").html(j["disk_available_size"] + " / " + j["disk_total_size"]);
|
90
91
|
Util.render_table_html("process_list", _html);
|
91
92
|
if (db_ip_array.length > 0) {
|
92
93
|
let din_obj = $("#db_ip_num");
|
package/stock_basics.js
CHANGED
@@ -773,12 +773,6 @@ let Stock = {
|
|
773
773
|
{"name": "股价变动", "title": "同期股价变动幅度", "table_sort": 1},
|
774
774
|
{"name": "人均持股", "table_sort": 1},
|
775
775
|
{"name": "人均持股市值", "table_sort": 1},
|
776
|
-
{"name": "流通持股", "title": "十大流通股东持股(万股)", "table_sort": 1},
|
777
|
-
{"name": "流通比例", "title": "十大流通股东占流通股本比例", "table_sort": 1},
|
778
|
-
{"name": "股东持股", "title": "十大股东持股(万股)", "table_sort": 1},
|
779
|
-
{"name": "股东比例", "title": "十大股东占流通股本比例", "table_sort": 1},
|
780
|
-
{"name": "基金持股", "title": "基金持股(万股)", "table_sort": 1},
|
781
|
-
{"name": "基金比例", "title": "基金占流通股本比例", "table_sort": 1},
|
782
776
|
]
|
783
777
|
});
|
784
778
|
Util.post("/stock/" + Stock["code"], {action: "holder_num"}, function (j) {
|
@@ -805,12 +799,6 @@ let Stock = {
|
|
805
799
|
_html.push("<td><b class='", Util.text_color(item["price_change"]), "'>", item["price"], "(", item["price_change"], "%)</b></td>");
|
806
800
|
_html.push("<td>", item["avg_num"], "</td>");
|
807
801
|
_html.push("<td>", Util.to_unit(item["avg_num"] * item["price"]), "</td>");
|
808
|
-
_html.push("<td>", (item["circulation_stock"] ? item["circulation_stock"] : 0), "</td>");
|
809
|
-
_html.push("<td>", (item["circulation_stock_ratio"] ? item["circulation_stock_ratio"] : 0), "%</td>");
|
810
|
-
_html.push("<td>", (item["main_stock"] ? item["main_stock"] : 0), "</td>");
|
811
|
-
_html.push("<td>", (item["main_stock_ratio"] ? item["main_stock_ratio"] : 0), "%</td>");
|
812
|
-
_html.push("<td>", (item["fund_stock"] ? item["fund_stock"] : 0), "</td>");
|
813
|
-
_html.push("<td>", (item["fund_stock_ratio"] ? item["fund_stock_ratio"] : 0), "%</td>");
|
814
802
|
_html.push("</tr>");
|
815
803
|
});
|
816
804
|
let holder_num_summary = "";
|