sbd-npm 1.3.84 → 1.3.86

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.
Files changed (3) hide show
  1. package/constant.js +2 -0
  2. package/package.json +1 -1
  3. package/util.js +3 -0
package/constant.js CHANGED
@@ -6,6 +6,8 @@ const MenuList = [
6
6
  {'key': 'summary_daily', 'name': '每日概要', 'url': '/0x2168175717a03ec7544549dcfe0018b80a1973c6'},
7
7
  {'key': 'summary_week', 'name': '每周概要', 'url': '/0x6e7bdba064724aea8149d883db1fcd88cdcf43ea'},
8
8
  {'key': 'summary_month', 'name': '每月概要', 'url': '/0xb73a5708dc3c4ed26a6baf9e4f6e82229662a319'},
9
+ {'key': 'summary_quarter', 'name': '每季概要', 'url': '/0xcc578991b1a98b30b4a9e0f7fce3a86cfc916634'},
10
+ {'key': 'summary_year', 'name': '每年概要', 'url': '/0xd6cfe54815c86c1bbe92cab45a5966425daffdcd'},
9
11
  {'key': 'summary_breadth', 'name': '市场宽度', 'url': '/0x7dbef7e8cff8988ed176da59b54e558e749609c4'},
10
12
  {'key': 'summary_industry', 'name': '板块涨跌', 'url': '/0x0ec5d38a4cbe9e381088bcc3a5810383aa61336a'},
11
13
  {'key': 'summary_momentum', 'name': '板块动量', 'url': '/0x7c8eb093d142bdc6cca0650d6399a0d5766c27de'},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbd-npm",
3
- "version": "1.3.84",
3
+ "version": "1.3.86",
4
4
  "description": "Stock Big Data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/util.js CHANGED
@@ -2108,6 +2108,9 @@ const Util = {
2108
2108
  case "%m/%d":
2109
2109
  seconds_format = month + "/" + day;
2110
2110
  break;
2111
+ case "%m-%d":
2112
+ seconds_format = month + "-" + day;
2113
+ break;
2111
2114
  case "%Y":
2112
2115
  seconds_format = year;
2113
2116
  break;