sbd-npm 1.1.52 → 1.1.53
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/menu.js +1 -0
- package/package.json +1 -1
- package/util.js +1 -1
- package/.npmignore +0 -1
package/menu.js
CHANGED
@@ -151,6 +151,7 @@ const MenuList = [
|
|
151
151
|
'menu': [
|
152
152
|
{'key': 'query_list', 'name': '查询', 'url': '/16e6b2a63db7951f30e7ebab1852ea8c'},
|
153
153
|
{'key': 'query_profit', 'name': '盈利查询', 'url': '/cc995fc524901f6b664f2a553d34f404'},
|
154
|
+
{'key': 'query_current_trade', 'name': '最新行情查询', 'url': '/bc85a7806ca69f9aebe7bae3c9e0b1cc'},
|
154
155
|
]
|
155
156
|
},
|
156
157
|
{
|
package/package.json
CHANGED
package/util.js
CHANGED
@@ -688,7 +688,7 @@ const Util = {
|
|
688
688
|
});
|
689
689
|
_html.push('</tr></thead>');
|
690
690
|
_html.push('<tbody id="', options["element_id"], '_body"><tr>');
|
691
|
-
_html.push('<td class="text-center" colspan="', options["head_cols"].length, '">Loading
|
691
|
+
_html.push('<td class="text-center" colspan="', options["head_cols"].length, '">', (options["body_tips"] ? options["body_tips"] : "Loading..."), '</td>');
|
692
692
|
_html.push('</tr></tbody>');
|
693
693
|
_html.push('</table>');
|
694
694
|
let tz_obj = $("#" + options["element_id"]);
|
package/.npmignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
sbd-npm.md
|