sbd-npm 1.3.78 → 1.3.79
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/stock_basics.js +67 -1
package/package.json
CHANGED
package/stock_basics.js
CHANGED
@@ -1123,6 +1123,72 @@ let Stock = {
|
|
1123
1123
|
}
|
1124
1124
|
});
|
1125
1125
|
Stock["margin_month_flow_chart"] = Util.chart_basic_bar(Stock["margin_month_flow_chart"], "margin_month_flow_bar_chart", date_data, flow_data, "增幅(单位:万)", color_data);
|
1126
|
+
if ($("#margin_modal_body").length === 0) {
|
1127
|
+
Stock.fetch_margin_modal();
|
1128
|
+
}
|
1129
|
+
Util.hide_tips();
|
1130
|
+
});
|
1131
|
+
},
|
1132
|
+
|
1133
|
+
fetch_margin_modal: function () {
|
1134
|
+
Util.init_modal_skeleton("margin_modal", '');
|
1135
|
+
let mm_obj = $('#margin_modal');
|
1136
|
+
mm_obj.on('shown.bs.modal', function (e) {
|
1137
|
+
let url = $("#margin_panel_title").find("a").first().attr("href");
|
1138
|
+
let title = Util.pack_html_link(url, "[" + Stock["name"] + "]融资余额明细数据");
|
1139
|
+
$("#margin_modal_title").html(title + "<span style='color: #BDBDBD;' id='margin_modal_summary'></span>");
|
1140
|
+
Util.init_table_skeleton({
|
1141
|
+
"element_id": "margin_modal_body",
|
1142
|
+
"caption": "none",
|
1143
|
+
"head_cols": [
|
1144
|
+
{"name": "日期", "class": "info", "table_sort": 1},
|
1145
|
+
{"name": "融资余额", "table_sort": 1},
|
1146
|
+
{"name": "融资余额增值", "table_sort": 1, "title": "当天融资余额跟前一天融资余额的差值"},
|
1147
|
+
{"name": "融资买入额", "table_sort": 1},
|
1148
|
+
{"name": "融资偿还额", "table_sort": 1},
|
1149
|
+
{"name": "融券余额", "table_sort": 1},
|
1150
|
+
{"name": "融券余量", "table_sort": 1},
|
1151
|
+
]
|
1152
|
+
});
|
1153
|
+
Util.post("/stock/" + Stock["code"], {action: "margin_detail"}, function (j) {
|
1154
|
+
let _html = [];
|
1155
|
+
j["data"].forEach(function (item, index) {
|
1156
|
+
_html.push("<tr>");
|
1157
|
+
_html.push("<td>", Util.seconds_to_format(item["date"], "%Y-%m-%d"), "</td>");
|
1158
|
+
_html.push("<td title='", item["rzye"], "' data-val='", item["rzye"], "'>", Util.to_unit(item["rzye"], 3), "</td>");
|
1159
|
+
let net_rzye = "--", gap_rzye = 0;
|
1160
|
+
if (j["data"][index + 1] && j["data"][index + 1]["rzye"]) {
|
1161
|
+
gap_rzye = item["rzye"] - j["data"][index + 1]["rzye"];
|
1162
|
+
if (gap_rzye > 0) {
|
1163
|
+
net_rzye = "<b class='text-danger'>+" + Util.to_unit(gap_rzye, 3) + "</b>";
|
1164
|
+
} else if (gap_rzye < 0) {
|
1165
|
+
net_rzye = "<b class='text-success'>" + Util.to_unit(gap_rzye, 3) + "</b>";
|
1166
|
+
}
|
1167
|
+
}
|
1168
|
+
_html.push("<td title='", gap_rzye, "' data-val='", gap_rzye, "'>", net_rzye, "</td>");
|
1169
|
+
_html.push("<td title='", item["rzmre"], "' data-val='", item["rzmre"], "'>", Util.to_unit(item["rzmre"], 3), "</td>");
|
1170
|
+
_html.push("<td title='", item["rzche"], "' data-val='", item["rzche"], "'>", Util.to_unit(item["rzche"], 3), "</td>");
|
1171
|
+
_html.push("<td title='", item["rqye"], "' data-val='", item["rqye"], "'>", (item["rqye"] > 0 ? Util.to_unit(item["rqye"], 3) : "--"), "</td>");
|
1172
|
+
_html.push("<td title='", item["rqyl"], "' data-val='", item["rqyl"], "'>", Util.to_unit(item["rqyl"], 3), "</td>");
|
1173
|
+
_html.push("</tr>");
|
1174
|
+
});
|
1175
|
+
Util.render_table_html("margin_modal_body_body", _html);
|
1176
|
+
if (j["data"].length > 1) {
|
1177
|
+
let margin_modal_summary = " (当前最新的融资余额<b class='text-info'>(" + Util.to_unit(j["data"][0]["rzye"]) + ")</b>";
|
1178
|
+
let gap_rzye = j["data"][0]["rzye"] - j["data"][1]["rzye"];
|
1179
|
+
if (gap_rzye > 0) {
|
1180
|
+
margin_modal_summary += "相对于前一天持股增加 <b class='text-danger'>+" + Util.to_unit(gap_rzye) + "</b>";
|
1181
|
+
} else if (gap_rzye < 0) {
|
1182
|
+
margin_modal_summary += "相对于前一天持股减少 <b class='text-success'>" + Util.to_unit(gap_rzye) + "</b>";
|
1183
|
+
}
|
1184
|
+
margin_modal_summary += ")";
|
1185
|
+
$("#margin_modal_summary").html(margin_modal_summary);
|
1186
|
+
}
|
1187
|
+
Util.hide_tips();
|
1188
|
+
});
|
1189
|
+
});
|
1190
|
+
mm_obj.on('hidden.bs.modal', function () {
|
1191
|
+
Util.set_table_loading("margin_modal_body_body");
|
1126
1192
|
Util.hide_tips();
|
1127
1193
|
});
|
1128
1194
|
},
|
@@ -1236,7 +1302,7 @@ let Stock = {
|
|
1236
1302
|
});
|
1237
1303
|
});
|
1238
1304
|
hhm_obj.on('hidden.bs.modal', function () {
|
1239
|
-
|
1305
|
+
Util.set_table_loading("hkex_holding_modal_body_body");
|
1240
1306
|
Util.hide_tips();
|
1241
1307
|
});
|
1242
1308
|
},
|