Commit 6860679c0a2f1d46f0ef768f1eb6106285e3fe4c
1 parent
7419ca36
feat<central_clearing_system>:更改菜单项
Showing
6 changed files
with
17 additions
and
17 deletions
central_clearing_system/Config/menu_res_auth_cfg.json
... | ... | @@ -6,18 +6,18 @@ |
6 | 6 | {"res_id":20001, "auth_id":101001, "icon":"comm_regist.ico", "index":[1, 0]}, |
7 | 7 | {"res_id":20002, "auth_id":101002, "icon":"comm_distrib.ico", "index":[1, 1]}, |
8 | 8 | {"res_id":20003, "auth_id":101003, "icon":"query_manage.ico", "index":[1, 2]}, |
9 | - {"res_id":30001, "auth_id":103001, "icon":"", "index":[2]}, | |
10 | - {"res_id":4, "auth_id":1020, "icon":"", "index":[3]}, | |
11 | - {"res_id":40001, "auth_id":102001, "icon":"point_rule.ico", "index":[3, 0]}, | |
12 | - {"res_id":40002, "auth_id":102002, "icon":"cate_manage.ico", "index":[3, 1]}, | |
13 | - {"res_id":40003, "auth_id":102003, "icon":"agreement.ico", "index":[3, 2]}, | |
14 | - {"res_id":40004, "auth_id":102004, "icon":"consign_manage.ico", "index":[3, 3]}, | |
15 | - {"res_id":40005, "auth_id":102005, "icon":"credt.ico", "index":[3, 4]}, | |
16 | - {"res_id":5, "auth_id":1040, "icon":"", "index":[4]}, | |
17 | - {"res_id":50001, "auth_id":104001, "icon":"user.ico", "index":[4, 0]}, | |
18 | - {"res_id":50002, "auth_id":104002, "icon":"role.ico", "index":[4, 1]}, | |
19 | - {"res_id":50003, "auth_id":104003, "icon":"para.ico", "index":[4, 2]}, | |
20 | - {"res_id":50004, "auth_id":104004, "icon":"log.ico", "index":[4, 3]}, | |
9 | + {"res_id":20004, "auth_id":101004, "icon":"special_handle.ico", "index":[1, 3]}, | |
10 | + {"res_id":4, "auth_id":1020, "icon":"", "index":[2]}, | |
11 | + {"res_id":40001, "auth_id":102001, "icon":"point_rule.ico", "index":[2, 0]}, | |
12 | + {"res_id":40002, "auth_id":102002, "icon":"cate_manage.ico", "index":[2, 1]}, | |
13 | + {"res_id":40003, "auth_id":102003, "icon":"agreement.ico", "index":[2, 2]}, | |
14 | + {"res_id":40004, "auth_id":102004, "icon":"consign_manage.ico", "index":[2, 3]}, | |
15 | + {"res_id":40005, "auth_id":102005, "icon":"credt.ico", "index":[2, 4]}, | |
16 | + {"res_id":5, "auth_id":1040, "icon":"", "index":[3]}, | |
17 | + {"res_id":50001, "auth_id":104001, "icon":"user.ico", "index":[3, 0]}, | |
18 | + {"res_id":50002, "auth_id":104002, "icon":"role.ico", "index":[3, 1]}, | |
19 | + {"res_id":50003, "auth_id":104003, "icon":"para.ico", "index":[3, 2]}, | |
20 | + {"res_id":50004, "auth_id":104004, "icon":"log.ico", "index":[3, 3]}, | |
21 | 21 | {"res_id":11001, "auth_id":0, "icon":"exit.ico", "index":[]}, |
22 | 22 | {"res_id":11002, "auth_id":0, "icon":"modify_account_pwd.ico", "index":[]} |
23 | 23 | ] |
24 | 24 | \ No newline at end of file | ... | ... |
central_clearing_system/ETradeClient.rc
... | ... | @@ -87,8 +87,8 @@ BEGIN |
87 | 87 | MENUITEM "商品登记", ID_COMM_REGIST |
88 | 88 | MENUITEM "商品分发", ID_COMM_DISTRIB |
89 | 89 | MENUITEM "查询管理", ID_QUERY_MANAGE |
90 | + MENUITEM "特殊处理", ID_SPECIAL_HANDLE | |
90 | 91 | END |
91 | - MENUITEM "特殊处理", ID_SPECIAL_HANDLE | |
92 | 92 | POPUP "基础资料" |
93 | 93 | BEGIN |
94 | 94 | MENUITEM "扣点规则", ID_POINT_RULE | ... | ... |
central_clearing_system/ETradeClient/mfc_ui/MainFrm.cpp
... | ... | @@ -58,9 +58,9 @@ namespace |
58 | 58 | |
59 | 59 | static std::vector<TBBUTTON> kQuickAccessBtn = |
60 | 60 | { |
61 | - { 0, ID_ORDER, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 }, | |
62 | - { 1, ID_COMM_REGIST, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 }, | |
63 | - { 2, ID_COMM_DISTRIB, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 } | |
61 | + { 0, ID_COMM_REGIST, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 }, | |
62 | + { 1, ID_COMM_DISTRIB, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 }, | |
63 | + { 2, ID_ORDER, TBSTATE_ENABLED, BTNS_BUTTON, 0, 0 } | |
64 | 64 | }; |
65 | 65 | } // namespace |
66 | 66 | ... | ... |
central_clearing_system/Resource.h
... | ... | @@ -78,7 +78,7 @@ |
78 | 78 | #define ID_COMM_REGIST 20001 |
79 | 79 | #define ID_COMM_DISTRIB 20002 |
80 | 80 | #define ID_QUERY_MANAGE 20003 |
81 | -#define ID_SPECIAL_HANDLE 30001 | |
81 | +#define ID_SPECIAL_HANDLE 20004 | |
82 | 82 | #define ID_MENU_DELETE 32846 |
83 | 83 | #define ID_POPMENU_LIST 32848 |
84 | 84 | #define ID_POPMENU_DELETE 32850 | ... | ... |
central_clearing_system/Resource/Menu/special_handle.ico
0 → 100644
No preview for this file type
central_clearing_system/Resource/Toolbar/special_handle.ico
0 → 100644
No preview for this file type