efront 3.20.3 → 3.20.4
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/apps/pivot/menu.yml +0 -4
- package/coms/basic/queue.js +2 -1
- package/coms/zimoli/menuList.js +6 -2
- package/package.json +1 -1
- package/public/efront.js +1 -1
- package/apps/pivot/api/edit.js +0 -1
- package/apps/pivot/api/list.js +0 -20
- package/apps/pivot/user/api.html +0 -2
- package/apps/pivot/user/api.js +0 -14
- package/apps/pivot/user/api.less +0 -0
- package/apps/pivot/user/edit.js +0 -1
- package/apps/pivot/user/list.js +0 -4
- package/apps/pivot/user/tag/edit.js +0 -1
- package/apps/pivot/user/tag/list.js +0 -3
package/apps/pivot/menu.yml
CHANGED
|
@@ -5,15 +5,11 @@ WEB:
|
|
|
5
5
|
文件管理: /wow/root
|
|
6
6
|
长连接管理: /link/index
|
|
7
7
|
字典: /dict/list
|
|
8
|
-
接口: /api/list
|
|
9
8
|
任务:
|
|
10
9
|
密钥管理: /token/list
|
|
11
10
|
任务建立: /task/list
|
|
12
11
|
定期执行: /tick/list
|
|
13
12
|
# 服务器: /api/host
|
|
14
|
-
用户:
|
|
15
|
-
账号列表: /user/list
|
|
16
|
-
标签管理: /user/tag/list
|
|
17
13
|
服务器日志:
|
|
18
14
|
访问计数: /log/count
|
|
19
15
|
启动记录: /log/boot
|
package/coms/basic/queue.js
CHANGED
package/coms/zimoli/menuList.js
CHANGED
|
@@ -312,6 +312,10 @@ function main(page, items, active, direction = 'y') {
|
|
|
312
312
|
}`;
|
|
313
313
|
var notHidden = `!${itemName}.hidden`;
|
|
314
314
|
var generator = getGenerator(page, 'menu-item');
|
|
315
|
+
var fire0 = function () {
|
|
316
|
+
fire.apply(this, arguments);
|
|
317
|
+
dispatch(window, 'render');
|
|
318
|
+
};
|
|
315
319
|
list(page, function (index) {
|
|
316
320
|
var item = items[index];
|
|
317
321
|
if (!item) return;
|
|
@@ -325,7 +329,7 @@ function main(page, items, active, direction = 'y') {
|
|
|
325
329
|
on("mouseenter")(a, open);
|
|
326
330
|
on("pointermove")(a, open);
|
|
327
331
|
if (istoolbar) on("pointerdown")(a, open1);
|
|
328
|
-
on("click")(a,
|
|
332
|
+
on("click")(a, fire0);
|
|
329
333
|
return a;
|
|
330
334
|
});
|
|
331
335
|
on("append")(page, function () {
|
|
@@ -358,7 +362,7 @@ function main(page, items, active, direction = 'y') {
|
|
|
358
362
|
on("mouseenter")(elem, open);
|
|
359
363
|
on("pointermove")(elem, cancel);
|
|
360
364
|
if (istoolbar) on("pointerdown")(elem, open1);
|
|
361
|
-
on("click")(elem,
|
|
365
|
+
on("click")(elem, fire0);
|
|
362
366
|
return elem;
|
|
363
367
|
}, direction);
|
|
364
368
|
}
|