sbd-npm 1.2.57 → 1.2.59
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/README.md +6 -0
- package/constant.js +5 -5
- package/package.json +1 -1
- package/util.js +4 -0
package/README.md
CHANGED
package/constant.js
CHANGED
@@ -133,18 +133,18 @@ const MenuList = [
|
|
133
133
|
'name': '概念股',
|
134
134
|
'icon': 'retweet',
|
135
135
|
'menu': [
|
136
|
-
{'key': 'concept_recommend', 'name': '关注
|
137
|
-
{'key': '
|
136
|
+
{'key': 'concept_recommend', 'name': '关注', 'url': '/27ca098faad33a8e4d109efe0112fd16'},
|
137
|
+
{'key': 'concept_macd', 'name': 'MACD', 'url': '/3400774e910fb611625b31d049d571fb'},
|
138
138
|
{'key': 'concept_bellwether', 'name': '龙头股', 'url': '/2995afdea420471e00c536182e711bef'},
|
139
139
|
{'key': 'concept_market_situation', 'name': '市值风云', 'url': '/02fdaf4d66cdecb092bcd65f569aa493'},
|
140
|
+
{'key': 'concept_cloud', 'name': '心似白云常自在', 'url': '/1d883188398a3a8c743748c5eb81fe7b'},
|
141
|
+
{'key': 'concept_zan', 'name': 'zangyn', 'url': '/860a3a9647efad436894b4aa3843da42'},
|
140
142
|
{'key': 'concept_wen', 'name': '崇文不尚武', 'url': '/b6fd64a2c54250b8ac039123e74e9b7e'},
|
141
143
|
{'key': 'concept_dao', 'name': '成长股事(大道)', 'url': '/7b7ea877f6793752e2b981d82da81e1b'},
|
142
|
-
{'key': 'concept_zan', 'name': 'zangyn', 'url': '/860a3a9647efad436894b4aa3843da42'},
|
143
|
-
{'key': 'concept_down_top', 'name': '15-21年的超跌股', 'url': '/ae3bbf97a358392cfaa0ceb35cb3fb57'},
|
144
|
-
{'key': 'concept_cloud', 'name': '心似白云常自在', 'url': '/1d883188398a3a8c743748c5eb81fe7b'},
|
145
144
|
{'key': 'concept_niu', 'name': '老曾阿牛', 'url': '/0f4a2714971424024c1ddd8651c26569'},
|
146
145
|
{'key': 'concept_qian', 'name': '唐史主任司马迁', 'url': '/8b3e40fe74b4870244bc51125da7675a'},
|
147
146
|
{'key': 'concept_dan', 'name': '但斌', 'url': '/3ac0a5857b1d9a111497c0e817e647a1'},
|
147
|
+
{'key': 'concept_down_top', 'name': '15-21年的超跌股', 'url': '/ae3bbf97a358392cfaa0ceb35cb3fb57'},
|
148
148
|
{'key': 'concept_auto_intelligent', 'name': '智能电动车', 'url': '/cd7be404357809849d267f24fceebcd2'},
|
149
149
|
{'key': 'concept_hk', 'name': '港股', 'url': '/ef12a56d360da9b20c79a763681de1e4'},
|
150
150
|
{'key': 'concept_us', 'name': '美股', 'url': '/f986a81550e4d8a902f8bc0ef07757a6'},
|
package/package.json
CHANGED
package/util.js
CHANGED
@@ -2153,6 +2153,10 @@ const Util = {
|
|
2153
2153
|
let code_list = Util.get_code_list(element_id);
|
2154
2154
|
if (code_list.length > 0) {
|
2155
2155
|
Util.show_loading();
|
2156
|
+
let tips_obj = $("#" + element_id + "_tips");
|
2157
|
+
if (tips_obj.length && tips_obj.html().length === 0) {
|
2158
|
+
tips_obj.html('共 <span class="label label-info">' + code_list.length + '</span> 家');
|
2159
|
+
}
|
2156
2160
|
//获取股票详情数据
|
2157
2161
|
Util.post("/action", {action: "code_detail", code_list: code_list.join("-")}, function (j) {
|
2158
2162
|
let valid_code_list = [];
|