eoss-ui 0.5.33 → 0.5.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +929 -0
- package/lib/button-group.js +115 -95
- package/lib/button.js +115 -95
- package/lib/checkbox-group.js +118 -99
- package/lib/config/api.js +2 -0
- package/lib/data-table-form.js +116 -96
- package/lib/data-table.js +119 -99
- package/lib/date-picker.js +115 -95
- package/lib/dialog.js +123 -99
- package/lib/eoss-ui.common.js +628 -436
- package/lib/flow-group.js +184 -134
- package/lib/flow-list.js +119 -99
- package/lib/flow.js +163 -143
- package/lib/form.js +116 -96
- package/lib/handle-user.js +116 -96
- package/lib/handler.js +229 -161
- package/lib/index.js +1 -1
- package/lib/input-number.js +115 -95
- package/lib/input.js +115 -95
- package/lib/login.js +243 -126
- package/lib/main.js +149 -138
- package/lib/nav.js +115 -95
- package/lib/notify.js +103 -100
- package/lib/page.js +115 -95
- package/lib/player.js +115 -95
- package/lib/qr-code.js +115 -95
- package/lib/radio-group.js +116 -96
- package/lib/retrial-auth.js +118 -98
- package/lib/select-ganged.js +115 -95
- package/lib/select.js +116 -96
- package/lib/selector-panel.js +133 -113
- package/lib/selector.js +116 -96
- package/lib/sizer.js +117 -97
- package/lib/steps.js +115 -95
- package/lib/switch.js +115 -95
- package/lib/table-form.js +115 -95
- package/lib/tabs.js +115 -95
- package/lib/theme-chalk/handler.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +116 -96
- package/lib/toolbar.js +24 -21
- package/lib/tree-group.js +115 -95
- package/lib/tree.js +116 -96
- package/lib/upload.js +125 -105
- package/lib/utils/util.js +17 -0
- package/lib/wujie.js +115 -95
- package/lib/wxlogin.js +115 -95
- package/package.json +2 -2
- package/packages/checkbox-group/src/main.vue +0 -1
- package/packages/dialog/src/main.vue +6 -2
- package/packages/flow-group/src/main.vue +40 -18
- package/packages/handler/src/main.vue +52 -32
- package/packages/login/src/main.vue +78 -10
- package/packages/login/src/resetPassword.vue +7 -5
- package/packages/main/src/main.vue +11 -26
- package/packages/main/src/userinfo.vue +1 -1
- package/packages/theme-chalk/lib/handler.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/handler.scss +3 -1
- package/packages/toolbar/src/main.vue +20 -20
- package/src/config/api.js +2 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +22 -2
package/lib/selector-panel.js
CHANGED
|
@@ -1294,6 +1294,7 @@ var getLength = function getLength(text) {
|
|
|
1294
1294
|
* @desc:转换明度
|
|
1295
1295
|
* @author huangbo
|
|
1296
1296
|
* @date 2022年5月7日
|
|
1297
|
+
* @return {string,array} 元素类名或者id
|
|
1297
1298
|
**/
|
|
1298
1299
|
var getLightness = function getLightness($v, $i, $isLight) {
|
|
1299
1300
|
var $value = $isLight ? $v + $brightnessStep1 * $i : $v - $brightnessStep2 * $i;
|
|
@@ -1301,6 +1302,21 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1301
1302
|
return toFixed($value, 2);
|
|
1302
1303
|
};
|
|
1303
1304
|
|
|
1305
|
+
/**
|
|
1306
|
+
* getMainConfig
|
|
1307
|
+
* @desc 获取系统配置
|
|
1308
|
+
* @author huangbo
|
|
1309
|
+
* @date 2022年5月7日
|
|
1310
|
+
* @param {function} callback - 回调函数
|
|
1311
|
+
**/
|
|
1312
|
+
var getMainConfig = function getMainConfig(callback) {
|
|
1313
|
+
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
|
|
1314
|
+
if (res && res.rCode === 0) {
|
|
1315
|
+
callback(res.results);
|
|
1316
|
+
}
|
|
1317
|
+
}).catch(function () {});
|
|
1318
|
+
};
|
|
1319
|
+
|
|
1304
1320
|
/**
|
|
1305
1321
|
* getMinute
|
|
1306
1322
|
* @desc 获取分钟
|
|
@@ -2931,6 +2947,7 @@ var watermark = function watermark(option) {
|
|
|
2931
2947
|
getHour: getHour,
|
|
2932
2948
|
getWeekNumber: getWeekNumber,
|
|
2933
2949
|
getLength: getLength,
|
|
2950
|
+
getMainConfig: getMainConfig,
|
|
2934
2951
|
getMinute: getMinute,
|
|
2935
2952
|
getMonth: getMonth,
|
|
2936
2953
|
getObjectType: getObjectType,
|
|
@@ -2992,128 +3009,129 @@ var watermark = function watermark(option) {
|
|
|
2992
3009
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2993
3010
|
|
|
2994
3011
|
"use strict";
|
|
2995
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2996
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2997
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2998
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2999
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3000
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3012
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
|
|
3013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
|
|
3014
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3015
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return logout; });
|
|
3016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initLogin; });
|
|
3017
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return switchUserTo; });
|
|
3001
3018
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3002
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3003
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3019
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getLoginCode; });
|
|
3020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
3004
3021
|
/* unused harmony export updateCode */
|
|
3005
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getModifyPassCode; });
|
|
3006
3023
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
3007
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginModifyPassword; });
|
|
3008
3025
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
3009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3010
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3011
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3013
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3015
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initModifyPassword; });
|
|
3027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
|
|
3028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getTwoFactorLoginCode; });
|
|
3029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initRetrialAuth; });
|
|
3031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getRetrialAuthCode; });
|
|
3032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return scanCodeRetrialAuth; });
|
|
3016
3033
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3017
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3018
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3019
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3035
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainConfig; });
|
|
3036
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initUserSet; });
|
|
3037
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserInfo; });
|
|
3020
3038
|
/* unused harmony export getUserImgUrl */
|
|
3021
3039
|
/* unused harmony export getDoorIndex */
|
|
3022
3040
|
/* unused harmony export refreshOnlineUsers */
|
|
3023
3041
|
/* unused harmony export getQuickMenuIds */
|
|
3024
3042
|
/* unused harmony export getApplicationIdArray */
|
|
3025
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3026
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3044
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3027
3045
|
/* unused harmony export getUserCustomInfo */
|
|
3028
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3029
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3030
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3031
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3032
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3033
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3034
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3035
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3036
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3037
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3038
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3040
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3041
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserCustomInfo; });
|
|
3047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sysMsgPage; });
|
|
3048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreSysMsg; });
|
|
3049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreAllSysMsg; });
|
|
3050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploads; });
|
|
3052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadOnlyOne; });
|
|
3053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadSort; });
|
|
3055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadDownloads; });
|
|
3057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct; });
|
|
3058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct2; });
|
|
3059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunctOffice; });
|
|
3042
3060
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
|
|
3043
3061
|
/* unused harmony export upload_updateClassify */
|
|
3044
3062
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
3045
3063
|
/* unused harmony export getPictureBase64 */
|
|
3046
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3047
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3048
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3049
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3050
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3064
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgTree; });
|
|
3065
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgDetail; });
|
|
3066
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getOrgMainTree; });
|
|
3067
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectOrgsubids; });
|
|
3068
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
|
|
3051
3069
|
/* unused harmony export findUserBaseInfo */
|
|
3052
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return gethelpdoc; });
|
|
3053
3071
|
/* unused harmony export getCurrentuser */
|
|
3054
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3055
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3056
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainDetail; });
|
|
3073
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartFlow; });
|
|
3074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return tempSave; });
|
|
3057
3075
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3058
3076
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3059
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3060
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3061
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3077
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3078
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return saveCommonOpinion; });
|
|
3079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateCommonOpinion; });
|
|
3062
3080
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3063
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3064
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3065
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3067
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3068
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3069
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3070
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getProcessDefList; });
|
|
3082
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNodeInfo; });
|
|
3083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
|
|
3084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
|
|
3085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNotificationMsg; });
|
|
3087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getHandleInfoHtml; });
|
|
3088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskHandleHtml; });
|
|
3071
3089
|
/* unused harmony export getView */
|
|
3072
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3074
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3075
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3076
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3077
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3078
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3079
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3080
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3081
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3082
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3083
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3084
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3085
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3087
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3088
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3089
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3090
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3091
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return register; });
|
|
3091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryList; });
|
|
3092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskRejectHtml; });
|
|
3093
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskRejectHtml; });
|
|
3094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskRead; });
|
|
3095
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskReadIndex; });
|
|
3096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReadHtml; });
|
|
3097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return rejectAndEnd; });
|
|
3098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toSendMsg; });
|
|
3099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendMsg; });
|
|
3100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return handleInfo; });
|
|
3102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginUserInfo; });
|
|
3103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return wss; });
|
|
3104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return topic; });
|
|
3105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetCustomInfo; });
|
|
3106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetNodeInfo; });
|
|
3107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTransferIndex; });
|
|
3108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTransfer; });
|
|
3109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toPresetInfoListIndex; });
|
|
3092
3110
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3093
3111
|
/* unused harmony export historyListJson */
|
|
3094
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3095
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryListJson; });
|
|
3113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pressListJson; });
|
|
3096
3114
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3097
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3098
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3099
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3100
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3101
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3102
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3103
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3104
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3105
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3106
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3107
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3109
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3111
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3115
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return isCanStartSubFlow; });
|
|
3116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionExamine; });
|
|
3117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionExamine; });
|
|
3118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTakeAdvice; });
|
|
3119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTakeAdvice; });
|
|
3120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskStartDraft; });
|
|
3121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskStartDraft; });
|
|
3122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskReview; });
|
|
3123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReview; });
|
|
3124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionSeal; });
|
|
3125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionSeal; });
|
|
3126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTwoOfficesDispatch; });
|
|
3127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return twoOfficesDispatch; });
|
|
3128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendList; });
|
|
3129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendInfo; });
|
|
3112
3130
|
/* unused harmony export sendSave */
|
|
3113
3131
|
/* unused harmony export sendUpdate */
|
|
3114
3132
|
/* unused harmony export sendDelete */
|
|
3115
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendBatch; });
|
|
3134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3117
3135
|
// 登录
|
|
3118
3136
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
3119
3137
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -3137,6 +3155,8 @@ var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身
|
|
|
3137
3155
|
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
3138
3156
|
var scanCodeRetrialAuth = '/sso2/retrialAuth/scanCodeRetrialAuth'; // 二维码扫码验证(二级权限验证)
|
|
3139
3157
|
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
3158
|
+
var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
|
|
3159
|
+
|
|
3140
3160
|
// 框架
|
|
3141
3161
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
3142
3162
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -4693,7 +4713,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4693
4713
|
},
|
|
4694
4714
|
selection: {
|
|
4695
4715
|
type: [String, Array],
|
|
4696
|
-
default: api["
|
|
4716
|
+
default: api["O" /* getSelectorOrgDetail */]
|
|
4697
4717
|
},
|
|
4698
4718
|
param: {
|
|
4699
4719
|
type: Object,
|
|
@@ -4770,7 +4790,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4770
4790
|
enterprise: {
|
|
4771
4791
|
label: '选择单位',
|
|
4772
4792
|
name: 'enterprise',
|
|
4773
|
-
url: api["
|
|
4793
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4774
4794
|
data: [],
|
|
4775
4795
|
nodeData: '',
|
|
4776
4796
|
selection: [],
|
|
@@ -4784,7 +4804,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4784
4804
|
department: {
|
|
4785
4805
|
label: '选择部门',
|
|
4786
4806
|
name: 'department',
|
|
4787
|
-
url: api["
|
|
4807
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4788
4808
|
data: [],
|
|
4789
4809
|
nodeData: '',
|
|
4790
4810
|
selection: [],
|
|
@@ -4798,7 +4818,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4798
4818
|
employee: {
|
|
4799
4819
|
label: '选择用户',
|
|
4800
4820
|
name: 'employee',
|
|
4801
|
-
url: api["
|
|
4821
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4802
4822
|
data: [],
|
|
4803
4823
|
nodeData: '',
|
|
4804
4824
|
selection: [],
|
|
@@ -4812,7 +4832,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4812
4832
|
myemployee: {
|
|
4813
4833
|
label: '本单位用户',
|
|
4814
4834
|
name: 'myemployee',
|
|
4815
|
-
url: api["
|
|
4835
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4816
4836
|
data: [],
|
|
4817
4837
|
nodeData: '',
|
|
4818
4838
|
selection: [],
|
|
@@ -4826,7 +4846,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4826
4846
|
otheremployee: {
|
|
4827
4847
|
label: '外单位用户',
|
|
4828
4848
|
name: 'otheremployee',
|
|
4829
|
-
url: api["
|
|
4849
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4830
4850
|
data: [],
|
|
4831
4851
|
nodeData: '',
|
|
4832
4852
|
selection: [],
|
|
@@ -4840,7 +4860,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4840
4860
|
person: {
|
|
4841
4861
|
label: '选择人员',
|
|
4842
4862
|
name: 'person',
|
|
4843
|
-
url: api["
|
|
4863
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4844
4864
|
data: [],
|
|
4845
4865
|
nodeData: '',
|
|
4846
4866
|
selection: [],
|
|
@@ -4854,7 +4874,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4854
4874
|
otherperson: {
|
|
4855
4875
|
label: '外单位人员',
|
|
4856
4876
|
name: 'otherperson',
|
|
4857
|
-
url: api["
|
|
4877
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4858
4878
|
data: [],
|
|
4859
4879
|
nodeData: '',
|
|
4860
4880
|
selection: [],
|
|
@@ -4868,7 +4888,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4868
4888
|
persongroup: {
|
|
4869
4889
|
label: '员工群组成员',
|
|
4870
4890
|
name: 'persongroup',
|
|
4871
|
-
url: api["
|
|
4891
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4872
4892
|
data: [],
|
|
4873
4893
|
nodeData: '',
|
|
4874
4894
|
selection: [],
|
|
@@ -4886,7 +4906,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4886
4906
|
selection: [],
|
|
4887
4907
|
value: [],
|
|
4888
4908
|
name: 'filgroup',
|
|
4889
|
-
url: api["
|
|
4909
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4890
4910
|
param: {
|
|
4891
4911
|
showarea: 3,
|
|
4892
4912
|
id: 0,
|
|
@@ -4896,7 +4916,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4896
4916
|
depgroup: {
|
|
4897
4917
|
label: '部门群组成员',
|
|
4898
4918
|
name: 'depgroup',
|
|
4899
|
-
url: api["
|
|
4919
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4900
4920
|
data: [],
|
|
4901
4921
|
nodeData: '',
|
|
4902
4922
|
selection: [],
|
|
@@ -4910,7 +4930,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4910
4930
|
persongroupobj: {
|
|
4911
4931
|
label: '人员群组',
|
|
4912
4932
|
name: 'persongroupobj',
|
|
4913
|
-
url: api["
|
|
4933
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4914
4934
|
data: [],
|
|
4915
4935
|
nodeData: '',
|
|
4916
4936
|
selection: [],
|
|
@@ -4924,7 +4944,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4924
4944
|
filgroupobj: {
|
|
4925
4945
|
label: '单位群组',
|
|
4926
4946
|
name: 'filgroupobj',
|
|
4927
|
-
url: api["
|
|
4947
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4928
4948
|
data: [],
|
|
4929
4949
|
nodeData: '',
|
|
4930
4950
|
selection: [],
|
|
@@ -4938,7 +4958,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4938
4958
|
depgroupobj: {
|
|
4939
4959
|
label: '部门群组',
|
|
4940
4960
|
name: 'depgroupobj',
|
|
4941
|
-
url: api["
|
|
4961
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4942
4962
|
data: [],
|
|
4943
4963
|
nodeData: '',
|
|
4944
4964
|
selection: [],
|
|
@@ -4952,7 +4972,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4952
4972
|
role: {
|
|
4953
4973
|
label: '选择角色',
|
|
4954
4974
|
name: 'role',
|
|
4955
|
-
url: api["
|
|
4975
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4956
4976
|
data: [],
|
|
4957
4977
|
nodeData: '',
|
|
4958
4978
|
selection: [],
|
|
@@ -4966,7 +4986,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4966
4986
|
post: {
|
|
4967
4987
|
label: '选择岗位',
|
|
4968
4988
|
name: 'post',
|
|
4969
|
-
url: api["
|
|
4989
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4970
4990
|
data: [],
|
|
4971
4991
|
nodeData: '',
|
|
4972
4992
|
selection: [],
|
|
@@ -4980,7 +5000,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4980
5000
|
codetable: {
|
|
4981
5001
|
label: '代码表',
|
|
4982
5002
|
name: 'codetable',
|
|
4983
|
-
url: api["
|
|
5003
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4984
5004
|
data: [],
|
|
4985
5005
|
nodeData: '',
|
|
4986
5006
|
selection: [],
|
|
@@ -4994,7 +5014,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
|
|
|
4994
5014
|
topcontacts: {
|
|
4995
5015
|
label: '常用联系人',
|
|
4996
5016
|
name: 'topcontacts',
|
|
4997
|
-
url: api["
|
|
5017
|
+
url: api["P" /* getSelectorOrgTree */],
|
|
4998
5018
|
data: [],
|
|
4999
5019
|
nodeData: '',
|
|
5000
5020
|
selection: [],
|