tplus-components-touch 3.54.1 → 3.54.2

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 (177) hide show
  1. package/dist/components/cloudPrint/printTemplate/template.js +52 -0
  2. package/dist/components/cloudPrint/printTemplate/template.js.map +1 -0
  3. package/dist/components/collection/index.js +483 -0
  4. package/dist/components/collection/index.js.map +1 -0
  5. package/dist/components/collection/searchView/index.js +296 -0
  6. package/dist/components/collection/searchView/index.js.map +1 -0
  7. package/dist/components/collection/searchView/index.less +1 -1
  8. package/dist/components/commonForm/addressPicker/index.js +241 -0
  9. package/dist/components/commonForm/addressPicker/index.js.map +1 -0
  10. package/dist/components/commonForm/autoComplete/index.js +260 -0
  11. package/dist/components/commonForm/autoComplete/index.js.map +1 -0
  12. package/dist/components/commonForm/datePicker/index.js +92 -0
  13. package/dist/components/commonForm/datePicker/index.js.map +1 -0
  14. package/dist/components/commonForm/formControl/index.js +144 -0
  15. package/dist/components/commonForm/formControl/index.js.map +1 -0
  16. package/dist/components/commonForm/index.js +231 -0
  17. package/dist/components/commonForm/index.js.map +1 -0
  18. package/dist/components/commonForm/inputNumber/index.js +272 -0
  19. package/dist/components/commonForm/inputNumber/index.js.map +1 -0
  20. package/dist/components/commonForm/radio/index.js +132 -0
  21. package/dist/components/commonForm/radio/index.js.map +1 -0
  22. package/dist/components/deliverySearch/api.js +355 -0
  23. package/dist/components/deliverySearch/api.js.map +1 -0
  24. package/dist/components/deliverySearch/index.js +1222 -0
  25. package/dist/components/deliverySearch/index.js.map +1 -0
  26. package/dist/components/form/index.js +310 -0
  27. package/dist/components/form/index.js.map +1 -0
  28. package/dist/components/hardwareAPI/index.js +215 -0
  29. package/dist/components/hardwareAPI/index.js.map +1 -0
  30. package/dist/components/hotKey/config.js +306 -0
  31. package/dist/components/hotKey/config.js.map +1 -0
  32. package/dist/components/hotKey/hotKeyModal.js +479 -0
  33. package/dist/components/hotKey/hotKeyModal.js.map +1 -0
  34. package/dist/components/hotKey/index.js +790 -0
  35. package/dist/components/hotKey/index.js.map +1 -0
  36. package/dist/components/hotKey/localConfig.js +1242 -0
  37. package/dist/components/hotKey/localConfig.js.map +1 -0
  38. package/dist/components/hotKey/utils.js +135 -0
  39. package/dist/components/hotKey/utils.js.map +1 -0
  40. package/dist/components/input/index.js +254 -0
  41. package/dist/components/input/index.js.map +1 -0
  42. package/dist/components/input/scanInput.js +98 -0
  43. package/dist/components/input/scanInput.js.map +1 -0
  44. package/dist/components/input/tplusInput/index.js +81 -0
  45. package/dist/components/input/tplusInput/index.js.map +1 -0
  46. package/dist/components/input/tplusInput/inputContent.js +128 -0
  47. package/dist/components/input/tplusInput/inputContent.js.map +1 -0
  48. package/dist/components/input/tplusInput/inputs.js +151 -0
  49. package/dist/components/input/tplusInput/inputs.js.map +1 -0
  50. package/dist/components/input/utils/index.js +26 -0
  51. package/dist/components/input/utils/index.js.map +1 -0
  52. package/dist/components/inventorySearch/api.js +214 -0
  53. package/dist/components/inventorySearch/api.js.map +1 -0
  54. package/dist/components/inventorySearch/index.js +303 -0
  55. package/dist/components/inventorySearch/index.js.map +1 -0
  56. package/dist/components/inventorySearch/store.js +363 -0
  57. package/dist/components/inventorySearch/store.js.map +1 -0
  58. package/dist/components/inventorySearch/tab.js +280 -0
  59. package/dist/components/inventorySearch/tab.js.map +1 -0
  60. package/dist/components/keyboard/index.js +259 -0
  61. package/dist/components/keyboard/index.js.map +1 -0
  62. package/dist/components/keyboard/letterKeyboard.js +227 -0
  63. package/dist/components/keyboard/letterKeyboard.js.map +1 -0
  64. package/dist/components/keyboard/numKeyboard.js +469 -0
  65. package/dist/components/keyboard/numKeyboard.js.map +1 -0
  66. package/dist/components/keyboard/numKeyboardScan.js +208 -0
  67. package/dist/components/keyboard/numKeyboardScan.js.map +1 -0
  68. package/dist/components/keyboard/numberButton_input.js +305 -0
  69. package/dist/components/keyboard/numberButton_input.js.map +1 -0
  70. package/dist/components/keyboard/numkeyboardPassword.js +477 -0
  71. package/dist/components/keyboard/numkeyboardPassword.js.map +1 -0
  72. package/dist/components/keyboard/onlyKeyboard.js +90 -0
  73. package/dist/components/keyboard/onlyKeyboard.js.map +1 -0
  74. package/dist/components/keyboard/onlyLetterButton.js +187 -0
  75. package/dist/components/keyboard/onlyLetterButton.js.map +1 -0
  76. package/dist/components/keyboard/onlyLetterButton2.js +235 -0
  77. package/dist/components/keyboard/onlyLetterButton2.js.map +1 -0
  78. package/dist/components/keyboard/onlyNumberButton.js +128 -0
  79. package/dist/components/keyboard/onlyNumberButton.js.map +1 -0
  80. package/dist/components/keyboard/onlyNumberButton2.js +115 -0
  81. package/dist/components/keyboard/onlyNumberButton2.js.map +1 -0
  82. package/dist/components/keyboard/textKeyboard.js +50 -0
  83. package/dist/components/keyboard/textKeyboard.js.map +1 -0
  84. package/dist/components/layout/hamburger.js +29 -0
  85. package/dist/components/layout/hamburger.js.map +1 -0
  86. package/dist/components/layout/index.js +31 -0
  87. package/dist/components/layout/index.js.map +1 -0
  88. package/dist/components/layout/layout.js +182 -0
  89. package/dist/components/layout/layout.js.map +1 -0
  90. package/dist/components/layout/sider.js +167 -0
  91. package/dist/components/layout/sider.js.map +1 -0
  92. package/dist/components/loading/index.js +198 -0
  93. package/dist/components/loading/index.js.map +1 -0
  94. package/dist/components/loading/loadingContent.js +188 -0
  95. package/dist/components/loading/loadingContent.js.map +1 -0
  96. package/dist/components/loading/utils.js +29 -0
  97. package/dist/components/loading/utils.js.map +1 -0
  98. package/dist/components/message/index.js +309 -0
  99. package/dist/components/message/index.js.map +1 -0
  100. package/dist/components/modal/index.js +93 -0
  101. package/dist/components/modal/index.js.map +1 -0
  102. package/dist/components/modalVertical/index.js +325 -0
  103. package/dist/components/modalVertical/index.js.map +1 -0
  104. package/dist/components/modalWraper/index.js +485 -0
  105. package/dist/components/modalWraper/index.js.map +1 -0
  106. package/dist/components/modalWraper/utils.js +48 -0
  107. package/dist/components/modalWraper/utils.js.map +1 -0
  108. package/dist/components/notification/index.js +118 -0
  109. package/dist/components/notification/index.js.map +1 -0
  110. package/dist/components/overflowTip/index.js +269 -0
  111. package/dist/components/overflowTip/index.js.map +1 -0
  112. package/dist/components/page/index.js +49 -0
  113. package/dist/components/page/index.js.map +1 -0
  114. package/dist/components/password/ModifyPass.js +426 -0
  115. package/dist/components/password/ModifyPass.js.map +1 -0
  116. package/dist/components/password/api.js +100 -0
  117. package/dist/components/password/api.js.map +1 -0
  118. package/dist/components/password/confirmPwd.js +212 -0
  119. package/dist/components/password/confirmPwd.js.map +1 -0
  120. package/dist/components/password/store.js +282 -0
  121. package/dist/components/password/store.js.map +1 -0
  122. package/dist/components/presale/pickup.js +479 -0
  123. package/dist/components/presale/pickup.js.map +1 -0
  124. package/dist/components/product/detail.js +148 -0
  125. package/dist/components/product/detail.js.map +1 -0
  126. package/dist/components/product/getCard.js +145 -0
  127. package/dist/components/product/getCard.js.map +1 -0
  128. package/dist/components/progressState/EmptyAndErrorView.js +142 -0
  129. package/dist/components/progressState/EmptyAndErrorView.js.map +1 -0
  130. package/dist/components/progressState/ProgressState.js +158 -0
  131. package/dist/components/progressState/ProgressState.js.map +1 -0
  132. package/dist/components/progressState/index.js +14 -0
  133. package/dist/components/progressState/index.js.map +1 -0
  134. package/dist/components/scan/index.js +219 -0
  135. package/dist/components/scan/index.js.map +1 -0
  136. package/dist/components/select/index.js +28 -0
  137. package/dist/components/select/index.js.map +1 -0
  138. package/dist/components/settlement/asyncModal.js +207 -0
  139. package/dist/components/settlement/asyncModal.js.map +1 -0
  140. package/dist/components/settlement/index.js +25 -0
  141. package/dist/components/settlement/index.js.map +1 -0
  142. package/dist/components/settlement/moreCzkTable/index.js +156 -0
  143. package/dist/components/settlement/moreCzkTable/index.js.map +1 -0
  144. package/dist/components/settlement/prototypeTable/index.js +353 -0
  145. package/dist/components/settlement/prototypeTable/index.js.map +1 -0
  146. package/dist/components/settlement/prototypeTable/utils.js +14 -0
  147. package/dist/components/settlement/prototypeTable/utils.js.map +1 -0
  148. package/dist/components/settlement/settlement.js +5377 -0
  149. package/dist/components/settlement/settlement.js.map +1 -0
  150. package/dist/components/settlement/settlement.less +17 -0
  151. package/dist/components/settlement/settlementApi.js +512 -0
  152. package/dist/components/settlement/settlementApi.js.map +1 -0
  153. package/dist/components/settlement/settlementStore.js +3005 -0
  154. package/dist/components/settlement/settlementStore.js.map +1 -0
  155. package/dist/components/settlement/utils.js +249 -0
  156. package/dist/components/settlement/utils.js.map +1 -0
  157. package/dist/components/socket/index.js +221 -0
  158. package/dist/components/socket/index.js.map +1 -0
  159. package/dist/components/spin/index.js +95 -0
  160. package/dist/components/spin/index.js.map +1 -0
  161. package/dist/components/test/index.js +330 -0
  162. package/dist/components/test/index.js.map +1 -0
  163. package/dist/components/ticon/iconfont/iconfont.js +36 -0
  164. package/dist/components/ticon/iconfont/iconfont.js.map +1 -0
  165. package/dist/components/ticon/index.js +60 -0
  166. package/dist/components/ticon/index.js.map +1 -0
  167. package/dist/components/touchScroll/index.js +186 -0
  168. package/dist/components/touchScroll/index.js.map +1 -0
  169. package/dist/components/touchTable/AuthProcess.js +42 -0
  170. package/dist/components/touchTable/AuthProcess.js.map +1 -0
  171. package/dist/components/touchTable/generateWater.js +59 -0
  172. package/dist/components/touchTable/generateWater.js.map +1 -0
  173. package/dist/components/touchTable/index.js +1146 -0
  174. package/dist/components/touchTable/index.js.map +1 -0
  175. package/dist/components/touchTable/utils.js +27 -0
  176. package/dist/components/touchTable/utils.js.map +1 -0
  177. package/package.json +2 -2
@@ -0,0 +1,1242 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = [{
7
+ "DefaultValue": "up",
8
+ "IsEnable": true,
9
+ "IsRequired": false,
10
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":1,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected\"]}",
11
+ "Value": "up",
12
+ "Title": "上一行-开单页",
13
+ "ID": 1392530642698308,
14
+ "IdRef": "",
15
+ "IsVisible": true,
16
+ "ParamType": "SHORTCUT_KEY",
17
+ "Name": "ShortcutKeyUp1",
18
+ "TabIndex": 0
19
+ }, {
20
+ "DefaultValue": "up",
21
+ "IsEnable": true,
22
+ "IsRequired": false,
23
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":2,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".ant-table-tbody .row-selected\"]}",
24
+ "Value": "up",
25
+ "Title": "上一行-解挂页",
26
+ "ID": 1392530642698309,
27
+ "IdRef": "",
28
+ "IsVisible": true,
29
+ "ParamType": "SHORTCUT_KEY",
30
+ "Name": "ShortcutKeyUp2",
31
+ "TabIndex": 10
32
+ }, {
33
+ "DefaultValue": "up",
34
+ "IsEnable": true,
35
+ "IsRequired": false,
36
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected\"]}",
37
+ "Value": "up",
38
+ "Title": "上一行-促销",
39
+ "ID": 1392530642698310,
40
+ "IdRef": "",
41
+ "IsVisible": true,
42
+ "ParamType": "SHORTCUT_KEY",
43
+ "Name": "ShortcutKeyUp3",
44
+ "TabIndex": 20
45
+ }, {
46
+ "DefaultValue": "up",
47
+ "IsEnable": true,
48
+ "IsRequired": false,
49
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":4,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".swiper-member-container .slide-selected\"]}",
50
+ "Value": "up",
51
+ "Title": "上一行-会员页",
52
+ "ID": 1392530642698311,
53
+ "IdRef": "",
54
+ "IsVisible": true,
55
+ "ParamType": "SHORTCUT_KEY",
56
+ "Name": "ShortcutKeyUp4",
57
+ "TabIndex": 30
58
+ }, {
59
+ "DefaultValue": "down",
60
+ "IsEnable": true,
61
+ "IsRequired": false,
62
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":1,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected\"]}",
63
+ "Value": "down",
64
+ "Title": "下一行-开单页",
65
+ "ID": 1392530642698312,
66
+ "IdRef": "",
67
+ "IsVisible": true,
68
+ "ParamType": "SHORTCUT_KEY",
69
+ "Name": "ShortcutKeyDown1",
70
+ "TabIndex": 40
71
+ }, {
72
+ "DefaultValue": "down",
73
+ "IsEnable": true,
74
+ "IsRequired": false,
75
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":2,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".ant-table-tbody .row-selected\"]}",
76
+ "Value": "down",
77
+ "Title": "下一行-解挂页",
78
+ "ID": 1392530642698313,
79
+ "IdRef": "",
80
+ "IsVisible": true,
81
+ "ParamType": "SHORTCUT_KEY",
82
+ "Name": "ShortcutKeyDown2",
83
+ "TabIndex": 50
84
+ }, {
85
+ "DefaultValue": "down",
86
+ "IsEnable": true,
87
+ "IsRequired": false,
88
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected\"]}",
89
+ "Value": "down",
90
+ "Title": "下一行-促销",
91
+ "ID": 1392530642698314,
92
+ "IdRef": "",
93
+ "IsVisible": true,
94
+ "ParamType": "SHORTCUT_KEY",
95
+ "Name": "ShortcutKeyDown3",
96
+ "TabIndex": 60
97
+ }, {
98
+ "DefaultValue": "down",
99
+ "IsEnable": true,
100
+ "IsRequired": false,
101
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":4,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".swiper-member-container .slide-selected\"]}",
102
+ "Value": "down",
103
+ "Title": "下一行-会员页",
104
+ "ID": 1392530642698315,
105
+ "IdRef": "",
106
+ "IsVisible": true,
107
+ "ParamType": "SHORTCUT_KEY",
108
+ "Name": "ShortcutKeyDown4",
109
+ "TabIndex": 70
110
+ }, {
111
+ "DefaultValue": "delete",
112
+ "IsEnable": true,
113
+ "IsRequired": false,
114
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected .iconDel\"]}",
115
+ "Value": "delete",
116
+ "Title": "删除行",
117
+ "ID": 1392530642698316,
118
+ "IdRef": "",
119
+ "IsVisible": true,
120
+ "ParamType": "SHORTCUT_KEY",
121
+ "Name": "Open_DeleteRow",
122
+ "TabIndex": 80
123
+ }, {
124
+ "DefaultValue": "delete",
125
+ "IsEnable": true,
126
+ "IsRequired": false,
127
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":2,\"enableEdit\":0,\"classification\":\"3\",\"operation\":[\".ant-table-tbody .row-selected .delete\"]}",
128
+ "Value": "delete",
129
+ "Title": "挂单删除",
130
+ "ID": 1392530642698317,
131
+ "IdRef": "",
132
+ "IsVisible": true,
133
+ "ParamType": "SHORTCUT_KEY",
134
+ "Name": "Pending_DeleteRow",
135
+ "TabIndex": 90
136
+ }, {
137
+ "DefaultValue": "right",
138
+ "IsEnable": true,
139
+ "IsRequired": false,
140
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected .hot-key-Quantity\"]}",
141
+ "Value": "right",
142
+ "Title": "修改数量",
143
+ "ID": 1392530642698318,
144
+ "IdRef": "",
145
+ "IsVisible": true,
146
+ "ParamType": "SHORTCUT_KEY",
147
+ "Name": "ChangeQuantity",
148
+ "TabIndex": 100
149
+ }, {
150
+ "DefaultValue": "left",
151
+ "IsEnable": true,
152
+ "IsRequired": false,
153
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected .hot-key-TaxPrice\"]}",
154
+ "Value": "left",
155
+ "Title": "单品改价",
156
+ "ID": 1392530642698319,
157
+ "IdRef": "",
158
+ "IsVisible": true,
159
+ "ParamType": "SHORTCUT_KEY",
160
+ "Name": "SingleChangePrice",
161
+ "TabIndex": 110
162
+ }, {
163
+ "DefaultValue": "ctrl+0",
164
+ "IsEnable": true,
165
+ "IsRequired": false,
166
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=单品金额\"]}",
167
+ "Value": "tab",
168
+ "Title": "单品金额",
169
+ "ID": 1392530642698320,
170
+ "IdRef": "",
171
+ "IsVisible": true,
172
+ "ParamType": "SHORTCUT_KEY",
173
+ "Name": "SingleAmount",
174
+ "TabIndex": 120
175
+ }, {
176
+ "DefaultValue": "/",
177
+ "IsEnable": true,
178
+ "IsRequired": false,
179
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=单品打折\"]}",
180
+ "Value": "/",
181
+ "Title": "单品打折",
182
+ "ID": 1392530642698321,
183
+ "IdRef": "",
184
+ "IsVisible": true,
185
+ "ParamType": "SHORTCUT_KEY",
186
+ "Name": "SingleDiscount",
187
+ "TabIndex": 130
188
+ }, {
189
+ "DefaultValue": "ctrl+l",
190
+ "IsEnable": true,
191
+ "IsRequired": false,
192
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=修改单位\"]}",
193
+ "Value": "ctrl+l",
194
+ "Title": "修改单位",
195
+ "ID": 1392530642698322,
196
+ "IdRef": "",
197
+ "IsVisible": true,
198
+ "ParamType": "SHORTCUT_KEY",
199
+ "Name": "ChangeUnit",
200
+ "TabIndex": 140
201
+ }, {
202
+ "DefaultValue": "\\",
203
+ "IsEnable": true,
204
+ "IsRequired": false,
205
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=修改数量2\"]}",
206
+ "Value": "\\",
207
+ "Title": "修改数量2",
208
+ "ID": 1392530642698323,
209
+ "IdRef": "",
210
+ "IsVisible": true,
211
+ "ParamType": "SHORTCUT_KEY",
212
+ "Name": "ChangeQuantity2",
213
+ "TabIndex": 150
214
+ }, {
215
+ "DefaultValue": "ctrl+g",
216
+ "IsEnable": true,
217
+ "IsRequired": false,
218
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=赠品\"]}",
219
+ "Value": "ctrl+g",
220
+ "Title": "赠品",
221
+ "ID": 1392530642698324,
222
+ "IdRef": "",
223
+ "IsVisible": true,
224
+ "ParamType": "SHORTCUT_KEY",
225
+ "Name": "Present",
226
+ "TabIndex": 160
227
+ }, {
228
+ "DefaultValue": "f3",
229
+ "IsEnable": true,
230
+ "IsRequired": false,
231
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=导购员\"]}",
232
+ "Value": "f3",
233
+ "Title": "导购员",
234
+ "ID": 1392530642698325,
235
+ "IdRef": "",
236
+ "IsVisible": true,
237
+ "ParamType": "SHORTCUT_KEY",
238
+ "Name": "ShoppingGuide",
239
+ "TabIndex": 170
240
+ }, {
241
+ "DefaultValue": "ctrl+alt+z",
242
+ "IsEnable": true,
243
+ "IsRequired": false,
244
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=发货仓库\"]}",
245
+ "Value": "ctrl+alt+z",
246
+ "Title": "发货仓库",
247
+ "ID": 1392530642698322,
248
+ "IdRef": "",
249
+ "IsVisible": true,
250
+ "ParamType": "SHORTCUT_KEY",
251
+ "Name": "ChangeUnit",
252
+ "TabIndex": 141
253
+ }, {
254
+ "DefaultValue": "f5",
255
+ "IsEnable": true,
256
+ "IsRequired": false,
257
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":6,\"enableEdit\":0,\"classification\":1,\"operation\":[\".radio-group .radio\"]}",
258
+ "Value": "f5",
259
+ "Title": "整单导购",
260
+ "ID": 1392530642698326,
261
+ "IdRef": "",
262
+ "IsVisible": true,
263
+ "ParamType": "SHORTCUT_KEY",
264
+ "Name": "AllShoppingGuide",
265
+ "TabIndex": 180
266
+ }, {
267
+ "DefaultValue": "f6",
268
+ "IsEnable": true,
269
+ "IsRequired": false,
270
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":6,\"enableEdit\":0,\"classification\":1,\"operation\":[\".radio-group .radio:1\"]}",
271
+ "Value": "f6",
272
+ "Title": "当前商品导购",
273
+ "ID": 1392530642698327,
274
+ "IdRef": "",
275
+ "IsVisible": true,
276
+ "ParamType": "SHORTCUT_KEY",
277
+ "Name": "SingleShoppingGuide",
278
+ "TabIndex": 190
279
+ }, {
280
+ "DefaultValue": "ctrl+p",
281
+ "IsEnable": true,
282
+ "IsRequired": false,
283
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=批次/效期\"]}",
284
+ "Value": "ctrl+p",
285
+ "Title": "批次/效期",
286
+ "ID": 1392530642698328,
287
+ "IdRef": "",
288
+ "IsVisible": true,
289
+ "ParamType": "SHORTCUT_KEY",
290
+ "Name": "Batch",
291
+ "TabIndex": 200
292
+ }, {
293
+ "DefaultValue": "down",
294
+ "IsEnable": true,
295
+ "IsRequired": false,
296
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":8,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".row-selected\"]}",
297
+ "Value": "down",
298
+ "Title": "上一个批号",
299
+ "ID": 1392530642698329,
300
+ "IdRef": "",
301
+ "IsVisible": true,
302
+ "ParamType": "SHORTCUT_KEY",
303
+ "Name": "PreBatch",
304
+ "TabIndex": 210
305
+ }, {
306
+ "DefaultValue": "up",
307
+ "IsEnable": true,
308
+ "IsRequired": false,
309
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":8,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".row-selected\"]}",
310
+ "Value": "up",
311
+ "Title": "下一个批号",
312
+ "ID": 1392530642698330,
313
+ "IdRef": "",
314
+ "IsVisible": true,
315
+ "ParamType": "SHORTCUT_KEY",
316
+ "Name": "NextBatch",
317
+ "TabIndex": 220
318
+ }, {
319
+ "DefaultValue": "right",
320
+ "IsEnable": true,
321
+ "IsRequired": false,
322
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":8,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".row-selected .selectedCell span\"]}",
323
+ "Value": "right",
324
+ "Title": "批号修改数量",
325
+ "ID": 1392530642698331,
326
+ "IdRef": "",
327
+ "IsVisible": true,
328
+ "ParamType": "SHORTCUT_KEY",
329
+ "Name": "ChangeBatchQuentity",
330
+ "TabIndex": 230
331
+ }, {
332
+ "DefaultValue": "\\",
333
+ "IsEnable": true,
334
+ "IsRequired": false,
335
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":8,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".row-selected .hot-key-Quantity2\"]}",
336
+ "Value": "\\",
337
+ "Title": "批号修改数量2",
338
+ "ID": 1392530642698332,
339
+ "IdRef": "",
340
+ "IsVisible": true,
341
+ "ParamType": "SHORTCUT_KEY",
342
+ "Name": "ChangeBatchQuentity2",
343
+ "TabIndex": 240
344
+ }, {
345
+ "DefaultValue": "f6",
346
+ "IsEnable": true,
347
+ "IsRequired": false,
348
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":8,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[[\".modal-head-right-f6\"]]}",
349
+ "Value": "f6",
350
+ "Title": "批次/效期录入",
351
+ "ID": 1392530642698333,
352
+ "IdRef": "",
353
+ "IsVisible": true,
354
+ "ParamType": "SHORTCUT_KEY",
355
+ "Name": "InputBatch",
356
+ "TabIndex": 250
357
+ }, {
358
+ "DefaultValue": "ctrl+i",
359
+ "IsEnable": true,
360
+ "IsRequired": false,
361
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=属性\"]}",
362
+ "Value": "ctrl+i",
363
+ "Title": "属性",
364
+ "ID": 1392530642698334,
365
+ "IdRef": "",
366
+ "IsVisible": true,
367
+ "ParamType": "SHORTCUT_KEY",
368
+ "Name": "FreeItem",
369
+ "TabIndex": 260
370
+ }, {
371
+ "DefaultValue": "ctrl+j",
372
+ "IsEnable": true,
373
+ "IsRequired": false,
374
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=序列号\"]}",
375
+ "Value": "ctrl+j",
376
+ "Title": "序列号",
377
+ "ID": 1392530642698334,
378
+ "IdRef": "",
379
+ "IsVisible": true,
380
+ "ParamType": "SHORTCUT_KEY",
381
+ "Name": "SerialNumber",
382
+ "TabIndex": 261
383
+ }, {
384
+ "DefaultValue": "down",
385
+ "IsEnable": true,
386
+ "IsRequired": false,
387
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":7,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".freeItem-content .free-range-selected\"]}",
388
+ "Value": "down",
389
+ "Title": "下一类自由项",
390
+ "ID": 1392530642698335,
391
+ "IdRef": "",
392
+ "IsVisible": true,
393
+ "ParamType": "SHORTCUT_KEY",
394
+ "Name": "NextClassFreeItem",
395
+ "TabIndex": 270
396
+ }, {
397
+ "DefaultValue": "up",
398
+ "IsEnable": true,
399
+ "IsRequired": false,
400
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":7,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".freeItem-content .free-range-selected\"]}",
401
+ "Value": "up",
402
+ "Title": "上一类自由项",
403
+ "ID": 1392530642698336,
404
+ "IdRef": "",
405
+ "IsVisible": true,
406
+ "ParamType": "SHORTCUT_KEY",
407
+ "Name": "PreClassFreeItem",
408
+ "TabIndex": 280
409
+ }, {
410
+ "DefaultValue": "right",
411
+ "IsEnable": true,
412
+ "IsRequired": false,
413
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":7,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".freeItem-content .free-range-selected .free-range-select\"]}",
414
+ "Value": "right",
415
+ "Title": "下一个自由项",
416
+ "ID": 1392530642698337,
417
+ "IdRef": "",
418
+ "IsVisible": true,
419
+ "ParamType": "SHORTCUT_KEY",
420
+ "Name": "NextFreeItem",
421
+ "TabIndex": 290
422
+ }, {
423
+ "DefaultValue": "left",
424
+ "IsEnable": true,
425
+ "IsRequired": false,
426
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":7,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".freeItem-content .free-range-selected .free-range-select\"]}",
427
+ "Value": "left",
428
+ "Title": "上一个自由项",
429
+ "ID": 1392530642698338,
430
+ "IdRef": "",
431
+ "IsVisible": true,
432
+ "ParamType": "SHORTCUT_KEY",
433
+ "Name": "PreFreeItem",
434
+ "TabIndex": 300
435
+ }, {
436
+ "DefaultValue": "f9",
437
+ "IsEnable": true,
438
+ "IsRequired": false,
439
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=称重\"]}",
440
+ "Value": "f9",
441
+ "Title": "称重",
442
+ "ID": 1392530642698339,
443
+ "IdRef": "",
444
+ "IsVisible": true,
445
+ "ParamType": "SHORTCUT_KEY",
446
+ "Name": "Weigh",
447
+ "TabIndex": 310
448
+ }, {
449
+ "DefaultValue": "ctrl+8",
450
+ "IsEnable": true,
451
+ "IsRequired": false,
452
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=归零\"]}",
453
+ "Value": "ctrl+8",
454
+ "Title": "归零",
455
+ "ID": 1392530642698340,
456
+ "IdRef": "",
457
+ "IsVisible": true,
458
+ "ParamType": "SHORTCUT_KEY",
459
+ "Name": "ToZero",
460
+ "TabIndex": 320
461
+ }, {
462
+ "DefaultValue": "ctrl+9",
463
+ "IsEnable": true,
464
+ "IsRequired": false,
465
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=去皮\"]}",
466
+ "Value": "ctrl+9",
467
+ "Title": "去皮",
468
+ "ID": 1392530642698341,
469
+ "IdRef": "",
470
+ "IsVisible": true,
471
+ "ParamType": "SHORTCUT_KEY",
472
+ "Name": "RemovePeel",
473
+ "TabIndex": 330
474
+ }, {
475
+ "DefaultValue": "ctrl+n",
476
+ "IsEnable": true,
477
+ "IsRequired": false,
478
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=备注\"]}",
479
+ "Value": "ctrl+n",
480
+ "Title": "备注",
481
+ "ID": 1392530642698342,
482
+ "IdRef": "",
483
+ "IsVisible": true,
484
+ "ParamType": "SHORTCUT_KEY",
485
+ "Name": "Memo",
486
+ "TabIndex": 340
487
+ }, {
488
+ "DefaultValue": "f4",
489
+ "IsEnable": true,
490
+ "IsRequired": false,
491
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=整单打折\"]}",
492
+ "Value": "f4",
493
+ "Title": "整单打折",
494
+ "ID": 1392530642698343,
495
+ "IdRef": "",
496
+ "IsVisible": true,
497
+ "ParamType": "SHORTCUT_KEY",
498
+ "Name": "AllDiscount",
499
+ "TabIndex": 350
500
+ }, {
501
+ "DefaultValue": "ctrl+u",
502
+ "IsEnable": true,
503
+ "IsRequired": false,
504
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=整单赠送\"]}",
505
+ "Value": "ctrl+u",
506
+ "Title": "整单赠送",
507
+ "ID": 1392530642698344,
508
+ "IdRef": "",
509
+ "IsVisible": true,
510
+ "ParamType": "SHORTCUT_KEY",
511
+ "Name": "AllPresent",
512
+ "TabIndex": 360
513
+ }, {
514
+ "DefaultValue": "ctrl+q",
515
+ "IsEnable": true,
516
+ "IsRequired": false,
517
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=重新开单\"]}",
518
+ "Value": "ctrl+q",
519
+ "Title": "重新开单",
520
+ "ID": 1392530642698345,
521
+ "IdRef": "",
522
+ "IsVisible": true,
523
+ "ParamType": "SHORTCUT_KEY",
524
+ "Name": "NewBill",
525
+ "TabIndex": 370
526
+ }, {
527
+ "DefaultValue": "ctrl+r",
528
+ "IsEnable": true,
529
+ "IsRequired": false,
530
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=修改日期\"]}",
531
+ "Value": "ctrl+r",
532
+ "Title": "修改日期",
533
+ "ID": 1392530642698346,
534
+ "IdRef": "",
535
+ "IsVisible": true,
536
+ "ParamType": "SHORTCUT_KEY",
537
+ "Name": "ModifyDate",
538
+ "TabIndex": 380
539
+ }, {
540
+ "DefaultValue": "ctrl+x",
541
+ "IsEnable": true,
542
+ "IsRequired": false,
543
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=抹零\"]}",
544
+ "Value": "ctrl+x",
545
+ "Title": "抹零",
546
+ "ID": 1392530642698347,
547
+ "IdRef": "",
548
+ "IsVisible": true,
549
+ "ParamType": "SHORTCUT_KEY",
550
+ "Name": "WipeChange",
551
+ "TabIndex": 390
552
+ }, {
553
+ "DefaultValue": "ctrl+m",
554
+ "IsEnable": true,
555
+ "IsRequired": false,
556
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=整单备注\"]}",
557
+ "Value": "ctrl+m",
558
+ "Title": "整单备注",
559
+ "ID": 1392530642698348,
560
+ "IdRef": "",
561
+ "IsVisible": true,
562
+ "ParamType": "SHORTCUT_KEY",
563
+ "Name": "AllMemo",
564
+ "TabIndex": 400
565
+ }, {
566
+ "DefaultValue": "ctrl+o",
567
+ "IsEnable": true,
568
+ "IsRequired": false,
569
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=收货人\"]}",
570
+ "Value": "ctrl+o",
571
+ "Title": "收货人",
572
+ "ID": 1398167653056666,
573
+ "IdRef": "",
574
+ "IsVisible": true,
575
+ "ParamType": "SHORTCUT_KEY",
576
+ "Name": "Buyers",
577
+ "TabIndex": 405
578
+ }, {
579
+ "DefaultValue": "ctrl+7",
580
+ "IsEnable": true,
581
+ "IsRequired": false,
582
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=配送方式\"]}",
583
+ "Value": "ctrl+7",
584
+ "Title": "配送方式",
585
+ "ID": 1398167653056777,
586
+ "IdRef": "",
587
+ "IsVisible": true,
588
+ "ParamType": "SHORTCUT_KEY",
589
+ "Name": "DeliveryType",
590
+ "TabIndex": 406
591
+ }, {
592
+ "DefaultValue": "ctrl+alt+m",
593
+ "IsEnable": true,
594
+ "IsRequired": false,
595
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=客户\"]}",
596
+ "Value": "ctrl+alt+m",
597
+ "Title": "客户",
598
+ "ID": 1398167653056778,
599
+ "IdRef": "",
600
+ "IsVisible": true,
601
+ "ParamType": "SHORTCUT_KEY",
602
+ "Name": "CustVendorKey",
603
+ "TabIndex": 407
604
+ }, {
605
+ "DefaultValue": "ctrl+z",
606
+ "IsEnable": true,
607
+ "IsRequired": false,
608
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"2\",\"operation\":[\".hide-dom-tokey .action-btn=挂账\"]}",
609
+ "Value": "ctrl+z",
610
+ "Title": "挂账",
611
+ "ID": 1398167653056779,
612
+ "IdRef": "",
613
+ "IsVisible": true,
614
+ "ParamType": "SHORTCUT_KEY",
615
+ "Name": "CreditSalesKey",
616
+ "TabIndex": 408
617
+ }, {
618
+ "DefaultValue": "ctrl+home",
619
+ "IsEnable": true,
620
+ "IsRequired": false,
621
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .icon-shouye2\"]}",
622
+ "Value": "ctrl+home",
623
+ "Title": "首页",
624
+ "ID": 1392530642698349,
625
+ "IdRef": "",
626
+ "IsVisible": true,
627
+ "ParamType": "SHORTCUT_KEY",
628
+ "Name": "Home",
629
+ "TabIndex": 410
630
+ }, {
631
+ "DefaultValue": "ctrl+1",
632
+ "IsEnable": true,
633
+ "IsRequired": false,
634
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=非原单退货\"]}",
635
+ "Value": "ctrl+1",
636
+ "Title": "非原单退货",
637
+ "ID": 1392530642698350,
638
+ "IdRef": "",
639
+ "IsVisible": true,
640
+ "ParamType": "SHORTCUT_KEY",
641
+ "Name": "NoOrigReturn",
642
+ "TabIndex": 420
643
+ }, {
644
+ "DefaultValue": "ctrl+t",
645
+ "IsEnable": true,
646
+ "IsRequired": false,
647
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=原单退货\"]}",
648
+ "Value": "ctrl+t",
649
+ "Title": "原单退货",
650
+ "ID": 1392530642698351,
651
+ "IdRef": "",
652
+ "IsVisible": true,
653
+ "ParamType": "SHORTCUT_KEY",
654
+ "Name": "OrigReturn",
655
+ "TabIndex": 430
656
+ }, {
657
+ "DefaultValue": "pagedown",
658
+ "IsEnable": true,
659
+ "IsRequired": false,
660
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .icon-guadanxian1\"]}",
661
+ "Value": "pagedown",
662
+ "Title": "挂单取单",
663
+ "ID": 1392530642698352,
664
+ "IdRef": "",
665
+ "IsVisible": true,
666
+ "ParamType": "SHORTCUT_KEY",
667
+ "Name": "PendingVoucher",
668
+ "TabIndex": 440
669
+ }, {
670
+ "DefaultValue": "f1",
671
+ "IsEnable": true,
672
+ "IsRequired": false,
673
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":3,\"operation\":[\".MemberContainer .member-hotkey-info\"]}",
674
+ "Value": "f1",
675
+ "Title": "会员卡",
676
+ "ID": 1392530642698353,
677
+ "IdRef": "",
678
+ "IsVisible": true,
679
+ "ParamType": "SHORTCUT_KEY",
680
+ "Name": "MemberCard",
681
+ "TabIndex": 450
682
+ }, {
683
+ "DefaultValue": "f8",
684
+ "IsEnable": true,
685
+ "IsRequired": false,
686
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":3,\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=会员新增\"]}",
687
+ "Value": "f8",
688
+ "Title": "会员新增",
689
+ "ID": 1392530642698354,
690
+ "IdRef": "",
691
+ "IsVisible": true,
692
+ "ParamType": "SHORTCUT_KEY",
693
+ "Name": "MemberAdd",
694
+ "TabIndex": 510
695
+ }, {
696
+ "DefaultValue": "shift+1",
697
+ "IsEnable": true,
698
+ "IsRequired": false,
699
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":1,\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=储值卡\"]}",
700
+ "Value": "shift+1",
701
+ "Title": "储值卡",
702
+ "ID": 1644862880743537,
703
+ "IdRef": "",
704
+ "IsVisible": true,
705
+ "ParamType": "SHORTCUT_KEY",
706
+ "Name": "MemberManagement",
707
+ "TabIndex": 512
708
+ }, {
709
+ "DefaultValue": "ctrl+2",
710
+ "IsEnable": true,
711
+ "IsRequired": false,
712
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=库存查询\"]}",
713
+ "Value": "ctrl+2",
714
+ "Title": "库存查询",
715
+ "ID": 1392530642698355,
716
+ "IdRef": "",
717
+ "IsVisible": true,
718
+ "ParamType": "SHORTCUT_KEY",
719
+ "Name": "SearchStock",
720
+ "TabIndex": 520
721
+ }, {
722
+ "DefaultValue": "ctrl+3",
723
+ "IsEnable": true,
724
+ "IsRequired": false,
725
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=单据查询\"]}",
726
+ "Value": "ctrl+3",
727
+ "Title": "单据查询",
728
+ "ID": 1392530642698356,
729
+ "IdRef": "",
730
+ "IsVisible": true,
731
+ "ParamType": "SHORTCUT_KEY",
732
+ "Name": "SearchRetail",
733
+ "TabIndex": 530
734
+ }, {
735
+ "DefaultValue": "f11",
736
+ "IsEnable": true,
737
+ "IsRequired": false,
738
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":3,\"operation\":[[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=自提\"],[\".pos-side-bar .sider-bar-menu-item .menu-submenu-content .menu-submenu-title=自提\"]]}",
739
+ "Value": "f11",
740
+ "Title": "自提",
741
+ "ID": 1392530642698357,
742
+ "IdRef": "",
743
+ "IsVisible": true,
744
+ "ParamType": "SHORTCUT_KEY",
745
+ "Name": "PickedUp",
746
+ "TabIndex": 540
747
+ }, {
748
+ "DefaultValue": "ctrl+alt+x",
749
+ "IsEnable": true,
750
+ "IsRequired": false,
751
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":3,\"operation\":[[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=收款\"],[\".pos-side-bar .sider-bar-menu-item .menu-submenu-content .menu-submenu-title=收款\"]]}",
752
+ "Value": "ctrl+alt+x",
753
+ "Title": "收款",
754
+ "ID": 1392530642698381,
755
+ "IdRef": "",
756
+ "IsVisible": true,
757
+ "ParamType": "SHORTCUT_KEY",
758
+ "Name": "CreditSalesCashierKey",
759
+ "TabIndex": 541
760
+ }, {
761
+ "DefaultValue": "ctrl+h",
762
+ "IsEnable": true,
763
+ "IsRequired": false,
764
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=快捷键\"],[\".pos-side-bar .sider-bar-menu-item-quickKey\"]]}",
765
+ "Value": "ctrl+h",
766
+ "Title": "快捷键",
767
+ "ID": 1392530642698358,
768
+ "IdRef": "",
769
+ "IsVisible": true,
770
+ "ParamType": "SHORTCUT_KEY",
771
+ "Name": "Shortcuts",
772
+ "TabIndex": 560
773
+ }, {
774
+ "DefaultValue": "end",
775
+ "IsEnable": true,
776
+ "IsRequired": false,
777
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[[\".pos-side-bar .sider-bar-menu-item-more .sub-menu-item span=钱箱\"],[\".pos-side-bar .sider-bar-menu-item-cashbox\"],[\".pos-side-bar .cashbox-itemmm .icon-danqianxiang\"]]}",
778
+ "Value": "end",
779
+ "Title": "钱箱",
780
+ "ID": 1392530642698359,
781
+ "IdRef": "",
782
+ "IsVisible": true,
783
+ "ParamType": "SHORTCUT_KEY",
784
+ "Name": "OpenCashbox",
785
+ "TabIndex": 570
786
+ }, {
787
+ "DefaultValue": "home",
788
+ "IsEnable": true,
789
+ "IsRequired": false,
790
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":0,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=锁屏\"],[\".pos-side-bar .sider-bar-menu-item-lock\"]]}",
791
+ "Value": "home",
792
+ "Title": "锁屏",
793
+ "ID": 1392530642698360,
794
+ "IdRef": "",
795
+ "IsVisible": true,
796
+ "ParamType": "SHORTCUT_KEY",
797
+ "Name": "Lock",
798
+ "TabIndex": 580
799
+ }, {
800
+ "DefaultValue": "ctrl+4",
801
+ "IsEnable": true,
802
+ "IsRequired": false,
803
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span.presale-key\"]}",
804
+ "Value": "ctrl+4",
805
+ "Title": "预订",
806
+ "ID": 1398167653056555,
807
+ "IdRef": "",
808
+ "IsVisible": true,
809
+ "ParamType": "SHORTCUT_KEY",
810
+ "Name": "PreSale",
811
+ "TabIndex": 585
812
+ }, {
813
+ "DefaultValue": "ctrl+6",
814
+ "IsEnable": true,
815
+ "IsRequired": false,
816
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".pos-side-bar .sider-bar-menu-item .sub-menu-item span=取货\"]}",
817
+ "Value": "ctrl+6",
818
+ "Title": "取货",
819
+ "ID": 1398167653056525,
820
+ "IdRef": "",
821
+ "IsVisible": true,
822
+ "ParamType": "SHORTCUT_KEY",
823
+ "Name": "PickUp",
824
+ "TabIndex": 587
825
+ }, {
826
+ "DefaultValue": "f5",
827
+ "IsEnable": true,
828
+ "IsRequired": false,
829
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".billingSettlement .quick:0\"]}",
830
+ "Value": "f5",
831
+ "Title": "常用结算方式1",
832
+ "ID": 1392530642698361,
833
+ "IdRef": "",
834
+ "IsVisible": true,
835
+ "ParamType": "SHORTCUT_KEY",
836
+ "Name": "SettleStyle1",
837
+ "TabIndex": 590
838
+ }, {
839
+ "DefaultValue": "f6",
840
+ "IsEnable": true,
841
+ "IsRequired": false,
842
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".billingSettlement .quick:1\"]}",
843
+ "Value": "f6",
844
+ "Title": "常用结算方式2",
845
+ "ID": 1392530642698362,
846
+ "IdRef": "",
847
+ "IsVisible": true,
848
+ "ParamType": "SHORTCUT_KEY",
849
+ "Name": "SettleStyle2",
850
+ "TabIndex": 600
851
+ }, {
852
+ "DefaultValue": "f7",
853
+ "IsEnable": true,
854
+ "IsRequired": false,
855
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".billingSettlement .quick:2\"]}",
856
+ "Value": "f7",
857
+ "Title": "常用结算方式3",
858
+ "ID": 1392530642698363,
859
+ "IdRef": "",
860
+ "IsVisible": true,
861
+ "ParamType": "SHORTCUT_KEY",
862
+ "Name": "SettleStyle3",
863
+ "TabIndex": 610
864
+ }, {
865
+ "DefaultValue": "f10",
866
+ "IsEnable": true,
867
+ "IsRequired": false,
868
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":1,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".billingSettlement .settle\"]}",
869
+ "Value": "f10",
870
+ "Title": "复合结算",
871
+ "ID": 1392530642698364,
872
+ "IdRef": "",
873
+ "IsVisible": true,
874
+ "ParamType": "SHORTCUT_KEY",
875
+ "Name": "MutliSettle",
876
+ "TabIndex": 620
877
+ }, {
878
+ "DefaultValue": "f3",
879
+ "IsEnable": true,
880
+ "IsRequired": false,
881
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:0\"]}",
882
+ "Value": "ctrl+3",
883
+ "Title": "复合结算方式1",
884
+ "ID": 1392530642698365,
885
+ "IdRef": "",
886
+ "IsVisible": true,
887
+ "ParamType": "SHORTCUT_KEY",
888
+ "Name": "MutliSettleStyle1",
889
+ "TabIndex": 630
890
+ }, {
891
+ "DefaultValue": "f4",
892
+ "IsEnable": true,
893
+ "IsRequired": false,
894
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:1\"]}",
895
+ "Value": "ctrl+4",
896
+ "Title": "复合结算方式2",
897
+ "ID": 1392530642698366,
898
+ "IdRef": "",
899
+ "IsVisible": true,
900
+ "ParamType": "SHORTCUT_KEY",
901
+ "Name": "MutliSettleStyle2",
902
+ "TabIndex": 640
903
+ }, {
904
+ "DefaultValue": "f5",
905
+ "IsEnable": true,
906
+ "IsRequired": false,
907
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:2\"]}",
908
+ "Value": "f5",
909
+ "Title": "复合结算方式3",
910
+ "ID": 1392530642698367,
911
+ "IdRef": "",
912
+ "IsVisible": true,
913
+ "ParamType": "SHORTCUT_KEY",
914
+ "Name": "MutliSettleStyle3",
915
+ "TabIndex": 650
916
+ }, {
917
+ "DefaultValue": "f6",
918
+ "IsEnable": true,
919
+ "IsRequired": false,
920
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:3\"]}",
921
+ "Value": "f6",
922
+ "Title": "复合结算方式4",
923
+ "ID": 1392530642698368,
924
+ "IdRef": "",
925
+ "IsVisible": true,
926
+ "ParamType": "SHORTCUT_KEY",
927
+ "Name": "MutliSettleStyle4",
928
+ "TabIndex": 660
929
+ }, {
930
+ "DefaultValue": "f7",
931
+ "IsEnable": true,
932
+ "IsRequired": false,
933
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:4\"]}",
934
+ "Value": "f7",
935
+ "Title": "复合结算方式5",
936
+ "ID": 1392530642698369,
937
+ "IdRef": "",
938
+ "IsVisible": true,
939
+ "ParamType": "SHORTCUT_KEY",
940
+ "Name": "MutliSettleStyle5",
941
+ "TabIndex": 670
942
+ }, {
943
+ "DefaultValue": "f8",
944
+ "IsEnable": true,
945
+ "IsRequired": false,
946
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:5\"]}",
947
+ "Value": "f8",
948
+ "Title": "复合结算方式6",
949
+ "ID": 1392530642698370,
950
+ "IdRef": "",
951
+ "IsVisible": true,
952
+ "ParamType": "SHORTCUT_KEY",
953
+ "Name": "MutliSettleStyle6",
954
+ "TabIndex": 680
955
+ }, {
956
+ "DefaultValue": "f9",
957
+ "IsEnable": true,
958
+ "IsRequired": false,
959
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:6\"]}",
960
+ "Value": "f9",
961
+ "Title": "复合结算方式7",
962
+ "ID": 1392530642698371,
963
+ "IdRef": "",
964
+ "IsVisible": true,
965
+ "ParamType": "SHORTCUT_KEY",
966
+ "Name": "MutliSettleStyle7",
967
+ "TabIndex": 690
968
+ }, {
969
+ "DefaultValue": "f10",
970
+ "IsEnable": true,
971
+ "IsRequired": false,
972
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:7\"]}",
973
+ "Value": "f10",
974
+ "Title": "复合结算方式8",
975
+ "ID": 1392530642698372,
976
+ "IdRef": "",
977
+ "IsVisible": true,
978
+ "ParamType": "SHORTCUT_KEY",
979
+ "Name": "MutliSettleStyle8",
980
+ "TabIndex": 700
981
+ }, {
982
+ "DefaultValue": "f11",
983
+ "IsEnable": true,
984
+ "IsRequired": false,
985
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:8\"]}",
986
+ "Value": "f11",
987
+ "Title": "复合结算方式9",
988
+ "ID": 1392530642698373,
989
+ "IdRef": "",
990
+ "IsVisible": true,
991
+ "ParamType": "SHORTCUT_KEY",
992
+ "Name": "MutliSettleStyle9",
993
+ "TabIndex": 710
994
+ }, {
995
+ "DefaultValue": "f12",
996
+ "IsEnable": true,
997
+ "IsRequired": false,
998
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":5,\"enableEdit\":1,\"classification\":\"4\",\"operation\":[\".settlement .paymode:9\"]}",
999
+ "Value": "f12",
1000
+ "Title": "复合结算方式10",
1001
+ "ID": 1392530642698374,
1002
+ "IdRef": "",
1003
+ "IsVisible": true,
1004
+ "ParamType": "SHORTCUT_KEY",
1005
+ "Name": "MutliSettleStyle10",
1006
+ "TabIndex": 720
1007
+ }, {
1008
+ "DefaultValue": "right",
1009
+ "IsEnable": true,
1010
+ "IsRequired": false,
1011
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".voucher-body .row-selected .hot-key-Quantity\"]}",
1012
+ "Value": "right",
1013
+ "Title": "促销-修改数量",
1014
+ "ID": 1392530642698375,
1015
+ "IdRef": "",
1016
+ "IsVisible": true,
1017
+ "ParamType": "SHORTCUT_KEY",
1018
+ "Name": "Promotion_ChangeQuantity",
1019
+ "TabIndex": 730
1020
+ }, {
1021
+ "DefaultValue": "\\",
1022
+ "IsEnable": true,
1023
+ "IsRequired": false,
1024
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".hide-dom-tokey .action-btn=修改数量2\"]}",
1025
+ "Value": "\\",
1026
+ "Title": "促销-修改数量2",
1027
+ "ID": 1392530642698376,
1028
+ "IdRef": "",
1029
+ "IsVisible": true,
1030
+ "ParamType": "SHORTCUT_KEY",
1031
+ "Name": "Promotion_ChangeQuantity2",
1032
+ "TabIndex": 740
1033
+ }, {
1034
+ "DefaultValue": "ctrl+p",
1035
+ "IsEnable": true,
1036
+ "IsRequired": false,
1037
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".hasTabs .u-button=批次\"]}",
1038
+ "Value": "ctrl+p",
1039
+ "Title": "促销-批次",
1040
+ "ID": 1392530642698377,
1041
+ "IdRef": "",
1042
+ "IsVisible": true,
1043
+ "ParamType": "SHORTCUT_KEY",
1044
+ "Name": "Promotion_Batch",
1045
+ "TabIndex": 750
1046
+ }, {
1047
+ "DefaultValue": "ctrl+i",
1048
+ "IsEnable": true,
1049
+ "IsRequired": false,
1050
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"1\",\"operation\":[\".hasTabs .u-button=自由项\"]}",
1051
+ "Value": "ctrl+i",
1052
+ "Title": "促销-自由项",
1053
+ "ID": 1392530642698378,
1054
+ "IdRef": "",
1055
+ "IsVisible": true,
1056
+ "ParamType": "SHORTCUT_KEY",
1057
+ "Name": "Promotion_FreeItem",
1058
+ "TabIndex": 760
1059
+ }, {
1060
+ "DefaultValue": "delete",
1061
+ "IsEnable": true,
1062
+ "IsRequired": false,
1063
+ "ExtField": "{\"isdisplay\":0,\"dynamic\":1,\"operationType\":9,\"enableEdit\":0,\"classification\":\"3\",\"operation\":[\".hasTabs .row-selected .shanchu .icon-shanchu\"]}",
1064
+ "Value": "delete",
1065
+ "Title": "促销-删除行",
1066
+ "ID": 1392530642698379,
1067
+ "IdRef": "",
1068
+ "IsVisible": true,
1069
+ "ParamType": "SHORTCUT_KEY",
1070
+ "Name": "Promotion_DeleteRow",
1071
+ "TabIndex": 770
1072
+ }, {
1073
+ "DefaultValue": "f7",
1074
+ "IsEnable": false,
1075
+ "IsRequired": false,
1076
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":6,\"enableEdit\":0,\"classification\":1,\"operation\":[\".guide-content-out .ant-checkbox input\"]}",
1077
+ "Value": "f7",
1078
+ "Title": "他店",
1079
+ "ID": 1392530642698380,
1080
+ "IdRef": "",
1081
+ "IsVisible": true,
1082
+ "ParamType": "SHORTCUT_KEY",
1083
+ "Name": "OtherStore",
1084
+ "TabIndex": 195
1085
+ }, {
1086
+ "DefaultValue": "f2",
1087
+ "IsEnable": true,
1088
+ "IsRequired": false,
1089
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":4,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-content-tab .member-menu-el span=储值\"]}",
1090
+ "Value": "f2",
1091
+ "Title": "储值",
1092
+ "ID": 1398167653056512,
1093
+ "IdRef": "",
1094
+ "IsVisible": true,
1095
+ "ParamType": "SHORTCUT_KEY",
1096
+ "Name": "MemberStorage",
1097
+ "TabIndex": 470
1098
+ }, {
1099
+ "DefaultValue": "f3",
1100
+ "IsEnable": true,
1101
+ "IsRequired": false,
1102
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":4,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-content-tab .member-menu-el span=设置密码\"]}",
1103
+ "Value": "f3",
1104
+ "Title": "设置密码",
1105
+ "ID": 1398167653056513,
1106
+ "IdRef": "",
1107
+ "IsVisible": true,
1108
+ "ParamType": "SHORTCUT_KEY",
1109
+ "Name": "MemberSetPassword",
1110
+ "TabIndex": 471
1111
+ }, {
1112
+ "DefaultValue": "f4",
1113
+ "IsEnable": true,
1114
+ "IsRequired": false,
1115
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":4,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-content-tab .member-menu-el span=修改密码\"]}",
1116
+ "Value": "f4",
1117
+ "Title": "修改密码",
1118
+ "ID": 1398167653056514,
1119
+ "IdRef": "",
1120
+ "IsVisible": true,
1121
+ "ParamType": "SHORTCUT_KEY",
1122
+ "Name": "ModifyPassword",
1123
+ "TabIndex": 472
1124
+ }, {
1125
+ "DefaultValue": "f5",
1126
+ "IsEnable": true,
1127
+ "IsRequired": false,
1128
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":4,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-content-tab .member-menu-el span=重置密码\"]}",
1129
+ "Value": "f5",
1130
+ "Title": "重置密码",
1131
+ "ID": 1398167653056515,
1132
+ "IdRef": "",
1133
+ "IsVisible": true,
1134
+ "ParamType": "SHORTCUT_KEY",
1135
+ "Name": "PosResetPwd",
1136
+ "TabIndex": 473
1137
+ }, {
1138
+ "DefaultValue": "f6",
1139
+ "IsEnable": true,
1140
+ "IsRequired": false,
1141
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":4,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-content-tab .member-menu-el span=绑卡\"]}",
1142
+ "Value": "f6",
1143
+ "Title": "绑卡",
1144
+ "ID": 1398167653056516,
1145
+ "IdRef": "",
1146
+ "IsVisible": true,
1147
+ "ParamType": "SHORTCUT_KEY",
1148
+ "Name": "BindCard",
1149
+ "TabIndex": 474
1150
+ }, {
1151
+ "DefaultValue": "f2",
1152
+ "IsEnable": true,
1153
+ "IsRequired": false,
1154
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=储值\"]}",
1155
+ "Value": "f2",
1156
+ "Title": "储值",
1157
+ "ID": 1398167653056517,
1158
+ "IdRef": "",
1159
+ "IsVisible": true,
1160
+ "ParamType": "SHORTCUT_KEY",
1161
+ "Name": "MemberStorage",
1162
+ "TabIndex": 780
1163
+ }, {
1164
+ "DefaultValue": "f3",
1165
+ "IsEnable": true,
1166
+ "IsRequired": false,
1167
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=退储值\"]}",
1168
+ "Value": "f3",
1169
+ "Title": "退储值",
1170
+ "ID": 1398167653056518,
1171
+ "IdRef": "",
1172
+ "IsVisible": true,
1173
+ "ParamType": "SHORTCUT_KEY",
1174
+ "Name": "RefundStorage",
1175
+ "TabIndex": 781
1176
+ }, {
1177
+ "DefaultValue": "f4",
1178
+ "IsEnable": true,
1179
+ "IsRequired": false,
1180
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=设置密码\"]}",
1181
+ "Value": "f4",
1182
+ "Title": "设置密码",
1183
+ "ID": 1398167653056519,
1184
+ "IdRef": "",
1185
+ "IsVisible": true,
1186
+ "ParamType": "SHORTCUT_KEY",
1187
+ "Name": "CardSetPassword",
1188
+ "TabIndex": 782
1189
+ }, {
1190
+ "DefaultValue": "f5",
1191
+ "IsEnable": true,
1192
+ "IsRequired": false,
1193
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=修改密码\"]}",
1194
+ "Value": "f5",
1195
+ "Title": "修改密码",
1196
+ "ID": 1398167653056520,
1197
+ "IdRef": "",
1198
+ "IsVisible": true,
1199
+ "ParamType": "SHORTCUT_KEY",
1200
+ "Name": "CardModifyPassword",
1201
+ "TabIndex": 783
1202
+ }, {
1203
+ "DefaultValue": "f6",
1204
+ "IsEnable": true,
1205
+ "IsRequired": false,
1206
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=重置密码\"]}",
1207
+ "Value": "f6",
1208
+ "Title": "重置密码",
1209
+ "ID": 1398167653056521,
1210
+ "IdRef": "",
1211
+ "IsVisible": true,
1212
+ "ParamType": "SHORTCUT_KEY",
1213
+ "Name": "CardPosResetPwd",
1214
+ "TabIndex": 784
1215
+ }, {
1216
+ "DefaultValue": "f7",
1217
+ "IsEnable": true,
1218
+ "IsRequired": false,
1219
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=会员绑定\"]}",
1220
+ "Value": "f7",
1221
+ "Title": "会员绑定",
1222
+ "ID": 1398167653056522,
1223
+ "IdRef": "",
1224
+ "IsVisible": true,
1225
+ "ParamType": "SHORTCUT_KEY",
1226
+ "Name": "BindStorageCard",
1227
+ "TabIndex": 785
1228
+ }, {
1229
+ "DefaultValue": "f8",
1230
+ "IsEnable": true,
1231
+ "IsRequired": false,
1232
+ "ExtField": "{\"isdisplay\":1,\"dynamic\":1,\"operationType\":10,\"enableEdit\":1,\"classification\":\"3\",\"operation\":[\".member-menu .member-menu-el span=解绑\"]}",
1233
+ "Value": "f8",
1234
+ "Title": "解绑",
1235
+ "ID": 1398167653056523,
1236
+ "IdRef": "",
1237
+ "IsVisible": true,
1238
+ "ParamType": "SHORTCUT_KEY",
1239
+ "Name": "UnBindStorageCard",
1240
+ "TabIndex": 786
1241
+ }];
1242
+ //# sourceMappingURL=localConfig.js.map