eoss-ui 0.5.80 → 0.5.81-beta1

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 (122) hide show
  1. package/lib/button-group.js +229 -215
  2. package/lib/button.js +21 -19
  3. package/lib/calendar.js +2 -2
  4. package/lib/card.js +2 -2
  5. package/lib/cascader.js +2 -2
  6. package/lib/checkbox-group.js +21 -20
  7. package/lib/clients.js +2 -2
  8. package/lib/config/api.js +1 -0
  9. package/lib/data-table-form.js +19 -17
  10. package/lib/data-table.js +27 -25
  11. package/lib/date-picker.js +21 -19
  12. package/lib/dialog.js +21 -20
  13. package/lib/enterprise.js +2 -2
  14. package/lib/eoss-ui.common.js +6159 -1106
  15. package/lib/error-page.js +2 -2
  16. package/lib/flow-group.js +21 -19
  17. package/lib/flow-list.js +21 -19
  18. package/lib/flow.js +24 -22
  19. package/lib/form.js +21 -20
  20. package/lib/handle-user.js +21 -19
  21. package/lib/handler.js +25 -23
  22. package/lib/icon.js +3745 -13
  23. package/lib/icons.js +3 -3
  24. package/lib/index.js +1 -1
  25. package/lib/input-number.js +21 -19
  26. package/lib/input.js +21 -19
  27. package/lib/label.js +2 -2
  28. package/lib/layout.js +2 -2
  29. package/lib/login.js +98 -55
  30. package/lib/main.js +5822 -835
  31. package/lib/menu.js +2 -2
  32. package/lib/nav.js +21 -19
  33. package/lib/notify.js +18 -16
  34. package/lib/page.js +21 -19
  35. package/lib/pagination.js +2 -2
  36. package/lib/player.js +25 -23
  37. package/lib/qr-code.js +23 -21
  38. package/lib/radio-group.js +21 -19
  39. package/lib/retrial-auth.js +22 -20
  40. package/lib/select-ganged.js +21 -19
  41. package/lib/select.js +21 -19
  42. package/lib/selector-panel.js +24 -23
  43. package/lib/selector.js +30 -28
  44. package/lib/sizer.js +21 -19
  45. package/lib/steps.js +21 -19
  46. package/lib/switch.js +28 -26
  47. package/lib/table-form.js +21 -19
  48. package/lib/tabs-panel.js +2 -2
  49. package/lib/tabs.js +21 -19
  50. package/lib/theme-chalk/base.css +1 -1
  51. package/lib/theme-chalk/data-table.css +1 -1
  52. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  53. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  54. package/lib/theme-chalk/icon.css +1 -1
  55. package/lib/theme-chalk/index.css +1 -1
  56. package/lib/theme-chalk/login.css +1 -1
  57. package/lib/theme-chalk/main.css +1 -1
  58. package/lib/theme-chalk/menu.css +1 -1
  59. package/lib/theme-chalk/simplicity.css +1 -0
  60. package/lib/theme-chalk/sizer.css +1 -1
  61. package/lib/theme-chalk/upload.css +1 -1
  62. package/lib/tips.js +22 -20
  63. package/lib/toolbar.js +2 -2
  64. package/lib/tree-group.js +21 -19
  65. package/lib/tree.js +21 -19
  66. package/lib/upload.js +39 -38
  67. package/lib/utils/util.js +1 -1
  68. package/lib/wujie.js +21 -19
  69. package/lib/wxlogin.js +164 -162
  70. package/package.json +2 -2
  71. package/packages/data-table/src/main.vue +1 -0
  72. package/packages/handler/src/main.vue +3 -1
  73. package/packages/icon/src/main.vue +42 -11
  74. package/packages/icons/src/icon.json +1 -1
  75. package/packages/login/src/main.vue +14 -6
  76. package/packages/main/src/default/index.vue +2121 -0
  77. package/packages/main/src/main.vue +31 -2214
  78. package/packages/main/src/simplicity/apps.vue +338 -0
  79. package/packages/main/src/simplicity/avatar.vue +68 -0
  80. package/packages/main/src/simplicity/handler.vue +188 -0
  81. package/packages/main/src/simplicity/index.vue +1608 -0
  82. package/packages/main/src/simplicity/lists.vue +84 -0
  83. package/packages/main/src/simplicity/menu-list.vue +77 -0
  84. package/packages/main/src/simplicity/message.vue +237 -0
  85. package/packages/main/src/simplicity/notice.vue +145 -0
  86. package/packages/main/src/simplicity/settings.vue +119 -0
  87. package/packages/main/src/simplicity/sub-menu.vue +126 -0
  88. package/packages/main/src/simplicity/user.vue +243 -0
  89. package/packages/main/src/simplicity/userinfo.vue +302 -0
  90. package/packages/theme-chalk/lib/base.css +1 -1
  91. package/packages/theme-chalk/lib/data-table.css +1 -1
  92. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  93. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  94. package/packages/theme-chalk/lib/icon.css +1 -1
  95. package/packages/theme-chalk/lib/index.css +1 -1
  96. package/packages/theme-chalk/lib/login.css +1 -1
  97. package/packages/theme-chalk/lib/main.css +1 -1
  98. package/packages/theme-chalk/lib/menu.css +1 -1
  99. package/packages/theme-chalk/lib/simplicity.css +1 -0
  100. package/packages/theme-chalk/lib/sizer.css +1 -1
  101. package/packages/theme-chalk/lib/upload.css +1 -1
  102. package/packages/theme-chalk/src/base.scss +1 -0
  103. package/packages/theme-chalk/src/common/var.scss +4 -0
  104. package/packages/theme-chalk/src/data-table.scss +0 -3
  105. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  106. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  107. package/packages/theme-chalk/src/icon.scss +4 -4
  108. package/packages/theme-chalk/src/login.scss +644 -632
  109. package/packages/theme-chalk/src/main.scss +8 -4
  110. package/packages/theme-chalk/src/simplicity.scss +566 -0
  111. package/packages/upload/src/main.vue +15 -17
  112. package/src/config/api.js +1 -0
  113. package/src/index.js +1 -1
  114. package/src/utils/util.js +1 -1
  115. package/lib/theme-chalk/mainComp.css +0 -0
  116. package/packages/main/src/async-component/index.vue +0 -87
  117. package/packages/theme-chalk/lib/mainComp.css +0 -0
  118. package/packages/theme-chalk/src/mainComp.scss +0 -0
  119. /package/packages/main/src/{message.vue → default/message.vue} +0 -0
  120. /package/packages/main/src/{notice.vue → default/notice.vue} +0 -0
  121. /package/packages/main/src/{settings.vue → default/settings.vue} +0 -0
  122. /package/packages/main/src/{userinfo.vue → default/userinfo.vue} +0 -0
package/lib/select.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 78);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 77);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -1387,7 +1387,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1387
1387
  * @param {function} callback - 回调函数
1388
1388
  **/
1389
1389
  var getMainConfig = function getMainConfig(callback) {
1390
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1390
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "fb"] }).then(function (res) {
1391
1391
  if (res && res.rCode === 0) {
1392
1392
  callback(res.results);
1393
1393
  }
@@ -2121,7 +2121,7 @@ var isLogined = function isLogined(_ref8) {
2121
2121
  }
2122
2122
  var quit = getParams('quit') || getParams('logout');
2123
2123
  if (quit) {
2124
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2124
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "eb"] }).then(function (res) {
2125
2125
  if (res.rCode === 0) {
2126
2126
  removeStorage();
2127
2127
  }
@@ -2560,7 +2560,7 @@ var replenish = function replenish(_ref12) {
2560
2560
  while (res.length <= len + precision) {
2561
2561
  res += '0';
2562
2562
  }
2563
- return parseFloat(res);
2563
+ return res;
2564
2564
  }
2565
2565
  return data;
2566
2566
  };
@@ -3249,8 +3249,8 @@ var watermark = function watermark(option) {
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3250
3250
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3251
3251
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3252
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3253
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3252
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3253
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3254
3254
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3255
3255
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3256
3256
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
@@ -3258,19 +3258,19 @@ var watermark = function watermark(option) {
3258
3258
  /* unused harmony export updateCode */
3259
3259
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3260
3260
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3261
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3261
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
3262
3262
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3263
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3263
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3265
3265
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3267
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3267
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3269
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3270
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3271
3271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3272
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3273
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3272
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3273
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3274
3274
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3275
3275
  /* unused harmony export getUserImgUrl */
3276
3276
  /* unused harmony export getDoorIndex */
@@ -3279,11 +3279,12 @@ var watermark = function watermark(option) {
3279
3279
  /* unused harmony export getApplicationIdArray */
3280
3280
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3281
3281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3282
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3282
3283
  /* unused harmony export getUserCustomInfo */
3283
3284
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3284
3285
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3285
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3286
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3286
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3287
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3287
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3288
3289
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3289
3290
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
@@ -3305,9 +3306,9 @@ var watermark = function watermark(option) {
3305
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3306
3307
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3307
3308
  /* unused harmony export findUserBaseInfo */
3308
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3309
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3309
3310
  /* unused harmony export getCurrentuser */
3310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3311
+ /* unused harmony export mainDetail */
3311
3312
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3312
3313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3313
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
@@ -3336,8 +3337,8 @@ var watermark = function watermark(option) {
3336
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3337
3338
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3338
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3340
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3341
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3341
3342
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3342
3343
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3343
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
@@ -3350,7 +3351,7 @@ var watermark = function watermark(option) {
3350
3351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3351
3352
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3352
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3354
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3354
3355
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3355
3356
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3356
3357
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
@@ -3406,6 +3407,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3406
3407
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3407
3408
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3408
3409
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3410
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3409
3411
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3410
3412
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3411
3413
  // 框架 - 系统消息
@@ -3927,7 +3929,7 @@ var WebSocket = function () {
3927
3929
 
3928
3930
  /***/ }),
3929
3931
 
3930
- /***/ 78:
3932
+ /***/ 77:
3931
3933
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3932
3934
 
3933
3935
  "use strict";
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 33);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 32);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -1386,7 +1386,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1386
1386
  * @param {function} callback - 回调函数
1387
1387
  **/
1388
1388
  var getMainConfig = function getMainConfig(callback) {
1389
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1389
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "fb"] }).then(function (res) {
1390
1390
  if (res && res.rCode === 0) {
1391
1391
  callback(res.results);
1392
1392
  }
@@ -2120,7 +2120,7 @@ var isLogined = function isLogined(_ref8) {
2120
2120
  }
2121
2121
  var quit = getParams('quit') || getParams('logout');
2122
2122
  if (quit) {
2123
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2123
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "eb"] }).then(function (res) {
2124
2124
  if (res.rCode === 0) {
2125
2125
  removeStorage();
2126
2126
  }
@@ -2559,7 +2559,7 @@ var replenish = function replenish(_ref12) {
2559
2559
  while (res.length <= len + precision) {
2560
2560
  res += '0';
2561
2561
  }
2562
- return parseFloat(res);
2562
+ return res;
2563
2563
  }
2564
2564
  return data;
2565
2565
  };
@@ -3247,8 +3247,8 @@ var watermark = function watermark(option) {
3247
3247
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3248
3248
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3250
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3251
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3250
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3251
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3252
3252
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3253
3253
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3254
3254
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
@@ -3256,19 +3256,19 @@ var watermark = function watermark(option) {
3256
3256
  /* unused harmony export updateCode */
3257
3257
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3258
3258
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3259
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3259
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
3260
3260
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3261
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3261
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
3262
3262
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3263
3263
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3265
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3265
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3267
3267
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3269
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3270
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3271
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3270
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3271
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3272
3272
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3273
3273
  /* unused harmony export getUserImgUrl */
3274
3274
  /* unused harmony export getDoorIndex */
@@ -3277,11 +3277,12 @@ var watermark = function watermark(option) {
3277
3277
  /* unused harmony export getApplicationIdArray */
3278
3278
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3279
3279
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3280
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3280
3281
  /* unused harmony export getUserCustomInfo */
3281
3282
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3282
3283
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3283
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3284
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3284
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3285
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3285
3286
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3286
3287
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3287
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
@@ -3303,9 +3304,9 @@ var watermark = function watermark(option) {
3303
3304
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3304
3305
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3305
3306
  /* unused harmony export findUserBaseInfo */
3306
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3307
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3307
3308
  /* unused harmony export getCurrentuser */
3308
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3309
+ /* unused harmony export mainDetail */
3309
3310
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3310
3311
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3311
3312
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
@@ -3334,8 +3335,8 @@ var watermark = function watermark(option) {
3334
3335
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3335
3336
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3336
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3337
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3338
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3338
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3339
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3339
3340
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3340
3341
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3341
3342
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
@@ -3348,7 +3349,7 @@ var watermark = function watermark(option) {
3348
3349
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3349
3350
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3350
3351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3351
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3352
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3352
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3353
3354
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3354
3355
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
@@ -3404,6 +3405,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3404
3405
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3405
3406
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3406
3407
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3408
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3407
3409
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3408
3410
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3409
3411
  // 框架 - 系统消息
@@ -3893,21 +3895,20 @@ module.exports = require("throttle-debounce");
3893
3895
  /* 21 */,
3894
3896
  /* 22 */,
3895
3897
  /* 23 */,
3896
- /* 24 */,
3897
- /* 25 */
3898
+ /* 24 */
3898
3899
  /***/ (function(module, exports) {
3899
3900
 
3900
3901
  module.exports = require("sortablejs");
3901
3902
 
3902
3903
  /***/ }),
3904
+ /* 25 */,
3903
3905
  /* 26 */,
3904
3906
  /* 27 */,
3905
3907
  /* 28 */,
3906
3908
  /* 29 */,
3907
3909
  /* 30 */,
3908
3910
  /* 31 */,
3909
- /* 32 */,
3910
- /* 33 */
3911
+ /* 32 */
3911
3912
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3912
3913
 
3913
3914
  "use strict";
@@ -4611,7 +4612,7 @@ selectionvue_type_template_id_0ec05c7a_render._withStripped = true
4611
4612
  // CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=0ec05c7a&
4612
4613
 
4613
4614
  // EXTERNAL MODULE: external "sortablejs"
4614
- var external_sortablejs_ = __webpack_require__(25);
4615
+ var external_sortablejs_ = __webpack_require__(24);
4615
4616
  var external_sortablejs_default = /*#__PURE__*/__webpack_require__.n(external_sortablejs_);
4616
4617
 
4617
4618
  // EXTERNAL MODULE: ./src/utils/util.js
package/lib/selector.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 60);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 59);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -1387,7 +1387,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1387
1387
  * @param {function} callback - 回调函数
1388
1388
  **/
1389
1389
  var getMainConfig = function getMainConfig(callback) {
1390
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1390
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "fb"] }).then(function (res) {
1391
1391
  if (res && res.rCode === 0) {
1392
1392
  callback(res.results);
1393
1393
  }
@@ -2121,7 +2121,7 @@ var isLogined = function isLogined(_ref8) {
2121
2121
  }
2122
2122
  var quit = getParams('quit') || getParams('logout');
2123
2123
  if (quit) {
2124
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2124
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "eb"] }).then(function (res) {
2125
2125
  if (res.rCode === 0) {
2126
2126
  removeStorage();
2127
2127
  }
@@ -2560,7 +2560,7 @@ var replenish = function replenish(_ref12) {
2560
2560
  while (res.length <= len + precision) {
2561
2561
  res += '0';
2562
2562
  }
2563
- return parseFloat(res);
2563
+ return res;
2564
2564
  }
2565
2565
  return data;
2566
2566
  };
@@ -3249,8 +3249,8 @@ var watermark = function watermark(option) {
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3250
3250
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3251
3251
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3252
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3253
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3252
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3253
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3254
3254
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3255
3255
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3256
3256
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
@@ -3258,19 +3258,19 @@ var watermark = function watermark(option) {
3258
3258
  /* unused harmony export updateCode */
3259
3259
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3260
3260
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3261
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3261
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
3262
3262
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3263
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3263
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3265
3265
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3267
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3267
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3269
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3270
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3271
3271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3272
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3273
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3272
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3273
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3274
3274
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3275
3275
  /* unused harmony export getUserImgUrl */
3276
3276
  /* unused harmony export getDoorIndex */
@@ -3279,11 +3279,12 @@ var watermark = function watermark(option) {
3279
3279
  /* unused harmony export getApplicationIdArray */
3280
3280
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3281
3281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3282
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3282
3283
  /* unused harmony export getUserCustomInfo */
3283
3284
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3284
3285
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3285
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3286
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3286
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3287
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3287
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3288
3289
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3289
3290
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
@@ -3305,9 +3306,9 @@ var watermark = function watermark(option) {
3305
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3306
3307
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3307
3308
  /* unused harmony export findUserBaseInfo */
3308
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3309
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3309
3310
  /* unused harmony export getCurrentuser */
3310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3311
+ /* unused harmony export mainDetail */
3311
3312
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3312
3313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3313
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
@@ -3336,8 +3337,8 @@ var watermark = function watermark(option) {
3336
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3337
3338
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3338
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3340
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3341
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3341
3342
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3342
3343
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3343
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
@@ -3350,7 +3351,7 @@ var watermark = function watermark(option) {
3350
3351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3351
3352
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3352
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3354
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3354
3355
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3355
3356
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3356
3357
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
@@ -3406,6 +3407,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3406
3407
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3407
3408
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3408
3409
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3410
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3409
3411
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3410
3412
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3411
3413
  // 框架 - 系统消息
@@ -3604,7 +3606,7 @@ module.exports = require("eoss-element");
3604
3606
 
3605
3607
  /***/ }),
3606
3608
 
3607
- /***/ 24:
3609
+ /***/ 23:
3608
3610
  /***/ (function(module, exports) {
3609
3611
 
3610
3612
  module.exports = require("eoss-element/src/utils/clickoutside");
@@ -3730,14 +3732,7 @@ module.exports = require("axios");
3730
3732
 
3731
3733
  /***/ }),
3732
3734
 
3733
- /***/ 6:
3734
- /***/ (function(module, exports) {
3735
-
3736
- module.exports = require("json-bigint");
3737
-
3738
- /***/ }),
3739
-
3740
- /***/ 60:
3735
+ /***/ 59:
3741
3736
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3742
3737
 
3743
3738
  "use strict";
@@ -4260,7 +4255,7 @@ var util = __webpack_require__(0);
4260
4255
  var api = __webpack_require__(1);
4261
4256
 
4262
4257
  // EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
4263
- var clickoutside_ = __webpack_require__(24);
4258
+ var clickoutside_ = __webpack_require__(23);
4264
4259
  var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
4265
4260
 
4266
4261
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=script&lang=js&
@@ -4941,6 +4936,13 @@ main.install = function (Vue) {
4941
4936
 
4942
4937
  /***/ }),
4943
4938
 
4939
+ /***/ 6:
4940
+ /***/ (function(module, exports) {
4941
+
4942
+ module.exports = require("json-bigint");
4943
+
4944
+ /***/ }),
4945
+
4944
4946
  /***/ 7:
4945
4947
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
4946
4948
 
package/lib/sizer.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 61);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 60);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -1387,7 +1387,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1387
1387
  * @param {function} callback - 回调函数
1388
1388
  **/
1389
1389
  var getMainConfig = function getMainConfig(callback) {
1390
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1390
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "fb"] }).then(function (res) {
1391
1391
  if (res && res.rCode === 0) {
1392
1392
  callback(res.results);
1393
1393
  }
@@ -2121,7 +2121,7 @@ var isLogined = function isLogined(_ref8) {
2121
2121
  }
2122
2122
  var quit = getParams('quit') || getParams('logout');
2123
2123
  if (quit) {
2124
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2124
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "eb"] }).then(function (res) {
2125
2125
  if (res.rCode === 0) {
2126
2126
  removeStorage();
2127
2127
  }
@@ -2560,7 +2560,7 @@ var replenish = function replenish(_ref12) {
2560
2560
  while (res.length <= len + precision) {
2561
2561
  res += '0';
2562
2562
  }
2563
- return parseFloat(res);
2563
+ return res;
2564
2564
  }
2565
2565
  return data;
2566
2566
  };
@@ -3249,8 +3249,8 @@ var watermark = function watermark(option) {
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3250
3250
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3251
3251
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3252
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3253
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3252
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3253
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3254
3254
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3255
3255
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3256
3256
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
@@ -3258,19 +3258,19 @@ var watermark = function watermark(option) {
3258
3258
  /* unused harmony export updateCode */
3259
3259
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3260
3260
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3261
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3261
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
3262
3262
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3263
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3263
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3265
3265
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3267
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3267
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3269
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3270
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3271
3271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3272
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3273
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3272
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3273
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3274
3274
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3275
3275
  /* unused harmony export getUserImgUrl */
3276
3276
  /* unused harmony export getDoorIndex */
@@ -3279,11 +3279,12 @@ var watermark = function watermark(option) {
3279
3279
  /* unused harmony export getApplicationIdArray */
3280
3280
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3281
3281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3282
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3282
3283
  /* unused harmony export getUserCustomInfo */
3283
3284
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3284
3285
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3285
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3286
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3286
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3287
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3287
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3288
3289
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3289
3290
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
@@ -3305,9 +3306,9 @@ var watermark = function watermark(option) {
3305
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3306
3307
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3307
3308
  /* unused harmony export findUserBaseInfo */
3308
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3309
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3309
3310
  /* unused harmony export getCurrentuser */
3310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3311
+ /* unused harmony export mainDetail */
3311
3312
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3312
3313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3313
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
@@ -3336,8 +3337,8 @@ var watermark = function watermark(option) {
3336
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3337
3338
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3338
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3340
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3341
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3341
3342
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3342
3343
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3343
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
@@ -3350,7 +3351,7 @@ var watermark = function watermark(option) {
3350
3351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3351
3352
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3352
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3354
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3354
3355
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3355
3356
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3356
3357
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
@@ -3406,6 +3407,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3406
3407
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3407
3408
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3408
3409
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3410
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3409
3411
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3410
3412
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3411
3413
  // 框架 - 系统消息
@@ -3737,7 +3739,7 @@ module.exports = require("json-bigint");
3737
3739
 
3738
3740
  /***/ }),
3739
3741
 
3740
- /***/ 61:
3742
+ /***/ 60:
3741
3743
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3742
3744
 
3743
3745
  "use strict";