eoss-ui 0.6.39 → 0.6.41
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/lib/button-group.js +48 -6
- package/lib/button.js +48 -6
- package/lib/checkbox-group.js +48 -6
- package/lib/data-table-form.js +48 -6
- package/lib/data-table.js +67 -22
- package/lib/date-picker.js +48 -6
- package/lib/dialog.js +48 -6
- package/lib/eoss-ui.common.js +1393 -955
- package/lib/flow-group.js +48 -6
- package/lib/flow-list.js +129 -87
- package/lib/flow.js +360 -321
- package/lib/form.js +48 -6
- package/lib/handle-user.js +48 -6
- package/lib/handler.js +195 -82
- package/lib/icon.js +48 -6
- package/lib/icons.js +1 -1
- package/lib/index.js +1 -1
- package/lib/input-number.js +48 -6
- package/lib/input.js +48 -6
- package/lib/login.js +291 -166
- package/lib/main.js +504 -251
- package/lib/nav.js +48 -6
- package/lib/page.js +48 -6
- package/lib/pagination.js +48 -6
- package/lib/player.js +48 -6
- package/lib/qr-code.js +61 -19
- package/lib/radio-group.js +48 -6
- package/lib/retrial-auth.js +48 -6
- package/lib/select-ganged.js +48 -6
- package/lib/select.js +48 -6
- package/lib/selector-panel.js +50 -9
- package/lib/selector.js +85 -11
- package/lib/sizer.js +48 -6
- package/lib/steps.js +48 -6
- package/lib/switch.js +48 -6
- package/lib/table-form.js +48 -6
- package/lib/tabs.js +48 -6
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
- package/lib/theme-chalk/fonts/iconfont.woff +0 -0
- package/lib/theme-chalk/icon.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +48 -6
- package/lib/tree-group.js +48 -6
- package/lib/tree.js +48 -6
- package/lib/upload.js +48 -6
- package/lib/utils/util.js +48 -6
- package/lib/wujie.js +48 -6
- package/lib/wxlogin.js +48 -6
- package/package.json +159 -159
- package/packages/.DS_Store +0 -0
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/button-group/src/main.vue +298 -298
- package/packages/calendar/index.js +5 -5
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/clients/src/main.vue +144 -144
- package/packages/data-table/.DS_Store +0 -0
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +39 -39
- package/packages/data-table/src/column.vue +989 -983
- package/packages/data-table/src/main.vue +1822 -1820
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/.DS_Store +0 -0
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/.DS_Store +0 -0
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/CommonOpinions.vue +345 -345
- package/packages/flow/src/component/CustomPreset.vue +322 -322
- package/packages/flow/src/component/FileList.vue +99 -99
- package/packages/flow/src/component/Preset.vue +255 -255
- package/packages/flow/src/component/SendMsg.vue +229 -229
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +611 -603
- package/packages/flow/src/form.vue +121 -121
- package/packages/flow/src/freeStartFlow.vue +2843 -2843
- package/packages/flow/src/main.vue +2862 -2864
- package/packages/flow/src/processForm.vue +1018 -1007
- package/packages/flow/src/processReject.vue +293 -293
- package/packages/flow/src/reset.vue +899 -901
- package/packages/flow/src/startTaskRead.vue +596 -596
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +688 -688
- package/packages/flow-list/index.js +5 -5
- package/packages/flow-list/src/main.vue +1172 -1172
- package/packages/form/.DS_Store +0 -0
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +3584 -3584
- package/packages/form/src/table.vue +1420 -1420
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +138 -138
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +474 -388
- package/packages/icon/index.js +5 -5
- package/packages/icon/src/main.vue +101 -101
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/icon.json +1 -1
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/.DS_Store +0 -0
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +1935 -1892
- package/packages/login/src/resetPassword.vue +562 -562
- package/packages/main/.DS_Store +0 -0
- package/packages/main/index.js +5 -5
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/default/index.vue +32 -3
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +505 -505
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +461 -454
- package/packages/main/src/public/settings.vue +221 -221
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +259 -221
- package/packages/main/src/simplicity/index.vue +2047 -1993
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/menu-list.vue +128 -128
- package/packages/main/src/simplicity/message.vue +259 -259
- package/packages/main/src/simplicity/notice.vue +190 -190
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/sub-menu.vue +241 -241
- package/packages/main/src/simplicity/user.vue +257 -257
- package/packages/main/src/simplicity/userinfo.vue +312 -312
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +536 -536
- package/packages/nav/index.js +5 -5
- package/packages/nav/src/main.vue +402 -402
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +280 -280
- package/packages/select/index.js +5 -5
- package/packages/select/src/main.vue +775 -775
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/index.js +5 -5
- package/packages/selector/src/main.vue +689 -677
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/main.vue +1027 -1028
- package/packages/selector-panel/src/selection.vue +177 -177
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/.DS_Store +0 -0
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +254 -254
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/switch/src/main.vue +154 -154
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/.DS_Store +0 -0
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/icon.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/base.scss +260 -260
- package/packages/theme-chalk/src/button-group.scss +175 -175
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/data-table.scss +293 -293
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow-list.scss +36 -36
- package/packages/theme-chalk/src/flow.scss +310 -310
- package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/src/form.scss +496 -496
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/handler.scss +143 -143
- package/packages/theme-chalk/src/icon.scss +1789 -1760
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/login.scss +947 -939
- package/packages/theme-chalk/src/main.scss +639 -632
- package/packages/theme-chalk/src/menu.scss +222 -222
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +125 -125
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/selector.scss +91 -91
- package/packages/theme-chalk/src/simplicity.scss +1262 -1262
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +165 -165
- package/packages/theme-chalk/src/upload.scss +167 -167
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/tips/src/main.vue +141 -141
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/.DS_Store +0 -0
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1334 -1334
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wujie/src/main.vue +145 -145
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/.DS_Store +0 -0
- package/src/config/api.js +248 -248
- package/src/config/image.js +2 -2
- package/src/index.js +157 -157
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/rules.js +18 -18
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +146 -106
- package/src/utils/webSocket.js +107 -107
package/lib/eoss-ui.common.js
CHANGED
|
@@ -547,10 +547,19 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
547
547
|
if (params && !Object.prototype.hasOwnProperty.call(params, 'userId') && userId) {
|
|
548
548
|
params.userId = getStorage('userId');
|
|
549
549
|
}
|
|
550
|
-
var info = {
|
|
550
|
+
var info = {
|
|
551
|
+
time: 0,
|
|
552
|
+
conversationId: '',
|
|
553
|
+
content: '',
|
|
554
|
+
thinkContent: '',
|
|
555
|
+
primeval: '',
|
|
556
|
+
chunk: ''
|
|
557
|
+
};
|
|
551
558
|
var partialData = '';
|
|
552
559
|
var lastProcessedIndex = 0;
|
|
553
560
|
var done = false;
|
|
561
|
+
var finishThink = false;
|
|
562
|
+
var hasThink = false;
|
|
554
563
|
ajax(_extends({
|
|
555
564
|
timeout: 990000,
|
|
556
565
|
format: false,
|
|
@@ -565,6 +574,9 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
565
574
|
// 获取从上次处理后新增的数据
|
|
566
575
|
var currentResponse = (progressEvent.event || progressEvent).currentTarget.responseText;
|
|
567
576
|
var chunk = currentResponse.slice(lastProcessedIndex);
|
|
577
|
+
if (chunk === 'data:') {
|
|
578
|
+
return;
|
|
579
|
+
}
|
|
568
580
|
|
|
569
581
|
// 更新偏移量
|
|
570
582
|
lastProcessedIndex = currentResponse.length;
|
|
@@ -573,7 +585,12 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
573
585
|
partialData += chunk;
|
|
574
586
|
var lines = partialData.split('\n');
|
|
575
587
|
var remainingData = ''; // 用于保存未完整处理的部分数据
|
|
588
|
+
var primeval = '';
|
|
589
|
+
var chunks = '';
|
|
576
590
|
lines.forEach(function (line) {
|
|
591
|
+
if (line === '') {
|
|
592
|
+
return;
|
|
593
|
+
}
|
|
577
594
|
if (line.startsWith('data:')) {
|
|
578
595
|
var _data = line.replace('data:', '').trim();
|
|
579
596
|
if (_data) {
|
|
@@ -582,8 +599,6 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
582
599
|
var parsedData = JSON.parse(_data);
|
|
583
600
|
info.time = parsedData.time;
|
|
584
601
|
info.conversationId = parsedData.conversationId;
|
|
585
|
-
|
|
586
|
-
// 使用正则表达式匹配 <think> 标签
|
|
587
602
|
var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
|
|
588
603
|
var match = parsedData.message.match(thinkRegex);
|
|
589
604
|
if (match) {
|
|
@@ -593,20 +608,47 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
593
608
|
info.thinkContent += thinkContent;
|
|
594
609
|
info.content += content;
|
|
595
610
|
} else {
|
|
596
|
-
|
|
597
|
-
|
|
611
|
+
var startRegex = /<think>([\s\S]*)/;
|
|
612
|
+
var endRegex = /([\s\S]*?)<\/think>([\s\S]*)?/;
|
|
613
|
+
var start = parsedData.message.match(startRegex);
|
|
614
|
+
var end = parsedData.message.match(endRegex);
|
|
615
|
+
if (start) {
|
|
616
|
+
hasThink = true;
|
|
617
|
+
var _thinkContent = start[1] ? start[1].trim() : ''; // <think> 标签内的数据
|
|
618
|
+
info.thinkContent += _thinkContent;
|
|
619
|
+
} else if (hasThink === false) {
|
|
620
|
+
info.content += parsedData.message;
|
|
621
|
+
chunks += parsedData.message;
|
|
622
|
+
} else {
|
|
623
|
+
if (end) {
|
|
624
|
+
finishThink = true;
|
|
625
|
+
var _thinkContent2 = end[1] ? end[1].trim() : ''; // <think> 标签后的数据
|
|
626
|
+
var _content = end[2] ? end[2].trim() : '';
|
|
627
|
+
// 更新 AI 消息内容
|
|
628
|
+
info.thinkContent += _thinkContent2;
|
|
629
|
+
info.content += _content;
|
|
630
|
+
chunks += _content;
|
|
631
|
+
} else if (finishThink) {
|
|
632
|
+
info.content += parsedData.message;
|
|
633
|
+
chunks += parsedData.message;
|
|
634
|
+
} else {
|
|
635
|
+
info.thinkContent += parsedData.message;
|
|
636
|
+
}
|
|
637
|
+
}
|
|
598
638
|
}
|
|
639
|
+
primeval += parsedData.message;
|
|
599
640
|
done = parsedData.done;
|
|
600
641
|
} catch (parseError) {
|
|
601
642
|
console.error('解析数据出错:', parseError);
|
|
602
643
|
}
|
|
603
|
-
// Promise.resolve({message: info, controller});
|
|
604
644
|
}
|
|
605
645
|
} else {
|
|
606
646
|
// 保存未处理完的部分数据
|
|
607
647
|
remainingData += line + '\n';
|
|
608
648
|
}
|
|
609
649
|
});
|
|
650
|
+
info.primeval = primeval;
|
|
651
|
+
info.chunk = chunks;
|
|
610
652
|
|
|
611
653
|
// 将未完整处理的数据保留到 partialData 中
|
|
612
654
|
partialData = remainingData;
|
|
@@ -4018,7 +4060,7 @@ module.exports = require("stompjs");
|
|
|
4018
4060
|
/* 14 */
|
|
4019
4061
|
/***/ (function(module) {
|
|
4020
4062
|
|
|
4021
|
-
module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\",\"wenjianjiadakai\",\"yingyonglan\",\"home\",\"tiyanxinban\",\"shiyongjiuban\",\"zhuomian\",\"scan\",\"youbian\",\"zuobian\",\"saomadenglu\",\"zhanghaodenglu\",\"zhengfangti\",\"tingzhi\"]");
|
|
4063
|
+
module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\",\"wenjianjiadakai\",\"yingyonglan\",\"home\",\"tiyanxinban\",\"shiyongjiuban\",\"zhuomian\",\"scan\",\"youbian\",\"zuobian\",\"saomadenglu\",\"zhanghaodenglu\",\"zhengfangti\",\"tingzhi\",\"youxiangdenglu\",\"duanxindenglu\",\"liaotian\",\"zhixiangyou\",\"zhixiangshang\",\"zhixiangxia\",\"zhixiangzuo\"]");
|
|
4022
4064
|
|
|
4023
4065
|
/***/ }),
|
|
4024
4066
|
/* 15 */
|
|
@@ -7205,8 +7247,8 @@ clients_src_main.install = function (Vue) {
|
|
|
7205
7247
|
};
|
|
7206
7248
|
|
|
7207
7249
|
/* harmony default export */ var clients = (clients_src_main);
|
|
7208
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=
|
|
7209
|
-
var
|
|
7250
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=6d159d95&
|
|
7251
|
+
var mainvue_type_template_id_6d159d95_render = function () {
|
|
7210
7252
|
var _vm = this
|
|
7211
7253
|
var _h = _vm.$createElement
|
|
7212
7254
|
var _c = _vm._self._c || _h
|
|
@@ -7606,11 +7648,11 @@ var mainvue_type_template_id_2246a7e8_render = function () {
|
|
|
7606
7648
|
1
|
|
7607
7649
|
)
|
|
7608
7650
|
}
|
|
7609
|
-
var
|
|
7610
|
-
|
|
7651
|
+
var mainvue_type_template_id_6d159d95_staticRenderFns = []
|
|
7652
|
+
mainvue_type_template_id_6d159d95_render._withStripped = true
|
|
7611
7653
|
|
|
7612
7654
|
|
|
7613
|
-
// CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=
|
|
7655
|
+
// CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=6d159d95&
|
|
7614
7656
|
|
|
7615
7657
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=271bb842&
|
|
7616
7658
|
var childrenvue_type_template_id_271bb842_render = function () {
|
|
@@ -7668,8 +7710,8 @@ childrenvue_type_template_id_271bb842_render._withStripped = true
|
|
|
7668
7710
|
|
|
7669
7711
|
// CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=271bb842&
|
|
7670
7712
|
|
|
7671
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=
|
|
7672
|
-
var
|
|
7713
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=4d1a48b2&
|
|
7714
|
+
var columnvue_type_template_id_4d1a48b2_render = function () {
|
|
7673
7715
|
var _vm = this
|
|
7674
7716
|
var _h = _vm.$createElement
|
|
7675
7717
|
var _c = _vm._self._c || _h
|
|
@@ -8403,6 +8445,7 @@ var columnvue_type_template_id_f7b1c668_render = function () {
|
|
|
8403
8445
|
row: scope.row,
|
|
8404
8446
|
render: _vm.render,
|
|
8405
8447
|
index: _vm.indexs,
|
|
8448
|
+
options: _vm.optionDatas,
|
|
8406
8449
|
},
|
|
8407
8450
|
})
|
|
8408
8451
|
: _vm.dateFormat
|
|
@@ -8483,11 +8526,11 @@ var columnvue_type_template_id_f7b1c668_render = function () {
|
|
|
8483
8526
|
2
|
|
8484
8527
|
)
|
|
8485
8528
|
}
|
|
8486
|
-
var
|
|
8487
|
-
|
|
8529
|
+
var columnvue_type_template_id_4d1a48b2_staticRenderFns = []
|
|
8530
|
+
columnvue_type_template_id_4d1a48b2_render._withStripped = true
|
|
8488
8531
|
|
|
8489
8532
|
|
|
8490
|
-
// CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=
|
|
8533
|
+
// CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=4d1a48b2&
|
|
8491
8534
|
|
|
8492
8535
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
8493
8536
|
var regenerator_ = __webpack_require__(3);
|
|
@@ -8970,6 +9013,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
8970
9013
|
//
|
|
8971
9014
|
//
|
|
8972
9015
|
//
|
|
9016
|
+
//
|
|
8973
9017
|
|
|
8974
9018
|
|
|
8975
9019
|
|
|
@@ -8985,7 +9029,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
8985
9029
|
column: {
|
|
8986
9030
|
type: Object,
|
|
8987
9031
|
default: null
|
|
8988
|
-
}
|
|
9032
|
+
},
|
|
9033
|
+
options: Object
|
|
8989
9034
|
},
|
|
8990
9035
|
render: function render(h, ctx) {
|
|
8991
9036
|
var params = {
|
|
@@ -8997,12 +9042,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
8997
9042
|
}
|
|
8998
9043
|
if (typeof ctx.props.render == 'string') {
|
|
8999
9044
|
try {
|
|
9000
|
-
return utils_util["a" /* default */].toFunction(ctx.props.render)(h, params);
|
|
9045
|
+
return utils_util["a" /* default */].toFunction(ctx.props.render)(h, params, ctx.props.options);
|
|
9001
9046
|
} catch (error) {
|
|
9002
9047
|
throw error;
|
|
9003
9048
|
}
|
|
9004
9049
|
}
|
|
9005
|
-
return ctx.props.render(h, params);
|
|
9050
|
+
return ctx.props.render(h, params, ctx.props.options);
|
|
9006
9051
|
}
|
|
9007
9052
|
}
|
|
9008
9053
|
},
|
|
@@ -9426,8 +9471,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
9426
9471
|
|
|
9427
9472
|
var column_component = normalizeComponent(
|
|
9428
9473
|
src_columnvue_type_script_lang_js_,
|
|
9429
|
-
|
|
9430
|
-
|
|
9474
|
+
columnvue_type_template_id_4d1a48b2_render,
|
|
9475
|
+
columnvue_type_template_id_4d1a48b2_staticRenderFns,
|
|
9431
9476
|
false,
|
|
9432
9477
|
null,
|
|
9433
9478
|
null,
|
|
@@ -11348,7 +11393,7 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
|
|
|
11348
11393
|
}
|
|
11349
11394
|
}
|
|
11350
11395
|
height -= _this15.showToolbar ? _this15.$refs.toolbar.$el.offsetHeight : 0;
|
|
11351
|
-
height -= _this15.page === false ? 0 : _this15.$refs.pagination.$el.offsetHeight;
|
|
11396
|
+
height -= _this15.page === false || _this15.showPage == false ? 0 : _this15.$refs.pagination.$el.offsetHeight;
|
|
11352
11397
|
height -= _this15.title ? _this15.$refs.title.offsetHeight : 0;
|
|
11353
11398
|
height -= parseInt(utils_util["a" /* default */].getStyle(_this15.$refs.esTableContent, 'padding-top'), 10);
|
|
11354
11399
|
height -= parseInt(utils_util["a" /* default */].getStyle(_this15.$refs.esTableContent, 'padding-bottom'), 10);
|
|
@@ -11472,8 +11517,8 @@ var pageView = utils_util["a" /* default */].getParams('pageView');
|
|
|
11472
11517
|
|
|
11473
11518
|
var data_table_src_main_component = normalizeComponent(
|
|
11474
11519
|
packages_data_table_src_mainvue_type_script_lang_js_,
|
|
11475
|
-
|
|
11476
|
-
|
|
11520
|
+
mainvue_type_template_id_6d159d95_render,
|
|
11521
|
+
mainvue_type_template_id_6d159d95_staticRenderFns,
|
|
11477
11522
|
false,
|
|
11478
11523
|
null,
|
|
11479
11524
|
null,
|
|
@@ -24542,8 +24587,8 @@ form_src_main.install = function (Vue) {
|
|
|
24542
24587
|
};
|
|
24543
24588
|
|
|
24544
24589
|
/* harmony default export */ var packages_form = (form_src_main);
|
|
24545
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
24546
|
-
var
|
|
24590
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=5d052dc2&
|
|
24591
|
+
var mainvue_type_template_id_5d052dc2_render = function () {
|
|
24547
24592
|
var _vm = this
|
|
24548
24593
|
var _h = _vm.$createElement
|
|
24549
24594
|
var _c = _vm._self._c || _h
|
|
@@ -26649,11 +26694,11 @@ var mainvue_type_template_id_2feffd01_render = function () {
|
|
|
26649
26694
|
)
|
|
26650
26695
|
: _vm._e()
|
|
26651
26696
|
}
|
|
26652
|
-
var
|
|
26653
|
-
|
|
26697
|
+
var mainvue_type_template_id_5d052dc2_staticRenderFns = []
|
|
26698
|
+
mainvue_type_template_id_5d052dc2_render._withStripped = true
|
|
26654
26699
|
|
|
26655
26700
|
|
|
26656
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
26701
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5d052dc2&
|
|
26657
26702
|
|
|
26658
26703
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=f5e5d4e8&
|
|
26659
26704
|
var CommonOpinionsvue_type_template_id_f5e5d4e8_render = function () {
|
|
@@ -27453,21 +27498,21 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
27453
27498
|
return validSate;
|
|
27454
27499
|
},
|
|
27455
27500
|
|
|
27456
|
-
/**
|
|
27457
|
-
* changeOpinion
|
|
27458
|
-
* @desc:监听意见变化
|
|
27459
|
-
* @author liufan
|
|
27460
|
-
* @date 2022年10月28日
|
|
27501
|
+
/**
|
|
27502
|
+
* changeOpinion
|
|
27503
|
+
* @desc:监听意见变化
|
|
27504
|
+
* @author liufan
|
|
27505
|
+
* @date 2022年10月28日
|
|
27461
27506
|
**/
|
|
27462
27507
|
changeOpinion: function changeOpinion() {
|
|
27463
27508
|
this.$emit('change', this.form.value);
|
|
27464
27509
|
},
|
|
27465
27510
|
|
|
27466
|
-
/**
|
|
27467
|
-
* getCommonOpion
|
|
27468
|
-
* @desc:获取意见
|
|
27469
|
-
* @author liufan
|
|
27470
|
-
* @date 2022年5月25日
|
|
27511
|
+
/**
|
|
27512
|
+
* getCommonOpion
|
|
27513
|
+
* @desc:获取意见
|
|
27514
|
+
* @author liufan
|
|
27515
|
+
* @date 2022年5月25日
|
|
27471
27516
|
**/
|
|
27472
27517
|
getCommonOpion: function getCommonOpion() {
|
|
27473
27518
|
var _this = this;
|
|
@@ -27496,24 +27541,24 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
27496
27541
|
});
|
|
27497
27542
|
},
|
|
27498
27543
|
|
|
27499
|
-
/**
|
|
27500
|
-
* upDate
|
|
27501
|
-
* @desc:修改常用语
|
|
27502
|
-
* @author liufan
|
|
27503
|
-
* @param {Object} val 修改值
|
|
27504
|
-
* @date 2022年5月25日
|
|
27544
|
+
/**
|
|
27545
|
+
* upDate
|
|
27546
|
+
* @desc:修改常用语
|
|
27547
|
+
* @author liufan
|
|
27548
|
+
* @param {Object} val 修改值
|
|
27549
|
+
* @date 2022年5月25日
|
|
27505
27550
|
**/
|
|
27506
27551
|
upDate: function upDate(val) {
|
|
27507
27552
|
this.FormData.id = val.id;
|
|
27508
27553
|
this.addVisible = true;
|
|
27509
27554
|
},
|
|
27510
27555
|
|
|
27511
|
-
/**
|
|
27512
|
-
* selectChange
|
|
27513
|
-
* @desc:常用语选择
|
|
27514
|
-
* @author liufan
|
|
27515
|
-
* @param {String} val 选中值
|
|
27516
|
-
* @date 2022年5月25日
|
|
27556
|
+
/**
|
|
27557
|
+
* selectChange
|
|
27558
|
+
* @desc:常用语选择
|
|
27559
|
+
* @author liufan
|
|
27560
|
+
* @param {String} val 选中值
|
|
27561
|
+
* @date 2022年5月25日
|
|
27517
27562
|
**/
|
|
27518
27563
|
selectChange: function selectChange(val) {
|
|
27519
27564
|
var _this2 = this;
|
|
@@ -27532,12 +27577,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
27532
27577
|
});
|
|
27533
27578
|
},
|
|
27534
27579
|
|
|
27535
|
-
/**
|
|
27536
|
-
* del
|
|
27537
|
-
* @desc:删除常用语
|
|
27538
|
-
* @author liufan
|
|
27539
|
-
* @param {Object} val 删除的数据
|
|
27540
|
-
* @date 2022年5月25日
|
|
27580
|
+
/**
|
|
27581
|
+
* del
|
|
27582
|
+
* @desc:删除常用语
|
|
27583
|
+
* @author liufan
|
|
27584
|
+
* @param {Object} val 删除的数据
|
|
27585
|
+
* @date 2022年5月25日
|
|
27541
27586
|
**/
|
|
27542
27587
|
del: function del(val) {
|
|
27543
27588
|
var _this3 = this;
|
|
@@ -27579,12 +27624,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
27579
27624
|
}).catch(function (e) {});
|
|
27580
27625
|
},
|
|
27581
27626
|
|
|
27582
|
-
/**
|
|
27583
|
-
* submit
|
|
27584
|
-
* @desc:新增/编辑意见保存
|
|
27585
|
-
* @author liufan
|
|
27586
|
-
* @param {Object} val 保存数据
|
|
27587
|
-
* @date 2022年5月25日
|
|
27627
|
+
/**
|
|
27628
|
+
* submit
|
|
27629
|
+
* @desc:新增/编辑意见保存
|
|
27630
|
+
* @author liufan
|
|
27631
|
+
* @param {Object} val 保存数据
|
|
27632
|
+
* @date 2022年5月25日
|
|
27588
27633
|
**/
|
|
27589
27634
|
submit: function submit(val) {
|
|
27590
27635
|
var _this4 = this;
|
|
@@ -27649,8 +27694,8 @@ var CommonOpinions_component = normalizeComponent(
|
|
|
27649
27694
|
)
|
|
27650
27695
|
|
|
27651
27696
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
27652
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
27653
|
-
var
|
|
27697
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=4c3e6186&
|
|
27698
|
+
var processFormvue_type_template_id_4c3e6186_render = function () {
|
|
27654
27699
|
var _vm = this
|
|
27655
27700
|
var _h = _vm.$createElement
|
|
27656
27701
|
var _c = _vm._self._c || _h
|
|
@@ -28171,11 +28216,11 @@ var processFormvue_type_template_id_3ec67af0_render = function () {
|
|
|
28171
28216
|
1
|
|
28172
28217
|
)
|
|
28173
28218
|
}
|
|
28174
|
-
var
|
|
28175
|
-
|
|
28219
|
+
var processFormvue_type_template_id_4c3e6186_staticRenderFns = []
|
|
28220
|
+
processFormvue_type_template_id_4c3e6186_render._withStripped = true
|
|
28176
28221
|
|
|
28177
28222
|
|
|
28178
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
28223
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=4c3e6186&
|
|
28179
28224
|
|
|
28180
28225
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=615d0e78&
|
|
28181
28226
|
var selectUservue_type_template_id_615d0e78_render = function () {
|
|
@@ -30054,7 +30099,6 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30054
30099
|
this.getUserInfo();
|
|
30055
30100
|
},
|
|
30056
30101
|
mounted: function mounted() {
|
|
30057
|
-
console.log('发起流程开始');
|
|
30058
30102
|
this.getNodeType();
|
|
30059
30103
|
this.getStartFlow(this.processDefinitionId);
|
|
30060
30104
|
this.newOpinion = this.opinion;
|
|
@@ -30288,7 +30332,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30288
30332
|
newParm.submitTaskParamJson = JSON.stringify(_this4.taskParams);
|
|
30289
30333
|
params = newParm;
|
|
30290
30334
|
}
|
|
30291
|
-
utils_util["a" /* default */].ajax({
|
|
30335
|
+
utils_util["a" /* default */].ajax({
|
|
30336
|
+
url: _this4.isFreeStartFlow ? api["z" /* freeStartFlowWithSubmitTask */] : api["pb" /* register */],
|
|
30337
|
+
method: 'post',
|
|
30338
|
+
data: params
|
|
30339
|
+
}).then(function (res) {
|
|
30292
30340
|
var status = res.status,
|
|
30293
30341
|
message = res.message;
|
|
30294
30342
|
|
|
@@ -30433,11 +30481,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30433
30481
|
});
|
|
30434
30482
|
},
|
|
30435
30483
|
|
|
30436
|
-
/**
|
|
30437
|
-
* isMultiple
|
|
30438
|
-
* @desc:是否多选
|
|
30439
|
-
* @author liufan
|
|
30440
|
-
* @date 2022年9月13日
|
|
30484
|
+
/**
|
|
30485
|
+
* isMultiple
|
|
30486
|
+
* @desc:是否多选
|
|
30487
|
+
* @author liufan
|
|
30488
|
+
* @date 2022年9月13日
|
|
30441
30489
|
**/
|
|
30442
30490
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
30443
30491
|
var multiple = false;
|
|
@@ -30590,8 +30638,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
30590
30638
|
|
|
30591
30639
|
var processForm_component = normalizeComponent(
|
|
30592
30640
|
src_processFormvue_type_script_lang_js_,
|
|
30593
|
-
|
|
30594
|
-
|
|
30641
|
+
processFormvue_type_template_id_4c3e6186_render,
|
|
30642
|
+
processFormvue_type_template_id_4c3e6186_staticRenderFns,
|
|
30595
30643
|
false,
|
|
30596
30644
|
null,
|
|
30597
30645
|
null,
|
|
@@ -33246,8 +33294,8 @@ var startTaskRead_component = normalizeComponent(
|
|
|
33246
33294
|
)
|
|
33247
33295
|
|
|
33248
33296
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
33249
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=
|
|
33250
|
-
var
|
|
33297
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=2b7d4b66&
|
|
33298
|
+
var resetvue_type_template_id_2b7d4b66_render = function () {
|
|
33251
33299
|
var _vm = this
|
|
33252
33300
|
var _h = _vm.$createElement
|
|
33253
33301
|
var _c = _vm._self._c || _h
|
|
@@ -33678,11 +33726,11 @@ var resetvue_type_template_id_138bb789_render = function () {
|
|
|
33678
33726
|
1
|
|
33679
33727
|
)
|
|
33680
33728
|
}
|
|
33681
|
-
var
|
|
33682
|
-
|
|
33729
|
+
var resetvue_type_template_id_2b7d4b66_staticRenderFns = []
|
|
33730
|
+
resetvue_type_template_id_2b7d4b66_render._withStripped = true
|
|
33683
33731
|
|
|
33684
33732
|
|
|
33685
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
33733
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=2b7d4b66&
|
|
33686
33734
|
|
|
33687
33735
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
|
|
33688
33736
|
var resetvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -34405,11 +34453,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
34405
34453
|
});
|
|
34406
34454
|
},
|
|
34407
34455
|
|
|
34408
|
-
/**
|
|
34409
|
-
* isMultiple
|
|
34410
|
-
* @desc:是否多选
|
|
34411
|
-
* @author liufan
|
|
34412
|
-
* @date 2022年9月13日
|
|
34456
|
+
/**
|
|
34457
|
+
* isMultiple
|
|
34458
|
+
* @desc:是否多选
|
|
34459
|
+
* @author liufan
|
|
34460
|
+
* @date 2022年9月13日
|
|
34413
34461
|
**/
|
|
34414
34462
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
34415
34463
|
var multiple = false;
|
|
@@ -34464,7 +34512,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
34464
34512
|
_this7.readOnlyNotificationType = data.readOnlyNotificationType;
|
|
34465
34513
|
_this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
|
|
34466
34514
|
var flowList = [];
|
|
34467
|
-
console.log(data.taskNodeList);
|
|
34468
34515
|
if (data.taskNodeList && data.taskNodeList.length > 0) {
|
|
34469
34516
|
for (var key in data.taskNodeList[0]) {
|
|
34470
34517
|
flowList.push({
|
|
@@ -34482,7 +34529,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
34482
34529
|
}
|
|
34483
34530
|
|
|
34484
34531
|
_this7.nextNode.nodeInfo = flowList;
|
|
34485
|
-
console.log(_this7.nextNode.nodeInfo, 'this.nextNode.nodeInfo');
|
|
34486
34532
|
_this7.nextNode.nextNode = flowList[0].nodeId;
|
|
34487
34533
|
_this7.taskExamine = data.taskExamine;
|
|
34488
34534
|
_this7.processDefinitionId = data.taskExamine.processDefinitionId;
|
|
@@ -34542,8 +34588,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
34542
34588
|
|
|
34543
34589
|
var reset_component = normalizeComponent(
|
|
34544
34590
|
src_resetvue_type_script_lang_js_,
|
|
34545
|
-
|
|
34546
|
-
|
|
34591
|
+
resetvue_type_template_id_2b7d4b66_render,
|
|
34592
|
+
resetvue_type_template_id_2b7d4b66_staticRenderFns,
|
|
34547
34593
|
false,
|
|
34548
34594
|
null,
|
|
34549
34595
|
null,
|
|
@@ -34552,8 +34598,8 @@ var reset_component = normalizeComponent(
|
|
|
34552
34598
|
)
|
|
34553
34599
|
|
|
34554
34600
|
/* harmony default export */ var src_reset = (reset_component.exports);
|
|
34555
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
34556
|
-
var
|
|
34601
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=3d269602&
|
|
34602
|
+
var taskUnionExaminevue_type_template_id_3d269602_render = function () {
|
|
34557
34603
|
var _vm = this
|
|
34558
34604
|
var _h = _vm.$createElement
|
|
34559
34605
|
var _c = _vm._self._c || _h
|
|
@@ -34792,7 +34838,7 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
34792
34838
|
attrs: { type: "primary", size: "small" },
|
|
34793
34839
|
on: { click: _vm.subMit },
|
|
34794
34840
|
},
|
|
34795
|
-
[_vm._v("
|
|
34841
|
+
[_vm._v(" 确定 ")]
|
|
34796
34842
|
),
|
|
34797
34843
|
_c(
|
|
34798
34844
|
"el-button",
|
|
@@ -34806,11 +34852,11 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
34806
34852
|
1
|
|
34807
34853
|
)
|
|
34808
34854
|
}
|
|
34809
|
-
var
|
|
34810
|
-
|
|
34855
|
+
var taskUnionExaminevue_type_template_id_3d269602_staticRenderFns = []
|
|
34856
|
+
taskUnionExaminevue_type_template_id_3d269602_render._withStripped = true
|
|
34811
34857
|
|
|
34812
34858
|
|
|
34813
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
34859
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=3d269602&
|
|
34814
34860
|
|
|
34815
34861
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
|
|
34816
34862
|
var taskUnionExaminevue_type_script_lang_js_components;
|
|
@@ -34944,9 +34990,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
34944
34990
|
//
|
|
34945
34991
|
//
|
|
34946
34992
|
//
|
|
34947
|
-
//
|
|
34948
|
-
//
|
|
34949
|
-
//
|
|
34950
34993
|
|
|
34951
34994
|
|
|
34952
34995
|
|
|
@@ -35128,7 +35171,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35128
35171
|
_this3.currentOrgTabs = res.data.customizedConfig.currentOrgSelectorItemList.split(',');
|
|
35129
35172
|
var param = res.data.customizedConfig.currentOrgSelectorRangeList.split(',');
|
|
35130
35173
|
_this3.currentOrgTabs.map(function (x, i) {
|
|
35131
|
-
_this3.params[x] = {
|
|
35174
|
+
_this3.params[x] = {
|
|
35175
|
+
filid: param[i] == 'my' ? _this3.params.filid = JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId : param[i]
|
|
35176
|
+
};
|
|
35132
35177
|
});
|
|
35133
35178
|
} else {
|
|
35134
35179
|
if (_this3.type == 'takeAdvice') {
|
|
@@ -35232,7 +35277,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35232
35277
|
method: 'POST'
|
|
35233
35278
|
};
|
|
35234
35279
|
this.loading = true;
|
|
35235
|
-
console.log(param.data, nextCurrentOrgObj, 'data');
|
|
35236
35280
|
utils_util["a" /* default */].ajax(param).then(function (res) {
|
|
35237
35281
|
var message = res.message,
|
|
35238
35282
|
status = res.status;
|
|
@@ -35367,8 +35411,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
35367
35411
|
|
|
35368
35412
|
var taskUnionExamine_component = normalizeComponent(
|
|
35369
35413
|
component_taskUnionExaminevue_type_script_lang_js_,
|
|
35370
|
-
|
|
35371
|
-
|
|
35414
|
+
taskUnionExaminevue_type_template_id_3d269602_render,
|
|
35415
|
+
taskUnionExaminevue_type_template_id_3d269602_staticRenderFns,
|
|
35372
35416
|
false,
|
|
35373
35417
|
null,
|
|
35374
35418
|
null,
|
|
@@ -38775,11 +38819,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38775
38819
|
});
|
|
38776
38820
|
},
|
|
38777
38821
|
|
|
38778
|
-
/**
|
|
38779
|
-
* saveInfo
|
|
38780
|
-
* @desc:暂存
|
|
38781
|
-
* @author liufan
|
|
38782
|
-
* @date 2022年9月9日
|
|
38822
|
+
/**
|
|
38823
|
+
* saveInfo
|
|
38824
|
+
* @desc:暂存
|
|
38825
|
+
* @author liufan
|
|
38826
|
+
* @date 2022年9月9日
|
|
38783
38827
|
**/
|
|
38784
38828
|
saveInfo: function saveInfo(type, btn) {
|
|
38785
38829
|
var _this6 = this;
|
|
@@ -38841,11 +38885,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38841
38885
|
});
|
|
38842
38886
|
},
|
|
38843
38887
|
|
|
38844
|
-
/**
|
|
38845
|
-
* rejectBtn
|
|
38846
|
-
* @desc:点击驳回
|
|
38847
|
-
* @author liufan
|
|
38848
|
-
* @date 2022年5月25日
|
|
38888
|
+
/**
|
|
38889
|
+
* rejectBtn
|
|
38890
|
+
* @desc:点击驳回
|
|
38891
|
+
* @author liufan
|
|
38892
|
+
* @date 2022年5月25日
|
|
38849
38893
|
**/
|
|
38850
38894
|
rejectBtn: function rejectBtn() {
|
|
38851
38895
|
var _this8 = this;
|
|
@@ -38863,11 +38907,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38863
38907
|
}
|
|
38864
38908
|
},
|
|
38865
38909
|
|
|
38866
|
-
/**
|
|
38867
|
-
* taskReadBtn
|
|
38868
|
-
* @desc:点击分阅
|
|
38869
|
-
* @author liufan
|
|
38870
|
-
* @date 2022年5月25日
|
|
38910
|
+
/**
|
|
38911
|
+
* taskReadBtn
|
|
38912
|
+
* @desc:点击分阅
|
|
38913
|
+
* @author liufan
|
|
38914
|
+
* @date 2022年5月25日
|
|
38871
38915
|
**/
|
|
38872
38916
|
taskReadBtn: function taskReadBtn() {
|
|
38873
38917
|
var _this9 = this;
|
|
@@ -38886,11 +38930,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38886
38930
|
}
|
|
38887
38931
|
},
|
|
38888
38932
|
|
|
38889
|
-
/**
|
|
38890
|
-
* getFind
|
|
38891
|
-
* @desc:获取通知方式
|
|
38892
|
-
* @author liufan
|
|
38893
|
-
* @date 2022年5月25日
|
|
38933
|
+
/**
|
|
38934
|
+
* getFind
|
|
38935
|
+
* @desc:获取通知方式
|
|
38936
|
+
* @author liufan
|
|
38937
|
+
* @date 2022年5月25日
|
|
38894
38938
|
**/
|
|
38895
38939
|
getFind: function getFind() {
|
|
38896
38940
|
var _this10 = this;
|
|
@@ -38945,12 +38989,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38945
38989
|
});
|
|
38946
38990
|
},
|
|
38947
38991
|
|
|
38948
|
-
/**
|
|
38949
|
-
* endFlows
|
|
38950
|
-
* @desc:直接办结
|
|
38951
|
-
* @author liufan
|
|
38952
|
-
* @param {Object} res 直接办结数据
|
|
38953
|
-
* @date 2022年5月25日
|
|
38992
|
+
/**
|
|
38993
|
+
* endFlows
|
|
38994
|
+
* @desc:直接办结
|
|
38995
|
+
* @author liufan
|
|
38996
|
+
* @param {Object} res 直接办结数据
|
|
38997
|
+
* @date 2022年5月25日
|
|
38954
38998
|
**/
|
|
38955
38999
|
endFlows: function endFlows(res) {
|
|
38956
39000
|
var _this12 = this;
|
|
@@ -39004,12 +39048,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39004
39048
|
}).catch(function (e) {});
|
|
39005
39049
|
},
|
|
39006
39050
|
|
|
39007
|
-
/**
|
|
39008
|
-
* goView
|
|
39009
|
-
* @desc:更多流程按钮操作
|
|
39010
|
-
* @author liufan
|
|
39011
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
39012
|
-
* @date 2022年5月25日
|
|
39051
|
+
/**
|
|
39052
|
+
* goView
|
|
39053
|
+
* @desc:更多流程按钮操作
|
|
39054
|
+
* @author liufan
|
|
39055
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
39056
|
+
* @date 2022年5月25日
|
|
39013
39057
|
**/
|
|
39014
39058
|
goView: function goView(res) {
|
|
39015
39059
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -39094,11 +39138,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39094
39138
|
// isCanStartSubFlow
|
|
39095
39139
|
},
|
|
39096
39140
|
|
|
39097
|
-
/**
|
|
39098
|
-
* toTakeAdvice
|
|
39099
|
-
* @desc:征求意见
|
|
39100
|
-
* @author liufan
|
|
39101
|
-
* @date 2022年9月29日
|
|
39141
|
+
/**
|
|
39142
|
+
* toTakeAdvice
|
|
39143
|
+
* @desc:征求意见
|
|
39144
|
+
* @author liufan
|
|
39145
|
+
* @date 2022年9月29日
|
|
39102
39146
|
**/
|
|
39103
39147
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
39104
39148
|
var _this14 = this;
|
|
@@ -39142,11 +39186,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39142
39186
|
});
|
|
39143
39187
|
},
|
|
39144
39188
|
|
|
39145
|
-
/**
|
|
39146
|
-
* toStartDraf
|
|
39147
|
-
* @desc: 稿件递送、联合审核、复核
|
|
39148
|
-
* @author liufan
|
|
39149
|
-
* @date 2022年9月29日
|
|
39189
|
+
/**
|
|
39190
|
+
* toStartDraf
|
|
39191
|
+
* @desc: 稿件递送、联合审核、复核
|
|
39192
|
+
* @author liufan
|
|
39193
|
+
* @date 2022年9月29日
|
|
39150
39194
|
**/
|
|
39151
39195
|
toStartDraf: function toStartDraf(res) {
|
|
39152
39196
|
var _this16 = this;
|
|
@@ -39160,11 +39204,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39160
39204
|
}
|
|
39161
39205
|
},
|
|
39162
39206
|
|
|
39163
|
-
/**
|
|
39164
|
-
* toSendMsg
|
|
39165
|
-
* @desc:核稿通知
|
|
39166
|
-
* @author liufan
|
|
39167
|
-
* @date 2022年9月29日
|
|
39207
|
+
/**
|
|
39208
|
+
* toSendMsg
|
|
39209
|
+
* @desc:核稿通知
|
|
39210
|
+
* @author liufan
|
|
39211
|
+
* @date 2022年9月29日
|
|
39168
39212
|
**/
|
|
39169
39213
|
toSendMsg: function toSendMsg(res) {
|
|
39170
39214
|
var _this17 = this;
|
|
@@ -39178,11 +39222,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39178
39222
|
}
|
|
39179
39223
|
},
|
|
39180
39224
|
|
|
39181
|
-
/**
|
|
39182
|
-
* toTaskReadAndEnd
|
|
39183
|
-
* @desc:分阅并办结
|
|
39184
|
-
* @author liufan
|
|
39185
|
-
* @date 2022年9月29日
|
|
39225
|
+
/**
|
|
39226
|
+
* toTaskReadAndEnd
|
|
39227
|
+
* @desc:分阅并办结
|
|
39228
|
+
* @author liufan
|
|
39229
|
+
* @date 2022年9月29日
|
|
39186
39230
|
**/
|
|
39187
39231
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
39188
39232
|
var _this18 = this;
|
|
@@ -39200,11 +39244,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39200
39244
|
}
|
|
39201
39245
|
},
|
|
39202
39246
|
|
|
39203
|
-
/**
|
|
39204
|
-
* rejectAndEnd
|
|
39205
|
-
* @desc:驳回并办结
|
|
39206
|
-
* @author liufan
|
|
39207
|
-
* @date 2022年9月29日
|
|
39247
|
+
/**
|
|
39248
|
+
* rejectAndEnd
|
|
39249
|
+
* @desc:驳回并办结
|
|
39250
|
+
* @author liufan
|
|
39251
|
+
* @date 2022年9月29日
|
|
39208
39252
|
**/
|
|
39209
39253
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
39210
39254
|
var _this19 = this;
|
|
@@ -39259,11 +39303,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39259
39303
|
});
|
|
39260
39304
|
},
|
|
39261
39305
|
|
|
39262
|
-
/**
|
|
39263
|
-
* toTransfer
|
|
39264
|
-
* @desc:转办
|
|
39265
|
-
* @author liufan
|
|
39266
|
-
* @date 2022年9月29日
|
|
39306
|
+
/**
|
|
39307
|
+
* toTransfer
|
|
39308
|
+
* @desc:转办
|
|
39309
|
+
* @author liufan
|
|
39310
|
+
* @date 2022年9月29日
|
|
39267
39311
|
**/
|
|
39268
39312
|
toTransfer: function toTransfer(res) {
|
|
39269
39313
|
var _this21 = this;
|
|
@@ -39279,11 +39323,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39279
39323
|
}
|
|
39280
39324
|
},
|
|
39281
39325
|
|
|
39282
|
-
/**
|
|
39283
|
-
* getNodeInfo
|
|
39284
|
-
* @desc:获取节点信息
|
|
39285
|
-
* @author liufan
|
|
39286
|
-
* @date 2022年5月25日
|
|
39326
|
+
/**
|
|
39327
|
+
* getNodeInfo
|
|
39328
|
+
* @desc:获取节点信息
|
|
39329
|
+
* @author liufan
|
|
39330
|
+
* @date 2022年5月25日
|
|
39287
39331
|
**/
|
|
39288
39332
|
getNodeInfo: function getNodeInfo() {
|
|
39289
39333
|
var _this22 = this;
|
|
@@ -39382,12 +39426,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39382
39426
|
});
|
|
39383
39427
|
},
|
|
39384
39428
|
|
|
39385
|
-
/**
|
|
39386
|
-
* selecNext
|
|
39387
|
-
* @desc:下步节点变化时更新数据
|
|
39388
|
-
* @author liufan
|
|
39389
|
-
* @param {String} val 当前选中值
|
|
39390
|
-
* @date 2022年5月25日
|
|
39429
|
+
/**
|
|
39430
|
+
* selecNext
|
|
39431
|
+
* @desc:下步节点变化时更新数据
|
|
39432
|
+
* @author liufan
|
|
39433
|
+
* @param {String} val 当前选中值
|
|
39434
|
+
* @date 2022年5月25日
|
|
39391
39435
|
**/
|
|
39392
39436
|
selecNext: function selecNext(val, type, isDef) {
|
|
39393
39437
|
var _this23 = this;
|
|
@@ -39496,11 +39540,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39496
39540
|
if (isDef !== true) this.getNodeInfo();
|
|
39497
39541
|
},
|
|
39498
39542
|
|
|
39499
|
-
/**
|
|
39500
|
-
* isMultiple
|
|
39501
|
-
* @desc:是否多选
|
|
39502
|
-
* @author liufan
|
|
39503
|
-
* @date 2022年9月13日
|
|
39543
|
+
/**
|
|
39544
|
+
* isMultiple
|
|
39545
|
+
* @desc:是否多选
|
|
39546
|
+
* @author liufan
|
|
39547
|
+
* @date 2022年9月13日
|
|
39504
39548
|
**/
|
|
39505
39549
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
39506
39550
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -39532,11 +39576,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39532
39576
|
}
|
|
39533
39577
|
},
|
|
39534
39578
|
|
|
39535
|
-
/**
|
|
39536
|
-
* getHedInfo
|
|
39537
|
-
* @desc:获取审核页面数据
|
|
39538
|
-
* @author liufan
|
|
39539
|
-
* @date 2022年5月25日
|
|
39579
|
+
/**
|
|
39580
|
+
* getHedInfo
|
|
39581
|
+
* @desc:获取审核页面数据
|
|
39582
|
+
* @author liufan
|
|
39583
|
+
* @date 2022年5月25日
|
|
39540
39584
|
**/
|
|
39541
39585
|
getHedInfo: function getHedInfo() {
|
|
39542
39586
|
var _this24 = this;
|
|
@@ -39772,13 +39816,13 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39772
39816
|
});
|
|
39773
39817
|
},
|
|
39774
39818
|
|
|
39775
|
-
/**
|
|
39776
|
-
* closeProcess
|
|
39777
|
-
* @desc:关闭弹窗
|
|
39778
|
-
* @author liufan
|
|
39779
|
-
* @param {boolean} val 当前是否办理流程
|
|
39780
|
-
* @param {String} type 当前点击的弹窗类型
|
|
39781
|
-
* @date 2022年5月25日
|
|
39819
|
+
/**
|
|
39820
|
+
* closeProcess
|
|
39821
|
+
* @desc:关闭弹窗
|
|
39822
|
+
* @author liufan
|
|
39823
|
+
* @param {boolean} val 当前是否办理流程
|
|
39824
|
+
* @param {String} type 当前点击的弹窗类型
|
|
39825
|
+
* @date 2022年5月25日
|
|
39782
39826
|
**/
|
|
39783
39827
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
39784
39828
|
if (closeParent) {
|
|
@@ -39795,23 +39839,23 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39795
39839
|
}
|
|
39796
39840
|
},
|
|
39797
39841
|
|
|
39798
|
-
/**
|
|
39799
|
-
* selectChange
|
|
39800
|
-
* @desc:常用语选择
|
|
39801
|
-
* @author liufan
|
|
39802
|
-
* @param {String} val 选中值
|
|
39803
|
-
* @date 2022年5月25日
|
|
39842
|
+
/**
|
|
39843
|
+
* selectChange
|
|
39844
|
+
* @desc:常用语选择
|
|
39845
|
+
* @author liufan
|
|
39846
|
+
* @param {String} val 选中值
|
|
39847
|
+
* @date 2022年5月25日
|
|
39804
39848
|
**/
|
|
39805
39849
|
selectChange: function selectChange(val) {
|
|
39806
39850
|
this.value = val;
|
|
39807
39851
|
},
|
|
39808
39852
|
|
|
39809
|
-
/**
|
|
39810
|
-
* upDate
|
|
39811
|
-
* @desc:修改常用语
|
|
39812
|
-
* @author liufan
|
|
39813
|
-
* @param {Object} val 修改值
|
|
39814
|
-
* @date 2022年5月25日
|
|
39853
|
+
/**
|
|
39854
|
+
* upDate
|
|
39855
|
+
* @desc:修改常用语
|
|
39856
|
+
* @author liufan
|
|
39857
|
+
* @param {Object} val 修改值
|
|
39858
|
+
* @date 2022年5月25日
|
|
39815
39859
|
**/
|
|
39816
39860
|
upDate: function upDate(val) {
|
|
39817
39861
|
this.FormData.id = val.id;
|
|
@@ -39819,11 +39863,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39819
39863
|
},
|
|
39820
39864
|
|
|
39821
39865
|
|
|
39822
|
-
/**
|
|
39823
|
-
* getProcess
|
|
39824
|
-
* @desc:获取选择流程
|
|
39825
|
-
* @author liufan
|
|
39826
|
-
* @date 2022年5月25日
|
|
39866
|
+
/**
|
|
39867
|
+
* getProcess
|
|
39868
|
+
* @desc:获取选择流程
|
|
39869
|
+
* @author liufan
|
|
39870
|
+
* @date 2022年5月25日
|
|
39827
39871
|
**/
|
|
39828
39872
|
getProcess: function getProcess() {
|
|
39829
39873
|
var _this25 = this;
|
|
@@ -39877,11 +39921,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39877
39921
|
});
|
|
39878
39922
|
},
|
|
39879
39923
|
|
|
39880
|
-
/**
|
|
39881
|
-
* getPendedhistoryList
|
|
39882
|
-
* @desc:获取流程列表
|
|
39883
|
-
* @author liufan
|
|
39884
|
-
* @date 2022年5月25日
|
|
39924
|
+
/**
|
|
39925
|
+
* getPendedhistoryList
|
|
39926
|
+
* @desc:获取流程列表
|
|
39927
|
+
* @author liufan
|
|
39928
|
+
* @date 2022年5月25日
|
|
39885
39929
|
**/
|
|
39886
39930
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
39887
39931
|
var _this26 = this;
|
|
@@ -39913,12 +39957,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39913
39957
|
},
|
|
39914
39958
|
|
|
39915
39959
|
// 提交流程
|
|
39916
|
-
/**
|
|
39917
|
-
* subProcess
|
|
39918
|
-
* @desc:提交流程
|
|
39919
|
-
* @author liufan
|
|
39920
|
-
* @param {String} formName 当前form表单ref值
|
|
39921
|
-
* @date 2022年5月25日
|
|
39960
|
+
/**
|
|
39961
|
+
* subProcess
|
|
39962
|
+
* @desc:提交流程
|
|
39963
|
+
* @author liufan
|
|
39964
|
+
* @param {String} formName 当前form表单ref值
|
|
39965
|
+
* @date 2022年5月25日
|
|
39922
39966
|
**/
|
|
39923
39967
|
subProcess: function subProcess(val) {
|
|
39924
39968
|
var _this27 = this;
|
|
@@ -41491,11 +41535,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41491
41535
|
});
|
|
41492
41536
|
},
|
|
41493
41537
|
|
|
41494
|
-
/**
|
|
41495
|
-
* saveInfo
|
|
41496
|
-
* @desc:暂存
|
|
41497
|
-
* @author liufan
|
|
41498
|
-
* @date 2022年9月9日
|
|
41538
|
+
/**
|
|
41539
|
+
* saveInfo
|
|
41540
|
+
* @desc:暂存
|
|
41541
|
+
* @author liufan
|
|
41542
|
+
* @date 2022年9月9日
|
|
41499
41543
|
**/
|
|
41500
41544
|
saveInfo: function saveInfo(type, btn) {
|
|
41501
41545
|
var _this6 = this;
|
|
@@ -41557,11 +41601,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41557
41601
|
});
|
|
41558
41602
|
},
|
|
41559
41603
|
|
|
41560
|
-
/**
|
|
41561
|
-
* rejectBtn
|
|
41562
|
-
* @desc:点击驳回
|
|
41563
|
-
* @author liufan
|
|
41564
|
-
* @date 2022年5月25日
|
|
41604
|
+
/**
|
|
41605
|
+
* rejectBtn
|
|
41606
|
+
* @desc:点击驳回
|
|
41607
|
+
* @author liufan
|
|
41608
|
+
* @date 2022年5月25日
|
|
41565
41609
|
**/
|
|
41566
41610
|
rejectBtn: function rejectBtn() {
|
|
41567
41611
|
var _this8 = this;
|
|
@@ -41579,11 +41623,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41579
41623
|
}
|
|
41580
41624
|
},
|
|
41581
41625
|
|
|
41582
|
-
/**
|
|
41583
|
-
* taskReadBtn
|
|
41584
|
-
* @desc:点击分阅
|
|
41585
|
-
* @author liufan
|
|
41586
|
-
* @date 2022年5月25日
|
|
41626
|
+
/**
|
|
41627
|
+
* taskReadBtn
|
|
41628
|
+
* @desc:点击分阅
|
|
41629
|
+
* @author liufan
|
|
41630
|
+
* @date 2022年5月25日
|
|
41587
41631
|
**/
|
|
41588
41632
|
taskReadBtn: function taskReadBtn() {
|
|
41589
41633
|
var _this9 = this;
|
|
@@ -41602,11 +41646,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41602
41646
|
}
|
|
41603
41647
|
},
|
|
41604
41648
|
|
|
41605
|
-
/**
|
|
41606
|
-
* getFind
|
|
41607
|
-
* @desc:获取通知方式
|
|
41608
|
-
* @author liufan
|
|
41609
|
-
* @date 2022年5月25日
|
|
41649
|
+
/**
|
|
41650
|
+
* getFind
|
|
41651
|
+
* @desc:获取通知方式
|
|
41652
|
+
* @author liufan
|
|
41653
|
+
* @date 2022年5月25日
|
|
41610
41654
|
**/
|
|
41611
41655
|
getFind: function getFind() {
|
|
41612
41656
|
var _this10 = this;
|
|
@@ -41663,12 +41707,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41663
41707
|
});
|
|
41664
41708
|
},
|
|
41665
41709
|
|
|
41666
|
-
/**
|
|
41667
|
-
* endFlows
|
|
41668
|
-
* @desc:直接办结
|
|
41669
|
-
* @author liufan
|
|
41670
|
-
* @param {Object} res 直接办结数据
|
|
41671
|
-
* @date 2022年5月25日
|
|
41710
|
+
/**
|
|
41711
|
+
* endFlows
|
|
41712
|
+
* @desc:直接办结
|
|
41713
|
+
* @author liufan
|
|
41714
|
+
* @param {Object} res 直接办结数据
|
|
41715
|
+
* @date 2022年5月25日
|
|
41672
41716
|
**/
|
|
41673
41717
|
endFlows: function endFlows(res) {
|
|
41674
41718
|
var _this12 = this;
|
|
@@ -41722,12 +41766,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41722
41766
|
}).catch(function (e) {});
|
|
41723
41767
|
},
|
|
41724
41768
|
|
|
41725
|
-
/**
|
|
41726
|
-
* goView
|
|
41727
|
-
* @desc:更多流程按钮操作
|
|
41728
|
-
* @author liufan
|
|
41729
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
41730
|
-
* @date 2022年5月25日
|
|
41769
|
+
/**
|
|
41770
|
+
* goView
|
|
41771
|
+
* @desc:更多流程按钮操作
|
|
41772
|
+
* @author liufan
|
|
41773
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
41774
|
+
* @date 2022年5月25日
|
|
41731
41775
|
**/
|
|
41732
41776
|
goView: function goView(res) {
|
|
41733
41777
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -41812,11 +41856,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41812
41856
|
// isCanStartSubFlow
|
|
41813
41857
|
},
|
|
41814
41858
|
|
|
41815
|
-
/**
|
|
41816
|
-
* toTakeAdvice
|
|
41817
|
-
* @desc:征求意见
|
|
41818
|
-
* @author liufan
|
|
41819
|
-
* @date 2022年9月29日
|
|
41859
|
+
/**
|
|
41860
|
+
* toTakeAdvice
|
|
41861
|
+
* @desc:征求意见
|
|
41862
|
+
* @author liufan
|
|
41863
|
+
* @date 2022年9月29日
|
|
41820
41864
|
**/
|
|
41821
41865
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
41822
41866
|
var _this14 = this;
|
|
@@ -41860,11 +41904,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41860
41904
|
});
|
|
41861
41905
|
},
|
|
41862
41906
|
|
|
41863
|
-
/**
|
|
41864
|
-
* toStartDraf
|
|
41865
|
-
* @desc: 稿件递送、联合审核、复核
|
|
41866
|
-
* @author liufan
|
|
41867
|
-
* @date 2022年9月29日
|
|
41907
|
+
/**
|
|
41908
|
+
* toStartDraf
|
|
41909
|
+
* @desc: 稿件递送、联合审核、复核
|
|
41910
|
+
* @author liufan
|
|
41911
|
+
* @date 2022年9月29日
|
|
41868
41912
|
**/
|
|
41869
41913
|
toStartDraf: function toStartDraf(res) {
|
|
41870
41914
|
var _this16 = this;
|
|
@@ -41878,11 +41922,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41878
41922
|
}
|
|
41879
41923
|
},
|
|
41880
41924
|
|
|
41881
|
-
/**
|
|
41882
|
-
* toSendMsg
|
|
41883
|
-
* @desc:核稿通知
|
|
41884
|
-
* @author liufan
|
|
41885
|
-
* @date 2022年9月29日
|
|
41925
|
+
/**
|
|
41926
|
+
* toSendMsg
|
|
41927
|
+
* @desc:核稿通知
|
|
41928
|
+
* @author liufan
|
|
41929
|
+
* @date 2022年9月29日
|
|
41886
41930
|
**/
|
|
41887
41931
|
toSendMsg: function toSendMsg(res) {
|
|
41888
41932
|
var _this17 = this;
|
|
@@ -41896,11 +41940,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41896
41940
|
}
|
|
41897
41941
|
},
|
|
41898
41942
|
|
|
41899
|
-
/**
|
|
41900
|
-
* toTaskReadAndEnd
|
|
41901
|
-
* @desc:分阅并办结
|
|
41902
|
-
* @author liufan
|
|
41903
|
-
* @date 2022年9月29日
|
|
41943
|
+
/**
|
|
41944
|
+
* toTaskReadAndEnd
|
|
41945
|
+
* @desc:分阅并办结
|
|
41946
|
+
* @author liufan
|
|
41947
|
+
* @date 2022年9月29日
|
|
41904
41948
|
**/
|
|
41905
41949
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
41906
41950
|
var _this18 = this;
|
|
@@ -41918,11 +41962,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41918
41962
|
}
|
|
41919
41963
|
},
|
|
41920
41964
|
|
|
41921
|
-
/**
|
|
41922
|
-
* rejectAndEnd
|
|
41923
|
-
* @desc:驳回并办结
|
|
41924
|
-
* @author liufan
|
|
41925
|
-
* @date 2022年9月29日
|
|
41965
|
+
/**
|
|
41966
|
+
* rejectAndEnd
|
|
41967
|
+
* @desc:驳回并办结
|
|
41968
|
+
* @author liufan
|
|
41969
|
+
* @date 2022年9月29日
|
|
41926
41970
|
**/
|
|
41927
41971
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
41928
41972
|
var _this19 = this;
|
|
@@ -41977,11 +42021,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41977
42021
|
});
|
|
41978
42022
|
},
|
|
41979
42023
|
|
|
41980
|
-
/**
|
|
41981
|
-
* toTransfer
|
|
41982
|
-
* @desc:转办
|
|
41983
|
-
* @author liufan
|
|
41984
|
-
* @date 2022年9月29日
|
|
42024
|
+
/**
|
|
42025
|
+
* toTransfer
|
|
42026
|
+
* @desc:转办
|
|
42027
|
+
* @author liufan
|
|
42028
|
+
* @date 2022年9月29日
|
|
41985
42029
|
**/
|
|
41986
42030
|
toTransfer: function toTransfer(res) {
|
|
41987
42031
|
var _this21 = this;
|
|
@@ -41997,11 +42041,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
41997
42041
|
}
|
|
41998
42042
|
},
|
|
41999
42043
|
|
|
42000
|
-
/**
|
|
42001
|
-
* getNodeInfo
|
|
42002
|
-
* @desc:获取节点信息
|
|
42003
|
-
* @author liufan
|
|
42004
|
-
* @date 2022年5月25日
|
|
42044
|
+
/**
|
|
42045
|
+
* getNodeInfo
|
|
42046
|
+
* @desc:获取节点信息
|
|
42047
|
+
* @author liufan
|
|
42048
|
+
* @date 2022年5月25日
|
|
42005
42049
|
**/
|
|
42006
42050
|
getNodeInfo: function getNodeInfo() {
|
|
42007
42051
|
var _this22 = this;
|
|
@@ -42100,12 +42144,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42100
42144
|
});
|
|
42101
42145
|
},
|
|
42102
42146
|
|
|
42103
|
-
/**
|
|
42104
|
-
* selecNext
|
|
42105
|
-
* @desc:下步节点变化时更新数据
|
|
42106
|
-
* @author liufan
|
|
42107
|
-
* @param {String} val 当前选中值
|
|
42108
|
-
* @date 2022年5月25日
|
|
42147
|
+
/**
|
|
42148
|
+
* selecNext
|
|
42149
|
+
* @desc:下步节点变化时更新数据
|
|
42150
|
+
* @author liufan
|
|
42151
|
+
* @param {String} val 当前选中值
|
|
42152
|
+
* @date 2022年5月25日
|
|
42109
42153
|
**/
|
|
42110
42154
|
selecNext: function selecNext(val, type, isDef) {
|
|
42111
42155
|
var _this23 = this;
|
|
@@ -42214,11 +42258,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42214
42258
|
if (isDef !== true) this.getNodeInfo();
|
|
42215
42259
|
},
|
|
42216
42260
|
|
|
42217
|
-
/**
|
|
42218
|
-
* isMultiple
|
|
42219
|
-
* @desc:是否多选
|
|
42220
|
-
* @author liufan
|
|
42221
|
-
* @date 2022年9月13日
|
|
42261
|
+
/**
|
|
42262
|
+
* isMultiple
|
|
42263
|
+
* @desc:是否多选
|
|
42264
|
+
* @author liufan
|
|
42265
|
+
* @date 2022年9月13日
|
|
42222
42266
|
**/
|
|
42223
42267
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
42224
42268
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -42250,11 +42294,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42250
42294
|
}
|
|
42251
42295
|
},
|
|
42252
42296
|
|
|
42253
|
-
/**
|
|
42254
|
-
* getHedInfo
|
|
42255
|
-
* @desc:获取审核页面数据
|
|
42256
|
-
* @author liufan
|
|
42257
|
-
* @date 2022年5月25日
|
|
42297
|
+
/**
|
|
42298
|
+
* getHedInfo
|
|
42299
|
+
* @desc:获取审核页面数据
|
|
42300
|
+
* @author liufan
|
|
42301
|
+
* @date 2022年5月25日
|
|
42258
42302
|
**/
|
|
42259
42303
|
getHedInfo: function getHedInfo() {
|
|
42260
42304
|
var _this24 = this;
|
|
@@ -42490,13 +42534,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42490
42534
|
});
|
|
42491
42535
|
},
|
|
42492
42536
|
|
|
42493
|
-
/**
|
|
42494
|
-
* closeProcess
|
|
42495
|
-
* @desc:关闭弹窗
|
|
42496
|
-
* @author liufan
|
|
42497
|
-
* @param {boolean} val 当前是否办理流程
|
|
42498
|
-
* @param {String} type 当前点击的弹窗类型
|
|
42499
|
-
* @date 2022年5月25日
|
|
42537
|
+
/**
|
|
42538
|
+
* closeProcess
|
|
42539
|
+
* @desc:关闭弹窗
|
|
42540
|
+
* @author liufan
|
|
42541
|
+
* @param {boolean} val 当前是否办理流程
|
|
42542
|
+
* @param {String} type 当前点击的弹窗类型
|
|
42543
|
+
* @date 2022年5月25日
|
|
42500
42544
|
**/
|
|
42501
42545
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
42502
42546
|
if (closeParent) {
|
|
@@ -42509,23 +42553,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42509
42553
|
}
|
|
42510
42554
|
},
|
|
42511
42555
|
|
|
42512
|
-
/**
|
|
42513
|
-
* selectChange
|
|
42514
|
-
* @desc:常用语选择
|
|
42515
|
-
* @author liufan
|
|
42516
|
-
* @param {String} val 选中值
|
|
42517
|
-
* @date 2022年5月25日
|
|
42556
|
+
/**
|
|
42557
|
+
* selectChange
|
|
42558
|
+
* @desc:常用语选择
|
|
42559
|
+
* @author liufan
|
|
42560
|
+
* @param {String} val 选中值
|
|
42561
|
+
* @date 2022年5月25日
|
|
42518
42562
|
**/
|
|
42519
42563
|
selectChange: function selectChange(val) {
|
|
42520
42564
|
this.value = val;
|
|
42521
42565
|
},
|
|
42522
42566
|
|
|
42523
|
-
/**
|
|
42524
|
-
* upDate
|
|
42525
|
-
* @desc:修改常用语
|
|
42526
|
-
* @author liufan
|
|
42527
|
-
* @param {Object} val 修改值
|
|
42528
|
-
* @date 2022年5月25日
|
|
42567
|
+
/**
|
|
42568
|
+
* upDate
|
|
42569
|
+
* @desc:修改常用语
|
|
42570
|
+
* @author liufan
|
|
42571
|
+
* @param {Object} val 修改值
|
|
42572
|
+
* @date 2022年5月25日
|
|
42529
42573
|
**/
|
|
42530
42574
|
upDate: function upDate(val) {
|
|
42531
42575
|
this.FormData.id = val.id;
|
|
@@ -42533,11 +42577,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42533
42577
|
},
|
|
42534
42578
|
|
|
42535
42579
|
|
|
42536
|
-
/**
|
|
42537
|
-
* getProcess
|
|
42538
|
-
* @desc:获取选择流程
|
|
42539
|
-
* @author liufan
|
|
42540
|
-
* @date 2022年5月25日
|
|
42580
|
+
/**
|
|
42581
|
+
* getProcess
|
|
42582
|
+
* @desc:获取选择流程
|
|
42583
|
+
* @author liufan
|
|
42584
|
+
* @date 2022年5月25日
|
|
42541
42585
|
**/
|
|
42542
42586
|
getProcess: function getProcess() {
|
|
42543
42587
|
var _this25 = this;
|
|
@@ -42589,11 +42633,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42589
42633
|
});
|
|
42590
42634
|
},
|
|
42591
42635
|
|
|
42592
|
-
/**
|
|
42593
|
-
* getPendedhistoryList
|
|
42594
|
-
* @desc:获取流程列表
|
|
42595
|
-
* @author liufan
|
|
42596
|
-
* @date 2022年5月25日
|
|
42636
|
+
/**
|
|
42637
|
+
* getPendedhistoryList
|
|
42638
|
+
* @desc:获取流程列表
|
|
42639
|
+
* @author liufan
|
|
42640
|
+
* @date 2022年5月25日
|
|
42597
42641
|
**/
|
|
42598
42642
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
42599
42643
|
var _this26 = this;
|
|
@@ -42625,12 +42669,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42625
42669
|
},
|
|
42626
42670
|
|
|
42627
42671
|
// 提交流程
|
|
42628
|
-
/**
|
|
42629
|
-
* subProcess
|
|
42630
|
-
* @desc:提交流程
|
|
42631
|
-
* @author liufan
|
|
42632
|
-
* @param {String} formName 当前form表单ref值
|
|
42633
|
-
* @date 2022年5月25日
|
|
42672
|
+
/**
|
|
42673
|
+
* subProcess
|
|
42674
|
+
* @desc:提交流程
|
|
42675
|
+
* @author liufan
|
|
42676
|
+
* @param {String} formName 当前form表单ref值
|
|
42677
|
+
* @date 2022年5月25日
|
|
42634
42678
|
**/
|
|
42635
42679
|
subProcess: function subProcess(val, type) {
|
|
42636
42680
|
var _this27 = this;
|
|
@@ -42642,7 +42686,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42642
42686
|
_this27.value = _this27.value.replace(RegExp('同意。', 'g'), '');
|
|
42643
42687
|
_this27.value = val + _this27.value;
|
|
42644
42688
|
}
|
|
42645
|
-
console.log(112);
|
|
42646
42689
|
if (!_this27.validInfo()) {
|
|
42647
42690
|
_this27.freeValid = false;
|
|
42648
42691
|
return;
|
|
@@ -42687,7 +42730,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42687
42730
|
return false;
|
|
42688
42731
|
}
|
|
42689
42732
|
if (!this.value && this.isOpinionRequired === 1) {
|
|
42690
|
-
console.log(1);
|
|
42691
42733
|
this.$message.warning('请选择输入审批意见');
|
|
42692
42734
|
return false;
|
|
42693
42735
|
}
|
|
@@ -42908,8 +42950,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42908
42950
|
|
|
42909
42951
|
var flow_src_main_component = normalizeComponent(
|
|
42910
42952
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
42911
|
-
|
|
42912
|
-
|
|
42953
|
+
mainvue_type_template_id_5d052dc2_render,
|
|
42954
|
+
mainvue_type_template_id_5d052dc2_staticRenderFns,
|
|
42913
42955
|
false,
|
|
42914
42956
|
null,
|
|
42915
42957
|
null,
|
|
@@ -45797,12 +45839,12 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45797
45839
|
}
|
|
45798
45840
|
},
|
|
45799
45841
|
|
|
45800
|
-
/**
|
|
45801
|
-
* handleFormSubmit
|
|
45802
|
-
* @desc:删除节点点击事件
|
|
45803
|
-
* @param {Object} formData 点击删除的form数据
|
|
45804
|
-
* @author liufan
|
|
45805
|
-
* @date 2022年11月29日
|
|
45842
|
+
/**
|
|
45843
|
+
* handleFormSubmit
|
|
45844
|
+
* @desc:删除节点点击事件
|
|
45845
|
+
* @param {Object} formData 点击删除的form数据
|
|
45846
|
+
* @author liufan
|
|
45847
|
+
* @date 2022年11月29日
|
|
45806
45848
|
**/
|
|
45807
45849
|
handleFormSubmit: function handleFormSubmit(formData) {
|
|
45808
45850
|
var _this4 = this;
|
|
@@ -45833,48 +45875,48 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45833
45875
|
});
|
|
45834
45876
|
},
|
|
45835
45877
|
|
|
45836
|
-
/**
|
|
45837
|
-
* del
|
|
45838
|
-
* @desc:展示删除弹窗
|
|
45839
|
-
* @param {String} id 当前点击数据id
|
|
45840
|
-
* @author liufan
|
|
45841
|
-
* @date 2022年11月29日
|
|
45878
|
+
/**
|
|
45879
|
+
* del
|
|
45880
|
+
* @desc:展示删除弹窗
|
|
45881
|
+
* @param {String} id 当前点击数据id
|
|
45882
|
+
* @author liufan
|
|
45883
|
+
* @date 2022年11月29日
|
|
45842
45884
|
**/
|
|
45843
45885
|
del: function del(id) {
|
|
45844
45886
|
this.historyId = id;
|
|
45845
45887
|
this.showDel = true;
|
|
45846
45888
|
},
|
|
45847
45889
|
|
|
45848
|
-
/**
|
|
45849
|
-
* handleCurrentChange
|
|
45850
|
-
* @desc:监听页码变化
|
|
45851
|
-
* @param {String} val 当前页
|
|
45852
|
-
* @author liufan
|
|
45853
|
-
* @date 2022年11月29日
|
|
45890
|
+
/**
|
|
45891
|
+
* handleCurrentChange
|
|
45892
|
+
* @desc:监听页码变化
|
|
45893
|
+
* @param {String} val 当前页
|
|
45894
|
+
* @author liufan
|
|
45895
|
+
* @date 2022年11月29日
|
|
45854
45896
|
**/
|
|
45855
45897
|
handleCurrentChange: function handleCurrentChange(val) {
|
|
45856
45898
|
this.currentPage = val;
|
|
45857
45899
|
this.getPressList();
|
|
45858
45900
|
},
|
|
45859
45901
|
|
|
45860
|
-
/**
|
|
45861
|
-
* handleSizeChange
|
|
45862
|
-
* @desc:监听每页数据显示数量变化
|
|
45863
|
-
* @param {String} val 每页展示数量
|
|
45864
|
-
* @author liufan
|
|
45865
|
-
* @date 2022年11月29日
|
|
45902
|
+
/**
|
|
45903
|
+
* handleSizeChange
|
|
45904
|
+
* @desc:监听每页数据显示数量变化
|
|
45905
|
+
* @param {String} val 每页展示数量
|
|
45906
|
+
* @author liufan
|
|
45907
|
+
* @date 2022年11月29日
|
|
45866
45908
|
**/
|
|
45867
45909
|
handleSizeChange: function handleSizeChange(val) {
|
|
45868
45910
|
this.pageSize = val;
|
|
45869
45911
|
this.getPressList();
|
|
45870
45912
|
},
|
|
45871
45913
|
|
|
45872
|
-
/**
|
|
45873
|
-
* sortChange
|
|
45874
|
-
* @desc:监听排序变化
|
|
45875
|
-
* @param {Object} info 需要排序的字段及排序方式
|
|
45876
|
-
* @author liufan
|
|
45877
|
-
* @date 2022年11月29日
|
|
45914
|
+
/**
|
|
45915
|
+
* sortChange
|
|
45916
|
+
* @desc:监听排序变化
|
|
45917
|
+
* @param {Object} info 需要排序的字段及排序方式
|
|
45918
|
+
* @author liufan
|
|
45919
|
+
* @date 2022年11月29日
|
|
45878
45920
|
**/
|
|
45879
45921
|
sortChange: function sortChange(info) {
|
|
45880
45922
|
var prop = info.prop,
|
|
@@ -45885,11 +45927,11 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45885
45927
|
this.getPressList();
|
|
45886
45928
|
},
|
|
45887
45929
|
|
|
45888
|
-
/**
|
|
45889
|
-
* getPressList
|
|
45890
|
-
* @desc:催办列表数据
|
|
45891
|
-
* @author liufan
|
|
45892
|
-
* @date 2022年11月29日
|
|
45930
|
+
/**
|
|
45931
|
+
* getPressList
|
|
45932
|
+
* @desc:催办列表数据
|
|
45933
|
+
* @author liufan
|
|
45934
|
+
* @date 2022年11月29日
|
|
45893
45935
|
**/
|
|
45894
45936
|
getPressList: function getPressList() {
|
|
45895
45937
|
var _this5 = this;
|
|
@@ -45919,12 +45961,12 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45919
45961
|
});
|
|
45920
45962
|
},
|
|
45921
45963
|
|
|
45922
|
-
/**
|
|
45923
|
-
* goPress
|
|
45924
|
-
* @desc:催办列表查看
|
|
45925
|
-
* @param {String} id 催办列表id
|
|
45926
|
-
* @author liufan
|
|
45927
|
-
* @date 2022年11月29日
|
|
45964
|
+
/**
|
|
45965
|
+
* goPress
|
|
45966
|
+
* @desc:催办列表查看
|
|
45967
|
+
* @param {String} id 催办列表id
|
|
45968
|
+
* @author liufan
|
|
45969
|
+
* @date 2022年11月29日
|
|
45928
45970
|
**/
|
|
45929
45971
|
goPress: function goPress(id) {
|
|
45930
45972
|
this.historyId = id;
|
|
@@ -45932,23 +45974,23 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45932
45974
|
this.getPressList();
|
|
45933
45975
|
},
|
|
45934
45976
|
|
|
45935
|
-
/**
|
|
45936
|
-
* showFile
|
|
45937
|
-
* @desc:附件查看
|
|
45938
|
-
* @param {String} ownId 附件id
|
|
45939
|
-
* @author liufan
|
|
45940
|
-
* @date 2022年11月29日
|
|
45977
|
+
/**
|
|
45978
|
+
* showFile
|
|
45979
|
+
* @desc:附件查看
|
|
45980
|
+
* @param {String} ownId 附件id
|
|
45981
|
+
* @author liufan
|
|
45982
|
+
* @date 2022年11月29日
|
|
45941
45983
|
**/
|
|
45942
45984
|
showFile: function showFile(ownId) {
|
|
45943
45985
|
this.wfpendingid = ownId;
|
|
45944
45986
|
this.showFileList = true;
|
|
45945
45987
|
},
|
|
45946
45988
|
|
|
45947
|
-
/**
|
|
45948
|
-
* handleChange
|
|
45949
|
-
* @desc:切换排序方式
|
|
45950
|
-
* @author liufan
|
|
45951
|
-
* @date 2022年11月22日
|
|
45989
|
+
/**
|
|
45990
|
+
* handleChange
|
|
45991
|
+
* @desc:切换排序方式
|
|
45992
|
+
* @author liufan
|
|
45993
|
+
* @date 2022年11月22日
|
|
45952
45994
|
**/
|
|
45953
45995
|
handleChange: function handleChange(key, value) {
|
|
45954
45996
|
if (value) {
|
|
@@ -45959,11 +46001,11 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
45959
46001
|
this.getFlowList();
|
|
45960
46002
|
},
|
|
45961
46003
|
|
|
45962
|
-
/**
|
|
45963
|
-
* getFlowList
|
|
45964
|
-
* @desc:获取流程列表
|
|
45965
|
-
* @author liufan
|
|
45966
|
-
* @date 2022年11月22日
|
|
46004
|
+
/**
|
|
46005
|
+
* getFlowList
|
|
46006
|
+
* @desc:获取流程列表
|
|
46007
|
+
* @author liufan
|
|
46008
|
+
* @date 2022年11月22日
|
|
45967
46009
|
**/
|
|
45968
46010
|
getFlowList: function getFlowList() {
|
|
45969
46011
|
var _this6 = this;
|
|
@@ -46017,12 +46059,12 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
46017
46059
|
});
|
|
46018
46060
|
},
|
|
46019
46061
|
|
|
46020
|
-
/**
|
|
46021
|
-
* handleClick
|
|
46022
|
-
* @desc:表单点击事件
|
|
46023
|
-
* @param {Object} val 当前点击行数据及按钮
|
|
46024
|
-
* @author liufan
|
|
46025
|
-
* @date 2022年11月10日
|
|
46062
|
+
/**
|
|
46063
|
+
* handleClick
|
|
46064
|
+
* @desc:表单点击事件
|
|
46065
|
+
* @param {Object} val 当前点击行数据及按钮
|
|
46066
|
+
* @author liufan
|
|
46067
|
+
* @date 2022年11月10日
|
|
46026
46068
|
**/
|
|
46027
46069
|
handleClick: function handleClick(val) {
|
|
46028
46070
|
var _this7 = this;
|
|
@@ -46068,13 +46110,13 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
46068
46110
|
}
|
|
46069
46111
|
},
|
|
46070
46112
|
|
|
46071
|
-
/**
|
|
46072
|
-
* getCodeValue
|
|
46073
|
-
* @desc:获取代码表过滤后的值
|
|
46074
|
-
* @param {String} value 展示数据的代码值
|
|
46075
|
-
* @param {String} type 代码表类型
|
|
46076
|
-
* @author liufan
|
|
46077
|
-
* @date 2022年11月10日
|
|
46113
|
+
/**
|
|
46114
|
+
* getCodeValue
|
|
46115
|
+
* @desc:获取代码表过滤后的值
|
|
46116
|
+
* @param {String} value 展示数据的代码值
|
|
46117
|
+
* @param {String} type 代码表类型
|
|
46118
|
+
* @author liufan
|
|
46119
|
+
* @date 2022年11月10日
|
|
46078
46120
|
**/
|
|
46079
46121
|
getCodeValue: function getCodeValue(value, type) {
|
|
46080
46122
|
var val = this[type].filter(function (item) {
|
|
@@ -46083,12 +46125,12 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
46083
46125
|
return val[0].shortName;
|
|
46084
46126
|
},
|
|
46085
46127
|
|
|
46086
|
-
/**
|
|
46087
|
-
* getSysInfo
|
|
46088
|
-
* @desc:获取代码表
|
|
46089
|
-
* @param {String} code 编码code值
|
|
46090
|
-
* @author liufan
|
|
46091
|
-
* @date 2022年11月10日
|
|
46128
|
+
/**
|
|
46129
|
+
* getSysInfo
|
|
46130
|
+
* @desc:获取代码表
|
|
46131
|
+
* @param {String} code 编码code值
|
|
46132
|
+
* @author liufan
|
|
46133
|
+
* @date 2022年11月10日
|
|
46092
46134
|
**/
|
|
46093
46135
|
getSysInfo: function getSysInfo(code) {
|
|
46094
46136
|
var _this8 = this;
|
|
@@ -46110,11 +46152,11 @@ var flow_list_src_mainvue_type_script_lang_js_components;
|
|
|
46110
46152
|
}).catch(function (e) {});
|
|
46111
46153
|
},
|
|
46112
46154
|
|
|
46113
|
-
/**
|
|
46114
|
-
* getListInfo
|
|
46115
|
-
* @desc:获取预设列表数据
|
|
46116
|
-
* @author liufan
|
|
46117
|
-
* @date 2022年11月10日
|
|
46155
|
+
/**
|
|
46156
|
+
* getListInfo
|
|
46157
|
+
* @desc:获取预设列表数据
|
|
46158
|
+
* @author liufan
|
|
46159
|
+
* @date 2022年11月10日
|
|
46118
46160
|
**/
|
|
46119
46161
|
getListInfo: function getListInfo() {
|
|
46120
46162
|
var _this9 = this;
|
|
@@ -46445,8 +46487,8 @@ handle_user_src_main.install = function (Vue) {
|
|
|
46445
46487
|
};
|
|
46446
46488
|
|
|
46447
46489
|
/* harmony default export */ var handle_user = (handle_user_src_main);
|
|
46448
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=
|
|
46449
|
-
var
|
|
46490
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=781785ca&
|
|
46491
|
+
var mainvue_type_template_id_781785ca_render = function () {
|
|
46450
46492
|
var _vm = this
|
|
46451
46493
|
var _h = _vm.$createElement
|
|
46452
46494
|
var _c = _vm._self._c || _h
|
|
@@ -46495,7 +46537,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46495
46537
|
),
|
|
46496
46538
|
]
|
|
46497
46539
|
)
|
|
46498
|
-
: item.type === "
|
|
46540
|
+
: item.type === "dateTime"
|
|
46499
46541
|
? _c("div", { staticClass: "es-handler-date" }, [
|
|
46500
46542
|
_c("div", [
|
|
46501
46543
|
_vm._v(
|
|
@@ -46536,7 +46578,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46536
46578
|
placement: "bottom",
|
|
46537
46579
|
trigger: "hover",
|
|
46538
46580
|
"popper-class":
|
|
46539
|
-
_vm.
|
|
46581
|
+
_vm.systemData.length > 4
|
|
46540
46582
|
? "es-popper-sub-system is-width"
|
|
46541
46583
|
: "es-popper-sub-system",
|
|
46542
46584
|
},
|
|
@@ -46550,7 +46592,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46550
46592
|
},
|
|
46551
46593
|
},
|
|
46552
46594
|
[
|
|
46553
|
-
_vm.
|
|
46595
|
+
_vm.systemData.length
|
|
46554
46596
|
? _c(
|
|
46555
46597
|
"el-scrollbar",
|
|
46556
46598
|
{ attrs: { "max-height": _vm.maxHeight } },
|
|
@@ -46558,7 +46600,7 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46558
46600
|
_c(
|
|
46559
46601
|
"ul",
|
|
46560
46602
|
{ staticClass: "es-sub-system" },
|
|
46561
|
-
_vm._l(_vm.
|
|
46603
|
+
_vm._l(_vm.systemData, function (ele) {
|
|
46562
46604
|
return _c(
|
|
46563
46605
|
"li",
|
|
46564
46606
|
{
|
|
@@ -46649,9 +46691,9 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46649
46691
|
{
|
|
46650
46692
|
staticClass: "es-badge",
|
|
46651
46693
|
attrs: {
|
|
46652
|
-
value: _vm.
|
|
46694
|
+
value: _vm.noticeNum,
|
|
46653
46695
|
max: 99,
|
|
46654
|
-
hidden: _vm.
|
|
46696
|
+
hidden: _vm.noticeNum < 1,
|
|
46655
46697
|
},
|
|
46656
46698
|
},
|
|
46657
46699
|
[
|
|
@@ -46689,15 +46731,17 @@ var mainvue_type_template_id_5095bbf9_render = function () {
|
|
|
46689
46731
|
2
|
|
46690
46732
|
)
|
|
46691
46733
|
}
|
|
46692
|
-
var
|
|
46693
|
-
|
|
46734
|
+
var mainvue_type_template_id_781785ca_staticRenderFns = []
|
|
46735
|
+
mainvue_type_template_id_781785ca_render._withStripped = true
|
|
46694
46736
|
|
|
46695
46737
|
|
|
46696
|
-
// CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=
|
|
46738
|
+
// CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=781785ca&
|
|
46697
46739
|
|
|
46698
46740
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=script&lang=js&
|
|
46699
46741
|
var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
46700
46742
|
|
|
46743
|
+
var _props;
|
|
46744
|
+
|
|
46701
46745
|
//
|
|
46702
46746
|
//
|
|
46703
46747
|
//
|
|
@@ -46824,7 +46868,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46824
46868
|
default: ''
|
|
46825
46869
|
}
|
|
46826
46870
|
},
|
|
46827
|
-
props: {
|
|
46871
|
+
props: (_props = {
|
|
46828
46872
|
contact: Object,
|
|
46829
46873
|
jobScrollbar: Boolean,
|
|
46830
46874
|
data: Array,
|
|
@@ -46839,20 +46883,12 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46839
46883
|
return [];
|
|
46840
46884
|
}
|
|
46841
46885
|
},
|
|
46842
|
-
notice: {
|
|
46843
|
-
type: Number,
|
|
46844
|
-
default: 0
|
|
46845
|
-
},
|
|
46846
46886
|
hide: {
|
|
46847
46887
|
type: Object,
|
|
46848
46888
|
default: function _default() {
|
|
46849
|
-
return {
|
|
46889
|
+
return {};
|
|
46850
46890
|
}
|
|
46851
46891
|
},
|
|
46852
|
-
online: {
|
|
46853
|
-
type: [Number, Boolean],
|
|
46854
|
-
default: 1
|
|
46855
|
-
},
|
|
46856
46892
|
photo: String,
|
|
46857
46893
|
storage: String,
|
|
46858
46894
|
application: {
|
|
@@ -46862,8 +46898,128 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46862
46898
|
maxHeight: {
|
|
46863
46899
|
type: String,
|
|
46864
46900
|
default: '100%'
|
|
46901
|
+
},
|
|
46902
|
+
user: {
|
|
46903
|
+
type: Object,
|
|
46904
|
+
default: function _default() {
|
|
46905
|
+
return {
|
|
46906
|
+
type: 'user'
|
|
46907
|
+
};
|
|
46908
|
+
}
|
|
46909
|
+
},
|
|
46910
|
+
dateTime: {
|
|
46911
|
+
type: Object,
|
|
46912
|
+
default: function _default() {
|
|
46913
|
+
return {
|
|
46914
|
+
type: 'dateTime'
|
|
46915
|
+
};
|
|
46916
|
+
}
|
|
46917
|
+
},
|
|
46918
|
+
system: {
|
|
46919
|
+
type: Object,
|
|
46920
|
+
default: function _default() {
|
|
46921
|
+
return {
|
|
46922
|
+
type: 'system',
|
|
46923
|
+
icon: 'es-icon-yingyong',
|
|
46924
|
+
title: '切换子系统'
|
|
46925
|
+
};
|
|
46926
|
+
}
|
|
46927
|
+
},
|
|
46928
|
+
home: {
|
|
46929
|
+
type: Object,
|
|
46930
|
+
default: function _default() {
|
|
46931
|
+
return {
|
|
46932
|
+
type: 'home',
|
|
46933
|
+
icon: 'es-icon-zuomian',
|
|
46934
|
+
title: '个人工作台'
|
|
46935
|
+
};
|
|
46936
|
+
}
|
|
46937
|
+
},
|
|
46938
|
+
search: {
|
|
46939
|
+
type: Object,
|
|
46940
|
+
default: function _default() {
|
|
46941
|
+
return {
|
|
46942
|
+
type: 'search',
|
|
46943
|
+
icon: 'es-icon-magnifier',
|
|
46944
|
+
title: '搜索'
|
|
46945
|
+
};
|
|
46946
|
+
}
|
|
46947
|
+
},
|
|
46948
|
+
im: {
|
|
46949
|
+
type: Object,
|
|
46950
|
+
default: function _default() {
|
|
46951
|
+
return {
|
|
46952
|
+
type: 'im',
|
|
46953
|
+
icon: 'es-icon-liaotian',
|
|
46954
|
+
title: 'IM'
|
|
46955
|
+
};
|
|
46956
|
+
}
|
|
46957
|
+
},
|
|
46958
|
+
index: {
|
|
46959
|
+
type: Object,
|
|
46960
|
+
default: function _default() {
|
|
46961
|
+
return {
|
|
46962
|
+
type: 'index',
|
|
46963
|
+
icon: 'es-icon-home',
|
|
46964
|
+
title: '门户'
|
|
46965
|
+
};
|
|
46966
|
+
}
|
|
46865
46967
|
}
|
|
46866
|
-
},
|
|
46968
|
+
}, _props['home'] = {
|
|
46969
|
+
type: Object,
|
|
46970
|
+
default: function _default() {
|
|
46971
|
+
return {
|
|
46972
|
+
type: 'home',
|
|
46973
|
+
icon: 'es-icon-zuomian',
|
|
46974
|
+
title: '个人工作台'
|
|
46975
|
+
};
|
|
46976
|
+
}
|
|
46977
|
+
}, _props.notice = {
|
|
46978
|
+
type: Object,
|
|
46979
|
+
default: function _default() {
|
|
46980
|
+
return {
|
|
46981
|
+
type: 'notice',
|
|
46982
|
+
icon: 'es-icon-tongzhi',
|
|
46983
|
+
title: '通知消息'
|
|
46984
|
+
};
|
|
46985
|
+
}
|
|
46986
|
+
}, _props.refresh = {
|
|
46987
|
+
type: Object,
|
|
46988
|
+
default: function _default() {
|
|
46989
|
+
return {
|
|
46990
|
+
type: 'refresh',
|
|
46991
|
+
icon: 'es-icon-shuaxin',
|
|
46992
|
+
title: '刷新'
|
|
46993
|
+
};
|
|
46994
|
+
}
|
|
46995
|
+
}, _props.quit = {
|
|
46996
|
+
type: Object,
|
|
46997
|
+
default: function _default() {
|
|
46998
|
+
return {
|
|
46999
|
+
type: 'quit',
|
|
47000
|
+
icon: 'es-icon-guanji',
|
|
47001
|
+
title: '退出'
|
|
47002
|
+
};
|
|
47003
|
+
}
|
|
47004
|
+
}, _props.set = {
|
|
47005
|
+
type: Object,
|
|
47006
|
+
default: function _default() {
|
|
47007
|
+
return {
|
|
47008
|
+
type: 'set',
|
|
47009
|
+
icon: 'es-icon-xitongguanli',
|
|
47010
|
+
title: '设置'
|
|
47011
|
+
};
|
|
47012
|
+
}
|
|
47013
|
+
}, _props.msgNum = {
|
|
47014
|
+
type: Number,
|
|
47015
|
+
default: 0
|
|
47016
|
+
}, _props.noticeNum = {
|
|
47017
|
+
type: Number,
|
|
47018
|
+
default: 0
|
|
47019
|
+
}, _props.online = {
|
|
47020
|
+
type: Number,
|
|
47021
|
+
default: 1
|
|
47022
|
+
}, _props),
|
|
46867
47023
|
watch: {
|
|
46868
47024
|
subSystem: {
|
|
46869
47025
|
handler: function handler(val) {
|
|
@@ -46876,60 +47032,17 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46876
47032
|
},
|
|
46877
47033
|
computed: {
|
|
46878
47034
|
lists: function lists() {
|
|
46879
|
-
var
|
|
46880
|
-
|
|
46881
|
-
|
|
46882
|
-
|
|
46883
|
-
|
|
46884
|
-
|
|
46885
|
-
|
|
46886
|
-
|
|
46887
|
-
|
|
46888
|
-
icon: 'es-icon-yingyong',
|
|
46889
|
-
title: '切换子系统'
|
|
46890
|
-
}, {
|
|
46891
|
-
type: 'home',
|
|
46892
|
-
icon: 'es-icon-zuomian',
|
|
46893
|
-
title: '个人工作台'
|
|
46894
|
-
}, {
|
|
46895
|
-
type: 'index',
|
|
46896
|
-
icon: 'es-icon-home',
|
|
46897
|
-
title: '门户'
|
|
46898
|
-
}, {
|
|
46899
|
-
type: 'notice',
|
|
46900
|
-
icon: 'es-icon-tongzhi',
|
|
46901
|
-
title: '通知消息'
|
|
46902
|
-
}, {
|
|
46903
|
-
type: 'refresh',
|
|
46904
|
-
icon: 'es-icon-shuaxin',
|
|
46905
|
-
title: '刷新'
|
|
46906
|
-
}, {
|
|
46907
|
-
type: 'quit',
|
|
46908
|
-
icon: 'es-icon-guanji',
|
|
46909
|
-
title: '退出'
|
|
46910
|
-
}, {
|
|
46911
|
-
type: 'set',
|
|
46912
|
-
icon: 'es-icon-xitongguanli',
|
|
46913
|
-
title: '设置'
|
|
46914
|
-
}].filter(function (item) {
|
|
46915
|
-
return Object.keys(item).length;
|
|
46916
|
-
});
|
|
46917
|
-
if (Object.keys(this.hide).length) {
|
|
46918
|
-
list.forEach(function (item) {
|
|
46919
|
-
item.hide = _this.hide[item.type];
|
|
46920
|
-
});
|
|
46921
|
-
}
|
|
46922
|
-
return list;
|
|
46923
|
-
} else {
|
|
46924
|
-
if (Object.keys(this.hide).length) {
|
|
46925
|
-
this.data.forEach(function (item) {
|
|
46926
|
-
item.hide = _this.hide[item.type];
|
|
46927
|
-
});
|
|
46928
|
-
}
|
|
46929
|
-
}
|
|
46930
|
-
return this.data;
|
|
47035
|
+
var hide = handler_src_mainvue_type_script_lang_js_extends({
|
|
47036
|
+
system: true,
|
|
47037
|
+
new: true,
|
|
47038
|
+
im: true
|
|
47039
|
+
}, this.hide);
|
|
47040
|
+
var data = this.data ? this.data : [this.user, this.contact ? handler_src_mainvue_type_script_lang_js_extends({}, this.contact, { type: 'contact' }) : {}, this.dateTime, this.system, this.search, this.im, this.index, this.home, this.notice, this.refresh, this.quit, this.set];
|
|
47041
|
+
return data.filter(function (item) {
|
|
47042
|
+
return item && Object.keys(item).length && !item.hide && !hide[item.type];
|
|
47043
|
+
});
|
|
46931
47044
|
},
|
|
46932
|
-
|
|
47045
|
+
systemData: function systemData() {
|
|
46933
47046
|
return this.subSystem;
|
|
46934
47047
|
},
|
|
46935
47048
|
show: function show() {
|
|
@@ -46994,7 +47107,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
46994
47107
|
}
|
|
46995
47108
|
},
|
|
46996
47109
|
handleQuit: function handleQuit() {
|
|
46997
|
-
var
|
|
47110
|
+
var _this = this;
|
|
46998
47111
|
|
|
46999
47112
|
this.$confirm('确定退出吗?', '退出系统', {
|
|
47000
47113
|
confirmButtonText: '确定',
|
|
@@ -47004,8 +47117,8 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47004
47117
|
utils_util["a" /* default */].ajax({ method: 'post', url: api["gb" /* logout */] }).then(function (res) {
|
|
47005
47118
|
if (res.rCode == 0) {
|
|
47006
47119
|
utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
|
|
47007
|
-
if (
|
|
47008
|
-
|
|
47120
|
+
if (_this.onQuit && typeof _this.onQuit === 'function') {
|
|
47121
|
+
_this.onQuit();
|
|
47009
47122
|
} else {
|
|
47010
47123
|
try {
|
|
47011
47124
|
var loginPage = utils_util["a" /* default */].getStorage('login') || utils_util["a" /* default */].getStorage('loginPage');
|
|
@@ -47043,7 +47156,7 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47043
47156
|
}
|
|
47044
47157
|
}).catch(function (err) {
|
|
47045
47158
|
if (err.message && err.message !== 'canceled') {
|
|
47046
|
-
|
|
47159
|
+
_this.$message.error(err.message);
|
|
47047
47160
|
}
|
|
47048
47161
|
});
|
|
47049
47162
|
}).catch(function (e) {});
|
|
@@ -47065,8 +47178,8 @@ var handler_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
47065
47178
|
|
|
47066
47179
|
var handler_src_main_component = normalizeComponent(
|
|
47067
47180
|
packages_handler_src_mainvue_type_script_lang_js_,
|
|
47068
|
-
|
|
47069
|
-
|
|
47181
|
+
mainvue_type_template_id_781785ca_render,
|
|
47182
|
+
mainvue_type_template_id_781785ca_staticRenderFns,
|
|
47070
47183
|
false,
|
|
47071
47184
|
null,
|
|
47072
47185
|
null,
|
|
@@ -48620,8 +48733,8 @@ layout_src_main.install = function (Vue) {
|
|
|
48620
48733
|
};
|
|
48621
48734
|
|
|
48622
48735
|
/* harmony default export */ var packages_layout = (layout_src_main);
|
|
48623
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=
|
|
48624
|
-
var
|
|
48736
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=68362bbf&
|
|
48737
|
+
var mainvue_type_template_id_68362bbf_render = function () {
|
|
48625
48738
|
var _vm = this
|
|
48626
48739
|
var _h = _vm.$createElement
|
|
48627
48740
|
var _c = _vm._self._c || _h
|
|
@@ -48717,7 +48830,8 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48717
48830
|
},
|
|
48718
48831
|
},
|
|
48719
48832
|
[
|
|
48720
|
-
this.mode == "complex"
|
|
48833
|
+
this.mode == "complex" &&
|
|
48834
|
+
_vm.loginModel.indexOf("3") > -1
|
|
48721
48835
|
? [
|
|
48722
48836
|
_vm._l(_vm.switchs, function (item) {
|
|
48723
48837
|
return [
|
|
@@ -48729,9 +48843,10 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48729
48843
|
{
|
|
48730
48844
|
name: "show",
|
|
48731
48845
|
rawName: "v-show",
|
|
48732
|
-
value:
|
|
48846
|
+
value:
|
|
48847
|
+
_vm.switchActive != item.type,
|
|
48733
48848
|
expression:
|
|
48734
|
-
"
|
|
48849
|
+
"switchActive != item.type",
|
|
48735
48850
|
},
|
|
48736
48851
|
],
|
|
48737
48852
|
key: item.type + "_0",
|
|
@@ -48785,42 +48900,76 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
48785
48900
|
]
|
|
48786
48901
|
}),
|
|
48787
48902
|
]
|
|
48788
|
-
:
|
|
48789
|
-
|
|
48790
|
-
|
|
48791
|
-
|
|
48792
|
-
|
|
48903
|
+
: [
|
|
48904
|
+
_vm._l(_vm.icons, function (item) {
|
|
48905
|
+
return [
|
|
48906
|
+
_c(
|
|
48907
|
+
"div",
|
|
48793
48908
|
{
|
|
48794
|
-
|
|
48795
|
-
|
|
48796
|
-
|
|
48797
|
-
|
|
48798
|
-
|
|
48799
|
-
|
|
48800
|
-
|
|
48909
|
+
directives: [
|
|
48910
|
+
{
|
|
48911
|
+
name: "show",
|
|
48912
|
+
rawName: "v-show",
|
|
48913
|
+
value:
|
|
48914
|
+
_vm.modelLength == 2 &&
|
|
48915
|
+
_vm.active != item.type &&
|
|
48916
|
+
_vm.modelTips,
|
|
48917
|
+
expression:
|
|
48918
|
+
"modelLength == 2 && active != item.type && modelTips",
|
|
48919
|
+
},
|
|
48920
|
+
],
|
|
48921
|
+
key: item.type,
|
|
48922
|
+
staticClass: "es-login-model-item-tips",
|
|
48801
48923
|
},
|
|
48802
|
-
|
|
48803
|
-
|
|
48804
|
-
|
|
48805
|
-
|
|
48924
|
+
[
|
|
48925
|
+
_vm._v(
|
|
48926
|
+
"\n " +
|
|
48927
|
+
_vm._s(item.name) +
|
|
48928
|
+
"点这里"
|
|
48929
|
+
),
|
|
48930
|
+
_c("i", {
|
|
48931
|
+
staticClass: "es-icon-zhixiangyou",
|
|
48932
|
+
}),
|
|
48933
|
+
]
|
|
48934
|
+
),
|
|
48935
|
+
_c(
|
|
48936
|
+
"span",
|
|
48806
48937
|
{
|
|
48807
|
-
|
|
48808
|
-
|
|
48809
|
-
|
|
48810
|
-
|
|
48811
|
-
|
|
48812
|
-
|
|
48813
|
-
|
|
48814
|
-
|
|
48815
|
-
|
|
48816
|
-
|
|
48817
|
-
|
|
48938
|
+
directives: [
|
|
48939
|
+
{
|
|
48940
|
+
name: "show",
|
|
48941
|
+
rawName: "v-show",
|
|
48942
|
+
value:
|
|
48943
|
+
_vm.modelLength > 2 ||
|
|
48944
|
+
_vm.active != item.type,
|
|
48945
|
+
expression:
|
|
48946
|
+
"modelLength > 2 || active != item.type",
|
|
48947
|
+
},
|
|
48948
|
+
],
|
|
48949
|
+
key: item.name,
|
|
48950
|
+
staticClass: "es-icon-box",
|
|
48951
|
+
class: [
|
|
48952
|
+
{
|
|
48953
|
+
"es-icon-active":
|
|
48954
|
+
_vm.active == item.type,
|
|
48955
|
+
},
|
|
48956
|
+
],
|
|
48957
|
+
attrs: { title: item.name },
|
|
48958
|
+
on: {
|
|
48959
|
+
click: function ($event) {
|
|
48960
|
+
_vm.switchLogin(item)
|
|
48961
|
+
},
|
|
48962
|
+
},
|
|
48818
48963
|
},
|
|
48819
|
-
|
|
48820
|
-
|
|
48821
|
-
|
|
48822
|
-
|
|
48823
|
-
|
|
48964
|
+
[
|
|
48965
|
+
_c("i", {
|
|
48966
|
+
class: [item.icon, "es-icon"],
|
|
48967
|
+
}),
|
|
48968
|
+
]
|
|
48969
|
+
),
|
|
48970
|
+
]
|
|
48971
|
+
}),
|
|
48972
|
+
],
|
|
48824
48973
|
],
|
|
48825
48974
|
2
|
|
48826
48975
|
)
|
|
@@ -49341,7 +49490,9 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
49341
49490
|
]
|
|
49342
49491
|
)
|
|
49343
49492
|
: _vm._e(),
|
|
49344
|
-
_vm.active == 3 &&
|
|
49493
|
+
_vm.active == 3 &&
|
|
49494
|
+
_vm.loginModel.indexOf("0") > -1 &&
|
|
49495
|
+
_vm.mode == "complex"
|
|
49345
49496
|
? _c("div", { staticClass: "es-to-login" }, [
|
|
49346
49497
|
_c(
|
|
49347
49498
|
"span",
|
|
@@ -49754,7 +49905,7 @@ var mainvue_type_template_id_462127d5_render = function () {
|
|
|
49754
49905
|
)
|
|
49755
49906
|
: _vm._e()
|
|
49756
49907
|
}
|
|
49757
|
-
var
|
|
49908
|
+
var mainvue_type_template_id_68362bbf_staticRenderFns = [
|
|
49758
49909
|
function () {
|
|
49759
49910
|
var _vm = this
|
|
49760
49911
|
var _h = _vm.$createElement
|
|
@@ -49769,10 +49920,10 @@ var mainvue_type_template_id_462127d5_staticRenderFns = [
|
|
|
49769
49920
|
])
|
|
49770
49921
|
},
|
|
49771
49922
|
]
|
|
49772
|
-
|
|
49923
|
+
mainvue_type_template_id_68362bbf_render._withStripped = true
|
|
49773
49924
|
|
|
49774
49925
|
|
|
49775
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
49926
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=68362bbf&
|
|
49776
49927
|
|
|
49777
49928
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=45dccfdc&
|
|
49778
49929
|
var resetPasswordvue_type_template_id_45dccfdc_render = function () {
|
|
@@ -50796,6 +50947,23 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
|
|
|
50796
50947
|
//
|
|
50797
50948
|
//
|
|
50798
50949
|
//
|
|
50950
|
+
//
|
|
50951
|
+
//
|
|
50952
|
+
//
|
|
50953
|
+
//
|
|
50954
|
+
//
|
|
50955
|
+
//
|
|
50956
|
+
//
|
|
50957
|
+
//
|
|
50958
|
+
//
|
|
50959
|
+
//
|
|
50960
|
+
//
|
|
50961
|
+
//
|
|
50962
|
+
//
|
|
50963
|
+
//
|
|
50964
|
+
//
|
|
50965
|
+
//
|
|
50966
|
+
//
|
|
50799
50967
|
|
|
50800
50968
|
|
|
50801
50969
|
|
|
@@ -50863,6 +51031,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
50863
51031
|
type: Boolean,
|
|
50864
51032
|
default: true
|
|
50865
51033
|
},
|
|
51034
|
+
modelTips: Boolean,
|
|
50866
51035
|
model: {
|
|
50867
51036
|
type: Object,
|
|
50868
51037
|
default: function _default() {
|
|
@@ -51109,10 +51278,14 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51109
51278
|
0: { type: '0', icon: 'es-icon-zhanghaodenglu', name: '账号登录' },
|
|
51110
51279
|
1: { type: '1', icon: 'es-icon-ca', name: '证书登录' },
|
|
51111
51280
|
3: { type: '3', icon: 'es-icon-saomadenglu', name: '扫码登录' },
|
|
51112
|
-
6: { type: '6', icon: 'es-icon-
|
|
51281
|
+
6: { type: '6', icon: 'es-icon-duanxindenglu', name: '短信登录' },
|
|
51113
51282
|
7: { type: '7', icon: 'es-icon-dingding', name: '钉钉扫码登录' },
|
|
51114
51283
|
9: { type: '9', icon: 'es-icon-weixin', name: '微信扫码登录' },
|
|
51115
|
-
11: {
|
|
51284
|
+
11: {
|
|
51285
|
+
type: '11',
|
|
51286
|
+
icon: 'es-icon-youxiangdenglu',
|
|
51287
|
+
name: '邮箱登录'
|
|
51288
|
+
},
|
|
51116
51289
|
12: { type: '12', icon: 'es-icon-zhanghaodenglu', name: '账号登录' //双因素
|
|
51117
51290
|
} };
|
|
51118
51291
|
},
|
|
@@ -51147,8 +51320,16 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51147
51320
|
loginModel: {
|
|
51148
51321
|
immediate: true,
|
|
51149
51322
|
handler: function handler(val) {
|
|
51323
|
+
var _this2 = this;
|
|
51324
|
+
|
|
51150
51325
|
this.active = val.split(',')[0];
|
|
51151
51326
|
this.title = this.iconfonts[this.active].name;
|
|
51327
|
+
this.switchs.forEach(function (item) {
|
|
51328
|
+
if (item.type == _this2.active) {
|
|
51329
|
+
_this2.switchActive = item.type;
|
|
51330
|
+
return;
|
|
51331
|
+
}
|
|
51332
|
+
});
|
|
51152
51333
|
}
|
|
51153
51334
|
},
|
|
51154
51335
|
active: {
|
|
@@ -51314,7 +51495,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51314
51495
|
loginBoxAlign && (this.align = loginBoxAlign);
|
|
51315
51496
|
},
|
|
51316
51497
|
doWechatLogin: function doWechatLogin(code) {
|
|
51317
|
-
var
|
|
51498
|
+
var _this3 = this;
|
|
51318
51499
|
|
|
51319
51500
|
utils_util["a" /* default */].ajax({
|
|
51320
51501
|
method: 'post',
|
|
@@ -51323,10 +51504,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51323
51504
|
}).then(function (res) {
|
|
51324
51505
|
if (res.rCode == 0) {
|
|
51325
51506
|
var results = res.results;
|
|
51326
|
-
|
|
51507
|
+
_this3.handleResults(results);
|
|
51327
51508
|
} else {
|
|
51328
51509
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51329
|
-
|
|
51510
|
+
_this3.$message({
|
|
51330
51511
|
message: msg || '系统错误,请联系管理员!',
|
|
51331
51512
|
type: 'error',
|
|
51332
51513
|
duration: 1500,
|
|
@@ -51340,7 +51521,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51340
51521
|
}
|
|
51341
51522
|
}).catch(function (err) {
|
|
51342
51523
|
if (err.message && err.message !== 'canceled') {
|
|
51343
|
-
|
|
51524
|
+
_this3.$message.error(err.message);
|
|
51344
51525
|
}
|
|
51345
51526
|
});
|
|
51346
51527
|
},
|
|
@@ -51469,7 +51650,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51469
51650
|
}
|
|
51470
51651
|
},
|
|
51471
51652
|
switchLogin: function switchLogin(res) {
|
|
51472
|
-
var
|
|
51653
|
+
var _this4 = this;
|
|
51473
51654
|
|
|
51474
51655
|
if (res != 1) {
|
|
51475
51656
|
this.active = res.type;
|
|
@@ -51479,18 +51660,33 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51479
51660
|
this.countdown = 0;
|
|
51480
51661
|
this.$emit('change-type', res, this.identifyingId);
|
|
51481
51662
|
this.$nextTick(function () {
|
|
51482
|
-
var ref = 'login' +
|
|
51483
|
-
|
|
51663
|
+
var ref = 'login' + _this4.active;
|
|
51664
|
+
_this4.$refs[ref] && _this4.$refs[ref].clearValidate();
|
|
51484
51665
|
});
|
|
51485
51666
|
},
|
|
51486
51667
|
switchLoginType: function switchLoginType(res) {
|
|
51487
|
-
var
|
|
51668
|
+
var _this5 = this;
|
|
51488
51669
|
|
|
51489
51670
|
this.countdown = 0;
|
|
51490
51671
|
if (res) {
|
|
51491
|
-
this.active = res.type;
|
|
51492
|
-
this.title = res.name || '';
|
|
51493
51672
|
this.switchActive = res.type;
|
|
51673
|
+
this.title = res.name || '';
|
|
51674
|
+
if (this.loginModel.indexOf(res.type) > -1) {
|
|
51675
|
+
this.active = res.type;
|
|
51676
|
+
} else {
|
|
51677
|
+
var other = this.switchs.filter(function (item) {
|
|
51678
|
+
return item.type != res.type;
|
|
51679
|
+
})[0];
|
|
51680
|
+
var model = this.loginModel.split(',').filter(function (item) {
|
|
51681
|
+
return item != res.type && item != other.type;
|
|
51682
|
+
})[0];
|
|
51683
|
+
if (model) {
|
|
51684
|
+
this.active = model;
|
|
51685
|
+
this.title = this.iconfonts[model].name;
|
|
51686
|
+
} else {
|
|
51687
|
+
console.error('complex风格的登录方式,loginModel配置错误!');
|
|
51688
|
+
}
|
|
51689
|
+
}
|
|
51494
51690
|
} else {
|
|
51495
51691
|
this.active = this.switchs[0].type;
|
|
51496
51692
|
this.title = '';
|
|
@@ -51498,15 +51694,15 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51498
51694
|
}
|
|
51499
51695
|
this.$emit('change-type', res, this.identifyingId);
|
|
51500
51696
|
this.$nextTick(function () {
|
|
51501
|
-
var ref = 'login' +
|
|
51502
|
-
|
|
51697
|
+
var ref = 'login' + _this5.active;
|
|
51698
|
+
_this5.$refs[ref] && _this5.$refs[ref].clearValidate();
|
|
51503
51699
|
});
|
|
51504
51700
|
},
|
|
51505
51701
|
isShow: function isShow(res) {
|
|
51506
51702
|
return this.loginModel.indexOf(res) > -1;
|
|
51507
51703
|
},
|
|
51508
51704
|
getLogin: function getLogin() {
|
|
51509
|
-
var
|
|
51705
|
+
var _this6 = this;
|
|
51510
51706
|
|
|
51511
51707
|
return login_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee() {
|
|
51512
51708
|
var config;
|
|
@@ -51517,10 +51713,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51517
51713
|
config = utils_util["a" /* default */].getStorage('initLogin');
|
|
51518
51714
|
|
|
51519
51715
|
if (config) {
|
|
51520
|
-
|
|
51716
|
+
_this6.setConfig(JSON.parse(config));
|
|
51521
51717
|
}
|
|
51522
51718
|
_context.next = 4;
|
|
51523
|
-
return utils_util["a" /* default */].ajax({ url:
|
|
51719
|
+
return utils_util["a" /* default */].ajax({ url: _this6.initLogin }).then(function (res) {
|
|
51524
51720
|
if (res && res.rCode === 0) {
|
|
51525
51721
|
utils_store.set('initLogin', res.results);
|
|
51526
51722
|
utils_util["a" /* default */].setStorage({
|
|
@@ -51528,10 +51724,10 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51528
51724
|
key: 'initLogin',
|
|
51529
51725
|
value: JSON.stringify(res.results)
|
|
51530
51726
|
});
|
|
51531
|
-
|
|
51532
|
-
|
|
51727
|
+
_this6.$emit('initLogin', res.results);
|
|
51728
|
+
_this6.setConfig(res.results);
|
|
51533
51729
|
} else {
|
|
51534
|
-
|
|
51730
|
+
_this6.$message({
|
|
51535
51731
|
message: res.msg || '系统错误,请联系管理员!',
|
|
51536
51732
|
type: 'error',
|
|
51537
51733
|
duration: 2000
|
|
@@ -51539,7 +51735,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51539
51735
|
}
|
|
51540
51736
|
}).catch(function (err) {
|
|
51541
51737
|
if (err.message && err.message !== 'canceled') {
|
|
51542
|
-
|
|
51738
|
+
_this6.$message.error(err.message);
|
|
51543
51739
|
}
|
|
51544
51740
|
});
|
|
51545
51741
|
|
|
@@ -51548,7 +51744,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51548
51744
|
return _context.stop();
|
|
51549
51745
|
}
|
|
51550
51746
|
}
|
|
51551
|
-
}, _callee,
|
|
51747
|
+
}, _callee, _this6);
|
|
51552
51748
|
}))();
|
|
51553
51749
|
},
|
|
51554
51750
|
setConfig: function setConfig(res) {
|
|
@@ -51683,7 +51879,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51683
51879
|
return this.imageCode;
|
|
51684
51880
|
},
|
|
51685
51881
|
getCode: function getCode() {
|
|
51686
|
-
var
|
|
51882
|
+
var _this7 = this;
|
|
51687
51883
|
|
|
51688
51884
|
if (this.countdown) {
|
|
51689
51885
|
return false;
|
|
@@ -51725,14 +51921,14 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51725
51921
|
}
|
|
51726
51922
|
this.countdown = 60;
|
|
51727
51923
|
this.timer = setInterval(function () {
|
|
51728
|
-
if (
|
|
51729
|
-
|
|
51730
|
-
|
|
51731
|
-
|
|
51924
|
+
if (_this7.countdown > 0) {
|
|
51925
|
+
_this7.countdown--;
|
|
51926
|
+
_this7.disabled = true;
|
|
51927
|
+
_this7.btnText = '重新获取' + _this7.countdown + 's';
|
|
51732
51928
|
} else {
|
|
51733
|
-
|
|
51734
|
-
|
|
51735
|
-
|
|
51929
|
+
_this7.btnText = '重新获取';
|
|
51930
|
+
_this7.disabled = false;
|
|
51931
|
+
_this7.submit = false;
|
|
51736
51932
|
}
|
|
51737
51933
|
}, 1000);
|
|
51738
51934
|
utils_util["a" /* default */].ajax({
|
|
@@ -51740,26 +51936,26 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51740
51936
|
url: this.active == 12 ? this.getTwoFactorLoginCode : this.getLoginCode,
|
|
51741
51937
|
data: data
|
|
51742
51938
|
}).then(function (res) {
|
|
51743
|
-
|
|
51939
|
+
_this7.$message({
|
|
51744
51940
|
message: res.msg,
|
|
51745
51941
|
duration: 2000,
|
|
51746
51942
|
type: res.rCode == 0 ? 'success' : 'error'
|
|
51747
51943
|
});
|
|
51748
51944
|
|
|
51749
51945
|
if (res.rCode === 2) {
|
|
51750
|
-
|
|
51751
|
-
|
|
51752
|
-
|
|
51753
|
-
clearInterval(
|
|
51946
|
+
_this7.btnText = '获取验证码';
|
|
51947
|
+
_this7.disabled = false;
|
|
51948
|
+
_this7.countdown = 0;
|
|
51949
|
+
clearInterval(_this7.timer);
|
|
51754
51950
|
}
|
|
51755
51951
|
}).catch(function (err) {
|
|
51756
51952
|
if (err.message && err.message !== 'canceled') {
|
|
51757
|
-
|
|
51953
|
+
_this7.$message.error(err.message);
|
|
51758
51954
|
}
|
|
51759
51955
|
});
|
|
51760
51956
|
},
|
|
51761
51957
|
handleLogin: function handleLogin() {
|
|
51762
|
-
var
|
|
51958
|
+
var _this8 = this;
|
|
51763
51959
|
|
|
51764
51960
|
if (this.submit) {
|
|
51765
51961
|
return false;
|
|
@@ -51767,40 +51963,40 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51767
51963
|
var ref = 'login' + this.active;
|
|
51768
51964
|
this.$refs[ref].validate(function (valid) {
|
|
51769
51965
|
if (valid) {
|
|
51770
|
-
|
|
51966
|
+
_this8.submit = true;
|
|
51771
51967
|
var param = utils_util["a" /* default */].getParams() || {};
|
|
51772
|
-
var data =
|
|
51773
|
-
username:
|
|
51774
|
-
password:
|
|
51775
|
-
data:
|
|
51776
|
-
key:
|
|
51777
|
-
}) :
|
|
51778
|
-
identifyingCode:
|
|
51779
|
-
identifyingId:
|
|
51780
|
-
} :
|
|
51781
|
-
username:
|
|
51782
|
-
password:
|
|
51783
|
-
data:
|
|
51784
|
-
key:
|
|
51785
|
-
}) :
|
|
51786
|
-
targetType:
|
|
51787
|
-
verificationCode:
|
|
51968
|
+
var data = _this8.active == '0' ? {
|
|
51969
|
+
username: _this8.formData.username,
|
|
51970
|
+
password: _this8.secret && _this8.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
|
|
51971
|
+
data: _this8.formData.password,
|
|
51972
|
+
key: _this8.secret
|
|
51973
|
+
}) : _this8.formData.password,
|
|
51974
|
+
identifyingCode: _this8.formData.identifyingCode,
|
|
51975
|
+
identifyingId: _this8.identifyingId
|
|
51976
|
+
} : _this8.active == '12' ? {
|
|
51977
|
+
username: _this8.formData.username,
|
|
51978
|
+
password: _this8.secret && _this8.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
|
|
51979
|
+
data: _this8.formData.password,
|
|
51980
|
+
key: _this8.secret
|
|
51981
|
+
}) : _this8.formData.password,
|
|
51982
|
+
targetType: _this8.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS',
|
|
51983
|
+
verificationCode: _this8.formData.identifyingCode
|
|
51788
51984
|
} : {
|
|
51789
|
-
target:
|
|
51790
|
-
verificationCode:
|
|
51791
|
-
targetType:
|
|
51985
|
+
target: _this8.formData.target,
|
|
51986
|
+
verificationCode: _this8.formData.verificationCode,
|
|
51987
|
+
targetType: _this8.active == '6' ? 'SMS' : 'EMAIL'
|
|
51792
51988
|
};
|
|
51793
|
-
if (
|
|
51794
|
-
if (
|
|
51795
|
-
|
|
51989
|
+
if (_this8.onLogin) {
|
|
51990
|
+
if (_this8.active == '0') {
|
|
51991
|
+
_this8.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data), _this8.getImgCode, _this8.handleRemember);
|
|
51796
51992
|
} else {
|
|
51797
|
-
|
|
51993
|
+
_this8.onLogin(login_src_mainvue_type_script_lang_js_extends({}, param, data));
|
|
51798
51994
|
}
|
|
51799
51995
|
} else {
|
|
51800
|
-
|
|
51996
|
+
_this8.handleUserLogin(login_src_mainvue_type_script_lang_js_extends({}, param, _this8.param, data));
|
|
51801
51997
|
}
|
|
51802
51998
|
} else {
|
|
51803
|
-
|
|
51999
|
+
_this8.submit = false;
|
|
51804
52000
|
return false;
|
|
51805
52001
|
}
|
|
51806
52002
|
});
|
|
@@ -51816,7 +52012,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51816
52012
|
}
|
|
51817
52013
|
},
|
|
51818
52014
|
handleUserLogin: function handleUserLogin(data) {
|
|
51819
|
-
var
|
|
52015
|
+
var _this9 = this;
|
|
51820
52016
|
|
|
51821
52017
|
var extUserBindHandleId = sessionStorage.getItem('extUserBindHandleId');
|
|
51822
52018
|
utils_util["a" /* default */].ajax({
|
|
@@ -51824,68 +52020,68 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51824
52020
|
url: this.active == '0' ? this.actionUrl : this.active == '12' ? this.doTwoFactorLogin : this.doCodeLogin,
|
|
51825
52021
|
data: extUserBindHandleId ? login_src_mainvue_type_script_lang_js_extends({}, data, { extUserBindHandleId: extUserBindHandleId }) : data
|
|
51826
52022
|
}).then(function (res) {
|
|
51827
|
-
|
|
52023
|
+
_this9.submit = false;
|
|
51828
52024
|
if (res.rCode == 0) {
|
|
51829
52025
|
utils_util["a" /* default */].removeStorage('extUserBindHandleId');
|
|
51830
|
-
|
|
52026
|
+
_this9.handleRemember();
|
|
51831
52027
|
var results = res.results;
|
|
51832
|
-
|
|
51833
|
-
if (
|
|
51834
|
-
|
|
52028
|
+
_this9.handleResults(results);
|
|
52029
|
+
if (_this9.onSuccess) {
|
|
52030
|
+
_this9.onSuccess(res);
|
|
51835
52031
|
}
|
|
51836
52032
|
} else {
|
|
51837
52033
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51838
|
-
|
|
52034
|
+
_this9.$message({
|
|
51839
52035
|
message: msg || '系统错误,请联系管理员!',
|
|
51840
52036
|
type: 'error',
|
|
51841
52037
|
duration: 1500,
|
|
51842
52038
|
onClose: function onClose() {
|
|
51843
|
-
|
|
51844
|
-
|
|
51845
|
-
|
|
51846
|
-
clearInterval(
|
|
51847
|
-
|
|
52039
|
+
_this9.btnText = '获取验证码';
|
|
52040
|
+
_this9.disabled = false;
|
|
52041
|
+
_this9.countdown = 0;
|
|
52042
|
+
clearInterval(_this9.timer);
|
|
52043
|
+
_this9.getImgCode();
|
|
51848
52044
|
}
|
|
51849
52045
|
});
|
|
51850
|
-
|
|
52046
|
+
_this9.onError(res);
|
|
51851
52047
|
}
|
|
51852
52048
|
}).catch(function (err) {
|
|
51853
|
-
|
|
52049
|
+
_this9.submit = false;
|
|
51854
52050
|
if (err.message && err.message !== 'canceled') {
|
|
51855
|
-
|
|
52051
|
+
_this9.$message.error(err.message);
|
|
51856
52052
|
}
|
|
51857
52053
|
});
|
|
51858
52054
|
},
|
|
51859
52055
|
caLogin: function caLogin(signedData) {
|
|
51860
|
-
var
|
|
52056
|
+
var _this10 = this;
|
|
51861
52057
|
|
|
51862
52058
|
utils_util["a" /* default */].ajax({
|
|
51863
52059
|
method: 'post',
|
|
51864
52060
|
url: this.caAction,
|
|
51865
52061
|
data: { identifyingId: this.identifyingId, signedData: signedData }
|
|
51866
52062
|
}).then(function (res) {
|
|
51867
|
-
|
|
52063
|
+
_this10.submit = false;
|
|
51868
52064
|
if (res.rCode == 0) {
|
|
51869
52065
|
var results = res.results;
|
|
51870
|
-
|
|
51871
|
-
if (
|
|
51872
|
-
|
|
52066
|
+
_this10.handleResults(results);
|
|
52067
|
+
if (_this10.onSuccess) {
|
|
52068
|
+
_this10.onSuccess(res);
|
|
51873
52069
|
}
|
|
51874
52070
|
} else {
|
|
51875
52071
|
var msg = res.results && res.results.msg ? res.results.msg : res.msg;
|
|
51876
|
-
|
|
52072
|
+
_this10.$message({
|
|
51877
52073
|
message: msg || '系统错误,请联系管理员!',
|
|
51878
52074
|
type: 'error',
|
|
51879
52075
|
duration: 1500,
|
|
51880
52076
|
onClose: function onClose() {
|
|
51881
|
-
|
|
52077
|
+
_this10.getImgCode();
|
|
51882
52078
|
}
|
|
51883
52079
|
});
|
|
51884
|
-
|
|
52080
|
+
_this10.onError(res);
|
|
51885
52081
|
}
|
|
51886
52082
|
}).catch(function (err) {
|
|
51887
52083
|
if (err.message && err.message !== 'canceled') {
|
|
51888
|
-
|
|
52084
|
+
_this10.$message.error(err.message);
|
|
51889
52085
|
}
|
|
51890
52086
|
});
|
|
51891
52087
|
},
|
|
@@ -51902,17 +52098,17 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51902
52098
|
|
|
51903
52099
|
//获取app登录信息
|
|
51904
52100
|
loginInfo: function loginInfo(res) {
|
|
51905
|
-
var
|
|
52101
|
+
var _this11 = this;
|
|
51906
52102
|
|
|
51907
52103
|
clearTimeout(this.interval);
|
|
51908
52104
|
if (res) {
|
|
51909
52105
|
this.interval = setTimeout(function () {
|
|
51910
|
-
|
|
52106
|
+
_this11.initRequestLoginInfo();
|
|
51911
52107
|
}, this.scanIntervalTime);
|
|
51912
52108
|
}
|
|
51913
52109
|
},
|
|
51914
52110
|
initRequestLoginInfo: function initRequestLoginInfo() {
|
|
51915
|
-
var
|
|
52111
|
+
var _this12 = this;
|
|
51916
52112
|
|
|
51917
52113
|
if (this.identifyingId == '') {
|
|
51918
52114
|
return false;
|
|
@@ -51927,21 +52123,21 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51927
52123
|
if (res.rCode === 0) {
|
|
51928
52124
|
var results = res.results;
|
|
51929
52125
|
if (results.statusCode === 0) {
|
|
51930
|
-
clearTimeout(
|
|
51931
|
-
|
|
52126
|
+
clearTimeout(_this12.interval);
|
|
52127
|
+
_this12.handleResults(results, 3);
|
|
51932
52128
|
} else {
|
|
51933
|
-
|
|
52129
|
+
_this12.loginInfo(true);
|
|
51934
52130
|
}
|
|
51935
52131
|
}
|
|
51936
52132
|
}).catch(function (err) {
|
|
51937
|
-
clearTimeout(
|
|
52133
|
+
clearTimeout(_this12.interval);
|
|
51938
52134
|
if (err.message && err.message !== 'canceled') {
|
|
51939
|
-
|
|
52135
|
+
_this12.$message.error(err.message);
|
|
51940
52136
|
}
|
|
51941
52137
|
});
|
|
51942
52138
|
},
|
|
51943
52139
|
handleResults: function handleResults(results, type) {
|
|
51944
|
-
var
|
|
52140
|
+
var _this13 = this;
|
|
51945
52141
|
|
|
51946
52142
|
switch (results.statusCode) {
|
|
51947
52143
|
case 0:
|
|
@@ -51966,9 +52162,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51966
52162
|
});
|
|
51967
52163
|
this.showLaunch = true;
|
|
51968
52164
|
setTimeout(function () {
|
|
51969
|
-
if (
|
|
51970
|
-
window.location.href =
|
|
51971
|
-
} else if (results.doorIndex &&
|
|
52165
|
+
if (_this13.toUrl) {
|
|
52166
|
+
window.location.href = _this13.toUrl;
|
|
52167
|
+
} else if (results.doorIndex && _this13.doorIndex) {
|
|
51972
52168
|
sessionStorage.setItem('doorIndex', results.doorIndex);
|
|
51973
52169
|
localStorage.setItem('isLogined', true);
|
|
51974
52170
|
window.location.href = results.doorIndex;
|
|
@@ -51976,9 +52172,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51976
52172
|
if (window.location.href.indexOf('login.html') > -1) {
|
|
51977
52173
|
window.location.href = './main.html';
|
|
51978
52174
|
} else {
|
|
51979
|
-
|
|
51980
|
-
|
|
51981
|
-
|
|
52175
|
+
_this13.$router.push({ name: 'main' });
|
|
52176
|
+
_this13.$nextTick(function () {
|
|
52177
|
+
_this13.showLaunch = false;
|
|
51982
52178
|
});
|
|
51983
52179
|
}
|
|
51984
52180
|
}
|
|
@@ -51989,9 +52185,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51989
52185
|
type: 'success',
|
|
51990
52186
|
duration: 1500,
|
|
51991
52187
|
onClose: function onClose() {
|
|
51992
|
-
if (
|
|
51993
|
-
window.location.href =
|
|
51994
|
-
} else if (results.doorIndex &&
|
|
52188
|
+
if (_this13.toUrl) {
|
|
52189
|
+
window.location.href = _this13.toUrl;
|
|
52190
|
+
} else if (results.doorIndex && _this13.doorIndex) {
|
|
51995
52191
|
sessionStorage.setItem('doorIndex', results.doorIndex);
|
|
51996
52192
|
localStorage.setItem('isLogined', true);
|
|
51997
52193
|
window.location.href = results.doorIndex;
|
|
@@ -51999,7 +52195,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
51999
52195
|
if (window.location.href.indexOf('login.html') > -1) {
|
|
52000
52196
|
window.location.href = './main.html';
|
|
52001
52197
|
} else {
|
|
52002
|
-
|
|
52198
|
+
_this13.$router.push({ name: 'main' });
|
|
52003
52199
|
}
|
|
52004
52200
|
}
|
|
52005
52201
|
}
|
|
@@ -52012,11 +52208,11 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52012
52208
|
//cancelButtonText: '取消',
|
|
52013
52209
|
type: 'warning'
|
|
52014
52210
|
}).then(function () {
|
|
52015
|
-
|
|
52016
|
-
if (typeof
|
|
52017
|
-
utils_util["a" /* default */].win.open(
|
|
52211
|
+
_this13.operationCheckCode = results.checkCode;
|
|
52212
|
+
if (typeof _this13.forgetUrl === 'string') {
|
|
52213
|
+
utils_util["a" /* default */].win.open(_this13.forgetUrl);
|
|
52018
52214
|
} else {
|
|
52019
|
-
|
|
52215
|
+
_this13.showResetPassword = true;
|
|
52020
52216
|
}
|
|
52021
52217
|
}).catch(function (e) {});
|
|
52022
52218
|
break;
|
|
@@ -52057,13 +52253,13 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52057
52253
|
type: 'error',
|
|
52058
52254
|
duration: 1500,
|
|
52059
52255
|
onClose: function onClose() {
|
|
52060
|
-
if (
|
|
52256
|
+
if (_this13.code) {
|
|
52061
52257
|
window.location.href = utils_util["a" /* default */].delUrlParam({ key: 'code' });
|
|
52062
52258
|
if (window.location.hash) {
|
|
52063
52259
|
location.reload();
|
|
52064
52260
|
}
|
|
52065
52261
|
} else {
|
|
52066
|
-
|
|
52262
|
+
_this13.getImgCode();
|
|
52067
52263
|
}
|
|
52068
52264
|
}
|
|
52069
52265
|
});
|
|
@@ -52073,15 +52269,15 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52073
52269
|
}
|
|
52074
52270
|
},
|
|
52075
52271
|
handleAssistance: function handleAssistance(data) {
|
|
52076
|
-
var
|
|
52272
|
+
var _this14 = this;
|
|
52077
52273
|
|
|
52078
52274
|
clearTimeout(this.doAssistance);
|
|
52079
52275
|
this.doAssistance = setTimeout(function () {
|
|
52080
|
-
|
|
52276
|
+
_this14.doAssistanceLogin(data);
|
|
52081
52277
|
}, this.scanIntervalTime);
|
|
52082
52278
|
},
|
|
52083
52279
|
doAssistanceLogin: function doAssistanceLogin(data) {
|
|
52084
|
-
var
|
|
52280
|
+
var _this15 = this;
|
|
52085
52281
|
|
|
52086
52282
|
utils_util["a" /* default */].ajax({
|
|
52087
52283
|
method: 'post',
|
|
@@ -52091,19 +52287,19 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52091
52287
|
if (res.rCode === 0) {
|
|
52092
52288
|
var results = res.results;
|
|
52093
52289
|
if (results.statusCode === 0) {
|
|
52094
|
-
clearTimeout(
|
|
52095
|
-
|
|
52290
|
+
clearTimeout(_this15.doAssistance);
|
|
52291
|
+
_this15.handleResults(results, 3);
|
|
52096
52292
|
} else {
|
|
52097
|
-
|
|
52293
|
+
_this15.handleAssistance(data);
|
|
52098
52294
|
}
|
|
52099
52295
|
} else {
|
|
52100
|
-
clearTimeout(
|
|
52101
|
-
|
|
52296
|
+
clearTimeout(_this15.doAssistance);
|
|
52297
|
+
_this15.$message.error(res.msg);
|
|
52102
52298
|
}
|
|
52103
52299
|
}).catch(function (err) {
|
|
52104
|
-
clearTimeout(
|
|
52300
|
+
clearTimeout(_this15.doAssistance);
|
|
52105
52301
|
if (err.message && err.message !== 'canceled') {
|
|
52106
|
-
|
|
52302
|
+
_this15.$message.error(err.message);
|
|
52107
52303
|
}
|
|
52108
52304
|
});
|
|
52109
52305
|
},
|
|
@@ -52140,8 +52336,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
|
|
|
52140
52336
|
|
|
52141
52337
|
var login_src_main_component = normalizeComponent(
|
|
52142
52338
|
packages_login_src_mainvue_type_script_lang_js_,
|
|
52143
|
-
|
|
52144
|
-
|
|
52339
|
+
mainvue_type_template_id_68362bbf_render,
|
|
52340
|
+
mainvue_type_template_id_68362bbf_staticRenderFns,
|
|
52145
52341
|
false,
|
|
52146
52342
|
null,
|
|
52147
52343
|
null,
|
|
@@ -52258,8 +52454,8 @@ mainvue_type_template_id_774e8f3b_render._withStripped = true
|
|
|
52258
52454
|
|
|
52259
52455
|
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=774e8f3b&
|
|
52260
52456
|
|
|
52261
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
52262
|
-
var
|
|
52457
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=4aaec640&scoped=true&
|
|
52458
|
+
var simplicityvue_type_template_id_4aaec640_scoped_true_render = function () {
|
|
52263
52459
|
var _vm = this
|
|
52264
52460
|
var _h = _vm.$createElement
|
|
52265
52461
|
var _c = _vm._self._c || _h
|
|
@@ -52471,7 +52667,7 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52471
52667
|
style: _vm._aibackground,
|
|
52472
52668
|
on: {
|
|
52473
52669
|
click: function ($event) {
|
|
52474
|
-
_vm.handlerSetDrawer(_vm._aiConfig)
|
|
52670
|
+
_vm.handlerSetDrawer(_vm._aiConfig, "ai")
|
|
52475
52671
|
},
|
|
52476
52672
|
},
|
|
52477
52673
|
},
|
|
@@ -52541,7 +52737,7 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52541
52737
|
{
|
|
52542
52738
|
staticClass: "es-simplicity-public-drawer",
|
|
52543
52739
|
attrs: {
|
|
52544
|
-
direction:
|
|
52740
|
+
direction: _vm.drawer.direction,
|
|
52545
52741
|
"modal-class": "es-simplicity-apps-modal",
|
|
52546
52742
|
size: "100%",
|
|
52547
52743
|
"show-close": "",
|
|
@@ -52555,35 +52751,91 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52555
52751
|
},
|
|
52556
52752
|
},
|
|
52557
52753
|
[
|
|
52558
|
-
_vm.drawer.url
|
|
52559
|
-
?
|
|
52560
|
-
|
|
52561
|
-
|
|
52562
|
-
|
|
52563
|
-
|
|
52564
|
-
|
|
52565
|
-
|
|
52566
|
-
|
|
52567
|
-
|
|
52568
|
-
|
|
52569
|
-
|
|
52570
|
-
|
|
52571
|
-
|
|
52572
|
-
|
|
52573
|
-
|
|
52574
|
-
|
|
52575
|
-
|
|
52576
|
-
|
|
52577
|
-
|
|
52578
|
-
|
|
52579
|
-
|
|
52580
|
-
|
|
52581
|
-
|
|
52582
|
-
|
|
52583
|
-
|
|
52754
|
+
_vm.drawer.ai && _vm.drawer.ai.url
|
|
52755
|
+
? _c(
|
|
52756
|
+
"div",
|
|
52757
|
+
{
|
|
52758
|
+
directives: [
|
|
52759
|
+
{
|
|
52760
|
+
name: "show",
|
|
52761
|
+
rawName: "v-show",
|
|
52762
|
+
value: _vm.drawer.active == "ai",
|
|
52763
|
+
expression: "drawer.active == 'ai'",
|
|
52764
|
+
},
|
|
52765
|
+
],
|
|
52766
|
+
staticClass: "es-simplicity-public-drawer-main",
|
|
52767
|
+
},
|
|
52768
|
+
[
|
|
52769
|
+
_vm.isIE || _vm.drawer.ai.method !== "wujie"
|
|
52770
|
+
? [
|
|
52771
|
+
_c("iframe", {
|
|
52772
|
+
attrs: {
|
|
52773
|
+
frameborder: "0",
|
|
52774
|
+
width: "100%",
|
|
52775
|
+
height: "100%",
|
|
52776
|
+
src: _vm.drawer.ai.url,
|
|
52777
|
+
},
|
|
52778
|
+
}),
|
|
52779
|
+
]
|
|
52780
|
+
: [
|
|
52781
|
+
_c("es-wujie", {
|
|
52782
|
+
attrs: {
|
|
52783
|
+
host: _vm.host,
|
|
52784
|
+
show: true,
|
|
52785
|
+
props: _vm.wjProps,
|
|
52786
|
+
attrs: _vm.wjAttrs,
|
|
52787
|
+
name: _vm.drawer.ai.name,
|
|
52788
|
+
url: _vm.drawer.ai.url,
|
|
52789
|
+
},
|
|
52790
|
+
}),
|
|
52791
|
+
],
|
|
52792
|
+
],
|
|
52793
|
+
2
|
|
52794
|
+
)
|
|
52584
52795
|
: _vm._e(),
|
|
52585
|
-
|
|
52586
|
-
|
|
52796
|
+
_vm.drawer.im && _vm.drawer.im.url
|
|
52797
|
+
? _c(
|
|
52798
|
+
"div",
|
|
52799
|
+
{
|
|
52800
|
+
directives: [
|
|
52801
|
+
{
|
|
52802
|
+
name: "show",
|
|
52803
|
+
rawName: "v-show",
|
|
52804
|
+
value: _vm.drawer.active == "im",
|
|
52805
|
+
expression: "drawer.active == 'im'",
|
|
52806
|
+
},
|
|
52807
|
+
],
|
|
52808
|
+
staticClass: "es-simplicity-public-drawer-main",
|
|
52809
|
+
},
|
|
52810
|
+
[
|
|
52811
|
+
_vm.isIE || _vm.drawer.im.method !== "wujie"
|
|
52812
|
+
? [
|
|
52813
|
+
_c("iframe", {
|
|
52814
|
+
attrs: {
|
|
52815
|
+
frameborder: "0",
|
|
52816
|
+
width: "100%",
|
|
52817
|
+
height: "100%",
|
|
52818
|
+
src: _vm.drawer.im.url,
|
|
52819
|
+
},
|
|
52820
|
+
}),
|
|
52821
|
+
]
|
|
52822
|
+
: [
|
|
52823
|
+
_c("es-wujie", {
|
|
52824
|
+
attrs: {
|
|
52825
|
+
host: _vm.host,
|
|
52826
|
+
show: true,
|
|
52827
|
+
props: _vm.wjProps,
|
|
52828
|
+
attrs: _vm.wjAttrs,
|
|
52829
|
+
name: _vm.drawer.im.name,
|
|
52830
|
+
url: _vm.drawer.im.url,
|
|
52831
|
+
},
|
|
52832
|
+
}),
|
|
52833
|
+
],
|
|
52834
|
+
],
|
|
52835
|
+
2
|
|
52836
|
+
)
|
|
52837
|
+
: _vm._e(),
|
|
52838
|
+
]
|
|
52587
52839
|
),
|
|
52588
52840
|
_c(
|
|
52589
52841
|
"div",
|
|
@@ -52895,11 +53147,11 @@ var simplicityvue_type_template_id_22cde548_scoped_true_render = function () {
|
|
|
52895
53147
|
),
|
|
52896
53148
|
])
|
|
52897
53149
|
}
|
|
52898
|
-
var
|
|
52899
|
-
|
|
53150
|
+
var simplicityvue_type_template_id_4aaec640_scoped_true_staticRenderFns = []
|
|
53151
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_render._withStripped = true
|
|
52900
53152
|
|
|
52901
53153
|
|
|
52902
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
53154
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=4aaec640&scoped=true&
|
|
52903
53155
|
|
|
52904
53156
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
|
|
52905
53157
|
var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
|
|
@@ -53050,8 +53302,8 @@ var avatar_component = normalizeComponent(
|
|
|
53050
53302
|
)
|
|
53051
53303
|
|
|
53052
53304
|
/* harmony default export */ var avatar = (avatar_component.exports);
|
|
53053
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=template&id=
|
|
53054
|
-
var
|
|
53305
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=template&id=754aecd5&scoped=true&
|
|
53306
|
+
var handlervue_type_template_id_754aecd5_scoped_true_render = function () {
|
|
53055
53307
|
var _vm = this
|
|
53056
53308
|
var _h = _vm.$createElement
|
|
53057
53309
|
var _c = _vm._self._c || _h
|
|
@@ -53092,7 +53344,7 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53092
53344
|
]),
|
|
53093
53345
|
]
|
|
53094
53346
|
)
|
|
53095
|
-
: item.type === "online"
|
|
53347
|
+
: item.type === "online" || item.type === "onlineUser"
|
|
53096
53348
|
? _c(
|
|
53097
53349
|
"div",
|
|
53098
53350
|
{ key: item.type, staticClass: "es-simplicity-online" },
|
|
@@ -53114,7 +53366,7 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53114
53366
|
_vm._v("\n 人在线\n "),
|
|
53115
53367
|
]
|
|
53116
53368
|
)
|
|
53117
|
-
: item.type === "notice"
|
|
53369
|
+
: item.type === "notice" || item.type === "messsage"
|
|
53118
53370
|
? _c(
|
|
53119
53371
|
"el-badge",
|
|
53120
53372
|
{
|
|
@@ -53157,15 +53409,17 @@ var handlervue_type_template_id_6f2302b2_scoped_true_render = function () {
|
|
|
53157
53409
|
2
|
|
53158
53410
|
)
|
|
53159
53411
|
}
|
|
53160
|
-
var
|
|
53161
|
-
|
|
53412
|
+
var handlervue_type_template_id_754aecd5_scoped_true_staticRenderFns = []
|
|
53413
|
+
handlervue_type_template_id_754aecd5_scoped_true_render._withStripped = true
|
|
53162
53414
|
|
|
53163
53415
|
|
|
53164
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=
|
|
53416
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/handler.vue?vue&type=template&id=754aecd5&scoped=true&
|
|
53165
53417
|
|
|
53166
53418
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/handler.vue?vue&type=script&lang=js&
|
|
53167
53419
|
var handlervue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
53168
53420
|
|
|
53421
|
+
var handlervue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
53422
|
+
|
|
53169
53423
|
//
|
|
53170
53424
|
//
|
|
53171
53425
|
//
|
|
@@ -53241,31 +53495,69 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53241
53495
|
props: {
|
|
53242
53496
|
contact: Object,
|
|
53243
53497
|
dateTime: {
|
|
53244
|
-
type: Boolean,
|
|
53245
|
-
default:
|
|
53498
|
+
type: [Boolean, Object],
|
|
53499
|
+
default: function _default() {
|
|
53500
|
+
return { type: 'dateTime' };
|
|
53501
|
+
},
|
|
53502
|
+
|
|
53503
|
+
validator: function validator(val) {
|
|
53504
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53505
|
+
}
|
|
53506
|
+
},
|
|
53507
|
+
onlineUser: {
|
|
53508
|
+
type: [Boolean, Object],
|
|
53509
|
+
default: function _default() {
|
|
53510
|
+
return { type: 'onlineUser' };
|
|
53511
|
+
},
|
|
53512
|
+
|
|
53513
|
+
validator: function validator(val) {
|
|
53514
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53515
|
+
}
|
|
53246
53516
|
},
|
|
53247
53517
|
search: {
|
|
53248
|
-
type: Object,
|
|
53518
|
+
type: [Boolean, Object],
|
|
53249
53519
|
default: function _default() {
|
|
53250
53520
|
return {
|
|
53251
53521
|
type: 'search',
|
|
53252
53522
|
icon: 'es-icon-magnifier',
|
|
53253
53523
|
title: '搜索'
|
|
53254
53524
|
};
|
|
53525
|
+
},
|
|
53526
|
+
|
|
53527
|
+
validator: function validator(val) {
|
|
53528
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53529
|
+
}
|
|
53530
|
+
},
|
|
53531
|
+
im: {
|
|
53532
|
+
type: [Boolean, Object],
|
|
53533
|
+
default: function _default() {
|
|
53534
|
+
return {
|
|
53535
|
+
type: 'im',
|
|
53536
|
+
icon: 'es-icon-liaotian',
|
|
53537
|
+
title: 'IM'
|
|
53538
|
+
};
|
|
53539
|
+
},
|
|
53540
|
+
|
|
53541
|
+
validator: function validator(val) {
|
|
53542
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53255
53543
|
}
|
|
53256
53544
|
},
|
|
53257
53545
|
index: {
|
|
53258
|
-
type: Object,
|
|
53546
|
+
type: [Boolean, Object],
|
|
53259
53547
|
default: function _default() {
|
|
53260
53548
|
return {
|
|
53261
53549
|
type: 'index',
|
|
53262
53550
|
icon: 'es-icon-home',
|
|
53263
53551
|
title: '门户'
|
|
53264
53552
|
};
|
|
53553
|
+
},
|
|
53554
|
+
|
|
53555
|
+
validator: function validator(val) {
|
|
53556
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53265
53557
|
}
|
|
53266
53558
|
},
|
|
53267
53559
|
home: {
|
|
53268
|
-
type: Object,
|
|
53560
|
+
type: [Boolean, Object],
|
|
53269
53561
|
default: function _default() {
|
|
53270
53562
|
return {
|
|
53271
53563
|
type: 'home',
|
|
@@ -53275,7 +53567,7 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53275
53567
|
}
|
|
53276
53568
|
},
|
|
53277
53569
|
notice: {
|
|
53278
|
-
type: Object,
|
|
53570
|
+
type: [Boolean, Object],
|
|
53279
53571
|
default: function _default() {
|
|
53280
53572
|
return {
|
|
53281
53573
|
type: 'notice',
|
|
@@ -53285,7 +53577,7 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53285
53577
|
}
|
|
53286
53578
|
},
|
|
53287
53579
|
quit: {
|
|
53288
|
-
type: Object,
|
|
53580
|
+
type: [Boolean, Object],
|
|
53289
53581
|
default: function _default() {
|
|
53290
53582
|
return {
|
|
53291
53583
|
type: 'quit',
|
|
@@ -53295,24 +53587,30 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53295
53587
|
}
|
|
53296
53588
|
},
|
|
53297
53589
|
set: {
|
|
53298
|
-
type: Object,
|
|
53590
|
+
type: [Boolean, Object],
|
|
53299
53591
|
default: function _default() {
|
|
53300
53592
|
return {
|
|
53301
53593
|
type: 'set',
|
|
53302
53594
|
icon: 'es-icon-xitongguanli',
|
|
53303
53595
|
title: '设置'
|
|
53304
53596
|
};
|
|
53597
|
+
},
|
|
53598
|
+
|
|
53599
|
+
validator: function validator(val) {
|
|
53600
|
+
return val === false || (typeof val === 'undefined' ? 'undefined' : handlervue_type_script_lang_js_typeof(val)) === 'object';
|
|
53305
53601
|
}
|
|
53306
53602
|
},
|
|
53307
53603
|
data: Array,
|
|
53308
53604
|
hide: {
|
|
53309
53605
|
type: Object,
|
|
53310
53606
|
default: function _default() {
|
|
53311
|
-
return {
|
|
53312
|
-
old: true
|
|
53313
|
-
};
|
|
53607
|
+
return {};
|
|
53314
53608
|
}
|
|
53315
53609
|
},
|
|
53610
|
+
msgNum: {
|
|
53611
|
+
type: Number,
|
|
53612
|
+
default: 0
|
|
53613
|
+
},
|
|
53316
53614
|
noticeNum: {
|
|
53317
53615
|
type: Number,
|
|
53318
53616
|
default: 0
|
|
@@ -53332,21 +53630,13 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53332
53630
|
|
|
53333
53631
|
computed: {
|
|
53334
53632
|
lists: function lists() {
|
|
53335
|
-
var
|
|
53336
|
-
|
|
53337
|
-
|
|
53338
|
-
|
|
53339
|
-
|
|
53340
|
-
}
|
|
53341
|
-
if (this.dateTime) {
|
|
53342
|
-
df.push({ type: 'dateTime' });
|
|
53343
|
-
}
|
|
53344
|
-
if (this.online) {
|
|
53345
|
-
df.push({ type: 'online' });
|
|
53346
|
-
}
|
|
53347
|
-
var data = this.data ? [].concat(df, this.data) : [].concat(df, [this.search, this.index, this.home, this.notice, this.quit, this.set]);
|
|
53633
|
+
var hide = handlervue_type_script_lang_js_extends({
|
|
53634
|
+
old: true,
|
|
53635
|
+
im: true
|
|
53636
|
+
}, this.hide);
|
|
53637
|
+
var data = this.data ? this.data : [this.contact ? handlervue_type_script_lang_js_extends({}, this.contact, { type: 'contact' }) : {}, this.dateTime, this.onlineUser, this.search, this.im, this.index, this.home, this.notice, this.quit, this.set];
|
|
53348
53638
|
return data.filter(function (item) {
|
|
53349
|
-
return !
|
|
53639
|
+
return item && Object.keys(item).length && !item.hide && !hide[item.type];
|
|
53350
53640
|
});
|
|
53351
53641
|
},
|
|
53352
53642
|
isClick: function isClick() {
|
|
@@ -53365,11 +53655,11 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53365
53655
|
|
|
53366
53656
|
methods: {
|
|
53367
53657
|
getTime: function getTime() {
|
|
53368
|
-
var
|
|
53658
|
+
var _this = this;
|
|
53369
53659
|
|
|
53370
53660
|
this.timer && clearInterval(this.timer);
|
|
53371
53661
|
this.timer = setInterval(function () {
|
|
53372
|
-
|
|
53662
|
+
_this.time = utils_util["a" /* default */].formatDate('', 'HH:mm:ss');
|
|
53373
53663
|
});
|
|
53374
53664
|
},
|
|
53375
53665
|
handleClick: function handleClick(res) {
|
|
@@ -53392,11 +53682,11 @@ var handlervue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
53392
53682
|
|
|
53393
53683
|
var handler_component = normalizeComponent(
|
|
53394
53684
|
simplicity_handlervue_type_script_lang_js_,
|
|
53395
|
-
|
|
53396
|
-
|
|
53685
|
+
handlervue_type_template_id_754aecd5_scoped_true_render,
|
|
53686
|
+
handlervue_type_template_id_754aecd5_scoped_true_staticRenderFns,
|
|
53397
53687
|
false,
|
|
53398
53688
|
null,
|
|
53399
|
-
"
|
|
53689
|
+
"754aecd5",
|
|
53400
53690
|
null
|
|
53401
53691
|
|
|
53402
53692
|
)
|
|
@@ -54864,10 +55154,10 @@ appsvue_type_template_id_71b9cb14_scoped_true_render._withStripped = true
|
|
|
54864
55154
|
this.$emit('click', res);
|
|
54865
55155
|
},
|
|
54866
55156
|
|
|
54867
|
-
/**
|
|
54868
|
-
* @desc:获取气泡提醒
|
|
54869
|
-
* @author huangbo
|
|
54870
|
-
* @date 2024年9月7日
|
|
55157
|
+
/**
|
|
55158
|
+
* @desc:获取气泡提醒
|
|
55159
|
+
* @author huangbo
|
|
55160
|
+
* @date 2024年9月7日
|
|
54871
55161
|
**/
|
|
54872
55162
|
getBadge: function getBadge(res) {
|
|
54873
55163
|
var num = res.tips || 0;
|
|
@@ -57267,8 +57557,8 @@ var online_component = normalizeComponent(
|
|
|
57267
57557
|
)
|
|
57268
57558
|
|
|
57269
57559
|
/* harmony default export */ var online = (online_component.exports);
|
|
57270
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=
|
|
57271
|
-
var
|
|
57560
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=6c253fc4&
|
|
57561
|
+
var searchvue_type_template_id_6c253fc4_render = function () {
|
|
57272
57562
|
var _vm = this
|
|
57273
57563
|
var _h = _vm.$createElement
|
|
57274
57564
|
var _c = _vm._self._c || _h
|
|
@@ -57333,11 +57623,13 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57333
57623
|
{ staticClass: "es-public-search-list" },
|
|
57334
57624
|
_vm._l(
|
|
57335
57625
|
item.records.slice(0, 3),
|
|
57336
|
-
function (ele) {
|
|
57626
|
+
function (ele, idx) {
|
|
57337
57627
|
return _c(
|
|
57338
57628
|
"li",
|
|
57339
57629
|
{
|
|
57340
|
-
key:
|
|
57630
|
+
key:
|
|
57631
|
+
ele.id ||
|
|
57632
|
+
item.id + "_" + ele.title + "_" + idx,
|
|
57341
57633
|
staticClass:
|
|
57342
57634
|
"es-public-search-list-item",
|
|
57343
57635
|
on: {
|
|
@@ -57477,7 +57769,7 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57477
57769
|
),
|
|
57478
57770
|
_vm._l(_vm.types, function (item, index) {
|
|
57479
57771
|
return [
|
|
57480
|
-
!_vm.hides.includes(item.name)
|
|
57772
|
+
!_vm.hides.includes(item.name) && !item.hide
|
|
57481
57773
|
? _c(
|
|
57482
57774
|
"el-tab-pane",
|
|
57483
57775
|
{
|
|
@@ -57542,11 +57834,13 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57542
57834
|
_c(
|
|
57543
57835
|
"ul",
|
|
57544
57836
|
{ staticClass: "es-public-search-lists" },
|
|
57545
|
-
_vm._l(item.records, function (ele) {
|
|
57837
|
+
_vm._l(item.records, function (ele, idx) {
|
|
57546
57838
|
return _c(
|
|
57547
57839
|
"li",
|
|
57548
57840
|
{
|
|
57549
|
-
key:
|
|
57841
|
+
key:
|
|
57842
|
+
ele.id ||
|
|
57843
|
+
item.id + "_" + ele.title + "_" + idx,
|
|
57550
57844
|
staticClass: "es-public-search-list-item",
|
|
57551
57845
|
on: {
|
|
57552
57846
|
click: function ($event) {
|
|
@@ -57678,11 +57972,11 @@ var searchvue_type_template_id_4c2b6f24_render = function () {
|
|
|
57678
57972
|
1
|
|
57679
57973
|
)
|
|
57680
57974
|
}
|
|
57681
|
-
var
|
|
57682
|
-
|
|
57975
|
+
var searchvue_type_template_id_6c253fc4_staticRenderFns = []
|
|
57976
|
+
searchvue_type_template_id_6c253fc4_render._withStripped = true
|
|
57683
57977
|
|
|
57684
57978
|
|
|
57685
|
-
// CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=
|
|
57979
|
+
// CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=6c253fc4&
|
|
57686
57980
|
|
|
57687
57981
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=script&lang=js&
|
|
57688
57982
|
var searchvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -57985,7 +58279,12 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
57985
58279
|
var types = results.catalog.map(function (item, index) {
|
|
57986
58280
|
loadings[item.id || String(index)] = false;
|
|
57987
58281
|
noMore[item.id || String(index)] = false;
|
|
57988
|
-
return searchvue_type_script_lang_js_extends({}, item, {
|
|
58282
|
+
return searchvue_type_script_lang_js_extends({}, item, {
|
|
58283
|
+
pageNum: 0,
|
|
58284
|
+
pageCount: 1,
|
|
58285
|
+
records: [],
|
|
58286
|
+
hide: item.name == '应用' && _this2.apps.length == 0 ? true : false
|
|
58287
|
+
});
|
|
57989
58288
|
});
|
|
57990
58289
|
_this2.types = types;
|
|
57991
58290
|
_this2.loadings = loadings;
|
|
@@ -57996,7 +58295,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
57996
58295
|
searchAll: function searchAll(keyWords) {
|
|
57997
58296
|
for (var i = 0; i < this.types.length; i++) {
|
|
57998
58297
|
var item = this.types[i];
|
|
57999
|
-
if (keyWords) {
|
|
58298
|
+
if (keyWords && !this.hides.includes(item.name) && !item.hide) {
|
|
58000
58299
|
if (item.name == '菜单' && this.menus.length) {
|
|
58001
58300
|
this.isLoading = false;
|
|
58002
58301
|
this.types[i].records = this.searchData(this.menus, keyWords);
|
|
@@ -58139,8 +58438,8 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
58139
58438
|
|
|
58140
58439
|
var search_component = normalizeComponent(
|
|
58141
58440
|
public_searchvue_type_script_lang_js_,
|
|
58142
|
-
|
|
58143
|
-
|
|
58441
|
+
searchvue_type_template_id_6c253fc4_render,
|
|
58442
|
+
searchvue_type_template_id_6c253fc4_staticRenderFns,
|
|
58144
58443
|
false,
|
|
58145
58444
|
null,
|
|
58146
58445
|
null,
|
|
@@ -58480,6 +58779,30 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
|
|
|
58480
58779
|
//
|
|
58481
58780
|
//
|
|
58482
58781
|
//
|
|
58782
|
+
//
|
|
58783
|
+
//
|
|
58784
|
+
//
|
|
58785
|
+
//
|
|
58786
|
+
//
|
|
58787
|
+
//
|
|
58788
|
+
//
|
|
58789
|
+
//
|
|
58790
|
+
//
|
|
58791
|
+
//
|
|
58792
|
+
//
|
|
58793
|
+
//
|
|
58794
|
+
//
|
|
58795
|
+
//
|
|
58796
|
+
//
|
|
58797
|
+
//
|
|
58798
|
+
//
|
|
58799
|
+
//
|
|
58800
|
+
//
|
|
58801
|
+
//
|
|
58802
|
+
//
|
|
58803
|
+
//
|
|
58804
|
+
//
|
|
58805
|
+
//
|
|
58483
58806
|
|
|
58484
58807
|
|
|
58485
58808
|
|
|
@@ -58630,6 +58953,8 @@ var events = [function (tabs, index, that) {
|
|
|
58630
58953
|
},
|
|
58631
58954
|
//人工智能配置
|
|
58632
58955
|
ai: Object,
|
|
58956
|
+
//im
|
|
58957
|
+
im: Object,
|
|
58633
58958
|
//iframeId
|
|
58634
58959
|
iframeId: {
|
|
58635
58960
|
type: String,
|
|
@@ -58700,9 +59025,15 @@ var events = [function (tabs, index, that) {
|
|
|
58700
59025
|
fold: false,
|
|
58701
59026
|
//人工智能配置
|
|
58702
59027
|
aiConfig: null,
|
|
59028
|
+
//im配置
|
|
59029
|
+
imConfig: null,
|
|
58703
59030
|
//公用窗口面板配置
|
|
58704
59031
|
drawer: {
|
|
58705
|
-
visible: false
|
|
59032
|
+
visible: false,
|
|
59033
|
+
direction: 'ltr',
|
|
59034
|
+
ai: {},
|
|
59035
|
+
im: {},
|
|
59036
|
+
active: ''
|
|
58706
59037
|
},
|
|
58707
59038
|
//所有应用
|
|
58708
59039
|
applications: [],
|
|
@@ -58797,6 +59128,11 @@ var events = [function (tabs, index, that) {
|
|
|
58797
59128
|
} : {};
|
|
58798
59129
|
},
|
|
58799
59130
|
|
|
59131
|
+
//人工智能配置
|
|
59132
|
+
_imConfig: function _imConfig() {
|
|
59133
|
+
return this.imConfig || this.im;
|
|
59134
|
+
},
|
|
59135
|
+
|
|
58800
59136
|
//用户信息
|
|
58801
59137
|
user: function user() {
|
|
58802
59138
|
return this.userModel ? this.userModel : utils_store.get('userModel');
|
|
@@ -58851,10 +59187,10 @@ var events = [function (tabs, index, that) {
|
|
|
58851
59187
|
},
|
|
58852
59188
|
|
|
58853
59189
|
methods: {
|
|
58854
|
-
/**
|
|
58855
|
-
* @desc:匹配路由
|
|
58856
|
-
* @author huangbo
|
|
58857
|
-
* @date 2024年9月7日
|
|
59190
|
+
/**
|
|
59191
|
+
* @desc:匹配路由
|
|
59192
|
+
* @author huangbo
|
|
59193
|
+
* @date 2024年9月7日
|
|
58858
59194
|
**/
|
|
58859
59195
|
hasRouter: function hasRouter(res, url, code) {
|
|
58860
59196
|
if (!url) {
|
|
@@ -58898,10 +59234,10 @@ var events = [function (tabs, index, that) {
|
|
|
58898
59234
|
return false;
|
|
58899
59235
|
},
|
|
58900
59236
|
|
|
58901
|
-
/**
|
|
58902
|
-
* @desc:获取初始数据
|
|
58903
|
-
* @author huangbo
|
|
58904
|
-
* @date 2024年9月7日
|
|
59237
|
+
/**
|
|
59238
|
+
* @desc:获取初始数据
|
|
59239
|
+
* @author huangbo
|
|
59240
|
+
* @date 2024年9月7日
|
|
58905
59241
|
**/
|
|
58906
59242
|
init: function init(results, first) {
|
|
58907
59243
|
this.setConfig(results);
|
|
@@ -58910,10 +59246,10 @@ var events = [function (tabs, index, that) {
|
|
|
58910
59246
|
}
|
|
58911
59247
|
},
|
|
58912
59248
|
|
|
58913
|
-
/**
|
|
58914
|
-
* @desc:设置用户配置及信息
|
|
58915
|
-
* @author huangbo
|
|
58916
|
-
* @date 2024年9月7日
|
|
59249
|
+
/**
|
|
59250
|
+
* @desc:设置用户配置及信息
|
|
59251
|
+
* @author huangbo
|
|
59252
|
+
* @date 2024年9月7日
|
|
58917
59253
|
**/
|
|
58918
59254
|
setConfig: function setConfig(results) {
|
|
58919
59255
|
localStorage.setItem('mainConfig', JSON.stringify(results));
|
|
@@ -58996,6 +59332,17 @@ var events = [function (tabs, index, that) {
|
|
|
58996
59332
|
this.aiConfig = results[i].aiConfig;
|
|
58997
59333
|
}
|
|
58998
59334
|
}
|
|
59335
|
+
if (results[i].imConfig) {
|
|
59336
|
+
if (typeof results[i].imConfig == 'string') {
|
|
59337
|
+
try {
|
|
59338
|
+
this.imConfig = JSON.parse(results[i].imConfig);
|
|
59339
|
+
} catch (error) {
|
|
59340
|
+
this.imConfig = { url: results[i].imConfig };
|
|
59341
|
+
}
|
|
59342
|
+
} else {
|
|
59343
|
+
this.imConfig = results[i].imConfig;
|
|
59344
|
+
}
|
|
59345
|
+
}
|
|
58999
59346
|
if (results[i].portalPage || results[i].portalpage) {
|
|
59000
59347
|
this.doorIndex = results[i].portalPage || results[i].portalpage;
|
|
59001
59348
|
}
|
|
@@ -59031,10 +59378,10 @@ var events = [function (tabs, index, that) {
|
|
|
59031
59378
|
}
|
|
59032
59379
|
},
|
|
59033
59380
|
|
|
59034
|
-
/**
|
|
59035
|
-
* @desc:获取所有应用
|
|
59036
|
-
* @author huangbo
|
|
59037
|
-
* @date 2024年9月7日
|
|
59381
|
+
/**
|
|
59382
|
+
* @desc:获取所有应用
|
|
59383
|
+
* @author huangbo
|
|
59384
|
+
* @date 2024年9月7日
|
|
59038
59385
|
**/
|
|
59039
59386
|
getApplications: function getApplications() {
|
|
59040
59387
|
var _this = this;
|
|
@@ -59082,10 +59429,10 @@ var events = [function (tabs, index, that) {
|
|
|
59082
59429
|
});
|
|
59083
59430
|
},
|
|
59084
59431
|
|
|
59085
|
-
/**
|
|
59086
|
-
* @desc:获取菜单列表
|
|
59087
|
-
* @author huangbo
|
|
59088
|
-
* @date 2024年9月7日
|
|
59432
|
+
/**
|
|
59433
|
+
* @desc:获取菜单列表
|
|
59434
|
+
* @author huangbo
|
|
59435
|
+
* @date 2024年9月7日
|
|
59089
59436
|
**/
|
|
59090
59437
|
getMenus: function getMenus(loading) {
|
|
59091
59438
|
var _this2 = this;
|
|
@@ -59118,10 +59465,10 @@ var events = [function (tabs, index, that) {
|
|
|
59118
59465
|
});
|
|
59119
59466
|
},
|
|
59120
59467
|
|
|
59121
|
-
/**
|
|
59122
|
-
* @desc:处理菜单列表
|
|
59123
|
-
* @author huangbo
|
|
59124
|
-
* @date 2024年9月7日
|
|
59468
|
+
/**
|
|
59469
|
+
* @desc:处理菜单列表
|
|
59470
|
+
* @author huangbo
|
|
59471
|
+
* @date 2024年9月7日
|
|
59125
59472
|
**/
|
|
59126
59473
|
renderMenus: function renderMenus(res) {
|
|
59127
59474
|
this.menus = res;
|
|
@@ -59211,10 +59558,10 @@ var events = [function (tabs, index, that) {
|
|
|
59211
59558
|
}
|
|
59212
59559
|
},
|
|
59213
59560
|
|
|
59214
|
-
/**
|
|
59215
|
-
* @desc:设置页面加载类型
|
|
59216
|
-
* @author huangbo
|
|
59217
|
-
* @date 2024年9月7日
|
|
59561
|
+
/**
|
|
59562
|
+
* @desc:设置页面加载类型
|
|
59563
|
+
* @author huangbo
|
|
59564
|
+
* @date 2024年9月7日
|
|
59218
59565
|
**/
|
|
59219
59566
|
setIframeType: function setIframeType(res) {
|
|
59220
59567
|
var url = res.url;
|
|
@@ -59270,10 +59617,10 @@ var events = [function (tabs, index, that) {
|
|
|
59270
59617
|
return res;
|
|
59271
59618
|
},
|
|
59272
59619
|
|
|
59273
|
-
/**
|
|
59274
|
-
* @desc:获取菜单
|
|
59275
|
-
* @author huangbo
|
|
59276
|
-
* @date 2024年9月7日
|
|
59620
|
+
/**
|
|
59621
|
+
* @desc:获取菜单
|
|
59622
|
+
* @author huangbo
|
|
59623
|
+
* @date 2024年9月7日
|
|
59277
59624
|
**/
|
|
59278
59625
|
getMenu: function getMenu(menus, res, key) {
|
|
59279
59626
|
if (Array.isArray(menus)) {
|
|
@@ -59302,10 +59649,10 @@ var events = [function (tabs, index, that) {
|
|
|
59302
59649
|
return false;
|
|
59303
59650
|
},
|
|
59304
59651
|
|
|
59305
|
-
/**
|
|
59306
|
-
* @desc:获取菜单第一条数据
|
|
59307
|
-
* @author huangbo
|
|
59308
|
-
* @date 2024年9月7日
|
|
59652
|
+
/**
|
|
59653
|
+
* @desc:获取菜单第一条数据
|
|
59654
|
+
* @author huangbo
|
|
59655
|
+
* @date 2024年9月7日
|
|
59309
59656
|
**/
|
|
59310
59657
|
getFirst: function getFirst(obj) {
|
|
59311
59658
|
if (!obj) {
|
|
@@ -59324,10 +59671,10 @@ var events = [function (tabs, index, that) {
|
|
|
59324
59671
|
}
|
|
59325
59672
|
},
|
|
59326
59673
|
|
|
59327
|
-
/**
|
|
59328
|
-
* @desc:遍历设置菜单气泡提醒
|
|
59329
|
-
* @author huangbo
|
|
59330
|
-
* @date 2024年9月7日
|
|
59674
|
+
/**
|
|
59675
|
+
* @desc:遍历设置菜单气泡提醒
|
|
59676
|
+
* @author huangbo
|
|
59677
|
+
* @date 2024年9月7日
|
|
59331
59678
|
**/
|
|
59332
59679
|
setTips: function setTips(obj) {
|
|
59333
59680
|
var _this3 = this;
|
|
@@ -59390,10 +59737,10 @@ var events = [function (tabs, index, that) {
|
|
|
59390
59737
|
}
|
|
59391
59738
|
},
|
|
59392
59739
|
|
|
59393
|
-
/**
|
|
59394
|
-
* @desc:获取气泡提醒
|
|
59395
|
-
* @author huangbo
|
|
59396
|
-
* @date 2024年9月7日
|
|
59740
|
+
/**
|
|
59741
|
+
* @desc:获取气泡提醒
|
|
59742
|
+
* @author huangbo
|
|
59743
|
+
* @date 2024年9月7日
|
|
59397
59744
|
**/
|
|
59398
59745
|
getBadge: function getBadge(res) {
|
|
59399
59746
|
var num = res.tips || 0;
|
|
@@ -59407,10 +59754,10 @@ var events = [function (tabs, index, that) {
|
|
|
59407
59754
|
};
|
|
59408
59755
|
},
|
|
59409
59756
|
|
|
59410
|
-
/**
|
|
59411
|
-
* @desc:开启weosocket
|
|
59412
|
-
* @author huangbo
|
|
59413
|
-
* @date 2024年9月7日
|
|
59757
|
+
/**
|
|
59758
|
+
* @desc:开启weosocket
|
|
59759
|
+
* @author huangbo
|
|
59760
|
+
* @date 2024年9月7日
|
|
59414
59761
|
**/
|
|
59415
59762
|
initWebSocket: function initWebSocket() {
|
|
59416
59763
|
var _this5 = this;
|
|
@@ -59458,10 +59805,10 @@ var events = [function (tabs, index, that) {
|
|
|
59458
59805
|
});
|
|
59459
59806
|
},
|
|
59460
59807
|
|
|
59461
|
-
/**
|
|
59462
|
-
* @desc:显示用户信息
|
|
59463
|
-
* @author huangbo
|
|
59464
|
-
* @date 2024年9月7日
|
|
59808
|
+
/**
|
|
59809
|
+
* @desc:显示用户信息
|
|
59810
|
+
* @author huangbo
|
|
59811
|
+
* @date 2024年9月7日
|
|
59465
59812
|
**/
|
|
59466
59813
|
showUserInfo: function showUserInfo() {
|
|
59467
59814
|
if (this.showUser === false) {
|
|
@@ -59469,19 +59816,19 @@ var events = [function (tabs, index, that) {
|
|
|
59469
59816
|
}
|
|
59470
59817
|
},
|
|
59471
59818
|
|
|
59472
|
-
/**
|
|
59473
|
-
* @desc:删除更多应用菜单点击
|
|
59474
|
-
* @author huangbo
|
|
59475
|
-
* @date 2024年9月7日
|
|
59819
|
+
/**
|
|
59820
|
+
* @desc:删除更多应用菜单点击
|
|
59821
|
+
* @author huangbo
|
|
59822
|
+
* @date 2024年9月7日
|
|
59476
59823
|
**/
|
|
59477
59824
|
handleDelete: function handleDelete(index) {
|
|
59478
59825
|
this.newApps.splice(index, 1);
|
|
59479
59826
|
},
|
|
59480
59827
|
|
|
59481
|
-
/**
|
|
59482
|
-
* @desc:储存更多应用菜单点击
|
|
59483
|
-
* @author huangbo
|
|
59484
|
-
* @date 2024年9月7日
|
|
59828
|
+
/**
|
|
59829
|
+
* @desc:储存更多应用菜单点击
|
|
59830
|
+
* @author huangbo
|
|
59831
|
+
* @date 2024年9月7日
|
|
59485
59832
|
**/
|
|
59486
59833
|
handlerClickApps: function handlerClickApps(res) {
|
|
59487
59834
|
if (res.permission === false) {
|
|
@@ -59494,10 +59841,10 @@ var events = [function (tabs, index, that) {
|
|
|
59494
59841
|
this.handlerClickApp(res);
|
|
59495
59842
|
},
|
|
59496
59843
|
|
|
59497
|
-
/**
|
|
59498
|
-
* @desc:侧边应用菜单点击
|
|
59499
|
-
* @author huangbo
|
|
59500
|
-
* @date 2024年9月7日
|
|
59844
|
+
/**
|
|
59845
|
+
* @desc:侧边应用菜单点击
|
|
59846
|
+
* @author huangbo
|
|
59847
|
+
* @date 2024年9月7日
|
|
59501
59848
|
**/
|
|
59502
59849
|
handlerClickApp: function handlerClickApp(res) {
|
|
59503
59850
|
this.showMsg = false;
|
|
@@ -59580,33 +59927,42 @@ var events = [function (tabs, index, that) {
|
|
|
59580
59927
|
}
|
|
59581
59928
|
},
|
|
59582
59929
|
|
|
59583
|
-
/**
|
|
59584
|
-
* @desc:显示Drawer界面
|
|
59585
|
-
* @author huangbo
|
|
59586
|
-
* @date 2024年9月7日
|
|
59930
|
+
/**
|
|
59931
|
+
* @desc:显示Drawer界面
|
|
59932
|
+
* @author huangbo
|
|
59933
|
+
* @date 2024年9月7日
|
|
59587
59934
|
**/
|
|
59588
|
-
handlerSetDrawer: function handlerSetDrawer(res) {
|
|
59589
|
-
|
|
59590
|
-
|
|
59591
|
-
this.drawer.
|
|
59592
|
-
|
|
59593
|
-
|
|
59935
|
+
handlerSetDrawer: function handlerSetDrawer(res, type) {
|
|
59936
|
+
var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
|
|
59937
|
+
|
|
59938
|
+
this.drawer.visible = true;
|
|
59939
|
+
this.active = type;
|
|
59940
|
+
this.drawer.direction = direction;
|
|
59941
|
+
if (!this.drawer[type] && res) {
|
|
59942
|
+
var mounted = res.mounted,
|
|
59943
|
+
url = res.url;
|
|
59944
|
+
|
|
59945
|
+
this.drawer[type] = {
|
|
59946
|
+
mounted: mounted,
|
|
59947
|
+
url: url,
|
|
59948
|
+
name: res.name || utils_util["a" /* default */].uuid()
|
|
59949
|
+
};
|
|
59594
59950
|
}
|
|
59595
59951
|
},
|
|
59596
59952
|
|
|
59597
|
-
/**
|
|
59598
|
-
* @desc:关闭Drawer界面
|
|
59599
|
-
* @author huangbo
|
|
59600
|
-
* @date 2024年9月7日
|
|
59953
|
+
/**
|
|
59954
|
+
* @desc:关闭Drawer界面
|
|
59955
|
+
* @author huangbo
|
|
59956
|
+
* @date 2024年9月7日
|
|
59601
59957
|
**/
|
|
59602
59958
|
handleCloseDrawer: function handleCloseDrawer() {
|
|
59603
59959
|
this.drawer = { visible: false };
|
|
59604
59960
|
},
|
|
59605
59961
|
|
|
59606
|
-
/**
|
|
59607
|
-
* @desc:菜单点击
|
|
59608
|
-
* @author huangbo
|
|
59609
|
-
* @date 2024年9月7日
|
|
59962
|
+
/**
|
|
59963
|
+
* @desc:菜单点击
|
|
59964
|
+
* @author huangbo
|
|
59965
|
+
* @date 2024年9月7日
|
|
59610
59966
|
**/
|
|
59611
59967
|
handlerClickMenu: function handlerClickMenu(res) {
|
|
59612
59968
|
utils_util["a" /* default */].ajax({
|
|
@@ -59645,19 +60001,19 @@ var events = [function (tabs, index, that) {
|
|
|
59645
60001
|
},
|
|
59646
60002
|
|
|
59647
60003
|
|
|
59648
|
-
/**
|
|
59649
|
-
* @desc:用户详情请求成功
|
|
59650
|
-
* @author huangbo
|
|
59651
|
-
* @date 2024年9月7日
|
|
60004
|
+
/**
|
|
60005
|
+
* @desc:用户详情请求成功
|
|
60006
|
+
* @author huangbo
|
|
60007
|
+
* @date 2024年9月7日
|
|
59652
60008
|
**/
|
|
59653
60009
|
handleSuccess: function handleSuccess(res) {
|
|
59654
60010
|
this.simpleUserInfo = res.simpleUserInfo;
|
|
59655
60011
|
},
|
|
59656
60012
|
|
|
59657
|
-
/**
|
|
59658
|
-
* @desc:修改用户配置
|
|
59659
|
-
* @author huangbo
|
|
59660
|
-
* @date 2024年9月7日
|
|
60013
|
+
/**
|
|
60014
|
+
* @desc:修改用户配置
|
|
60015
|
+
* @author huangbo
|
|
60016
|
+
* @date 2024年9月7日
|
|
59661
60017
|
**/
|
|
59662
60018
|
handleChangeConfig: function handleChangeConfig(name, res) {
|
|
59663
60019
|
if (name == 'userHeadUrl') {
|
|
@@ -59673,10 +60029,10 @@ var events = [function (tabs, index, that) {
|
|
|
59673
60029
|
}
|
|
59674
60030
|
},
|
|
59675
60031
|
|
|
59676
|
-
/**
|
|
59677
|
-
* @desc:关闭webSocket
|
|
59678
|
-
* @author huangbo
|
|
59679
|
-
* @date 2024年9月7日
|
|
60032
|
+
/**
|
|
60033
|
+
* @desc:关闭webSocket
|
|
60034
|
+
* @author huangbo
|
|
60035
|
+
* @date 2024年9月7日
|
|
59680
60036
|
**/
|
|
59681
60037
|
handlerClose: function handlerClose() {
|
|
59682
60038
|
if (this.webSocket) {
|
|
@@ -59684,10 +60040,10 @@ var events = [function (tabs, index, that) {
|
|
|
59684
60040
|
}
|
|
59685
60041
|
},
|
|
59686
60042
|
|
|
59687
|
-
/**
|
|
59688
|
-
* @desc:刷新选中iframe页签
|
|
59689
|
-
* @author huangbo
|
|
59690
|
-
* @date 2024年9月7日
|
|
60043
|
+
/**
|
|
60044
|
+
* @desc:刷新选中iframe页签
|
|
60045
|
+
* @author huangbo
|
|
60046
|
+
* @date 2024年9月7日
|
|
59691
60047
|
**/
|
|
59692
60048
|
handleRefresh: function handleRefresh() {
|
|
59693
60049
|
var i = utils_util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
|
|
@@ -59708,10 +60064,10 @@ var events = [function (tabs, index, that) {
|
|
|
59708
60064
|
}
|
|
59709
60065
|
},
|
|
59710
60066
|
|
|
59711
|
-
/**
|
|
59712
|
-
* @desc:删除iframe
|
|
59713
|
-
* @author huangbo
|
|
59714
|
-
* @date 2024年9月7日
|
|
60067
|
+
/**
|
|
60068
|
+
* @desc:删除iframe
|
|
60069
|
+
* @author huangbo
|
|
60070
|
+
* @date 2024年9月7日
|
|
59715
60071
|
**/
|
|
59716
60072
|
handleRemove: function handleRemove(name) {
|
|
59717
60073
|
var len = this.tabs.length - 1;
|
|
@@ -59728,10 +60084,10 @@ var events = [function (tabs, index, that) {
|
|
|
59728
60084
|
}
|
|
59729
60085
|
},
|
|
59730
60086
|
|
|
59731
|
-
/**
|
|
59732
|
-
* @desc:tabs鼠标右键事件
|
|
59733
|
-
* @author huangbo
|
|
59734
|
-
* @date 2024年9月7日
|
|
60087
|
+
/**
|
|
60088
|
+
* @desc:tabs鼠标右键事件
|
|
60089
|
+
* @author huangbo
|
|
60090
|
+
* @date 2024年9月7日
|
|
59735
60091
|
**/
|
|
59736
60092
|
handleContextmenu: function handleContextmenu(tabs, e) {
|
|
59737
60093
|
var disabled = {};
|
|
@@ -59756,10 +60112,10 @@ var events = [function (tabs, index, that) {
|
|
|
59756
60112
|
window.addEventListener('click', this.closeTabsEvents);
|
|
59757
60113
|
},
|
|
59758
60114
|
|
|
59759
|
-
/**
|
|
59760
|
-
* @desc:tabs页签事件
|
|
59761
|
-
* @author huangbo
|
|
59762
|
-
* @date 2024年9月7日
|
|
60115
|
+
/**
|
|
60116
|
+
* @desc:tabs页签事件
|
|
60117
|
+
* @author huangbo
|
|
60118
|
+
* @date 2024年9月7日
|
|
59763
60119
|
**/
|
|
59764
60120
|
handleTabsEvents: function handleTabsEvents(num) {
|
|
59765
60121
|
if (this.pane !== null) {
|
|
@@ -59777,10 +60133,10 @@ var events = [function (tabs, index, that) {
|
|
|
59777
60133
|
window.removeEventListener('click', this.closeTabsEvents);
|
|
59778
60134
|
},
|
|
59779
60135
|
|
|
59780
|
-
/**
|
|
59781
|
-
* @desc:handler工具栏点击事件
|
|
59782
|
-
* @author huangbo
|
|
59783
|
-
* @date 2024年9月7日
|
|
60136
|
+
/**
|
|
60137
|
+
* @desc:handler工具栏点击事件
|
|
60138
|
+
* @author huangbo
|
|
60139
|
+
* @date 2024年9月7日
|
|
59784
60140
|
**/
|
|
59785
60141
|
handleClick: function handleClick(res) {
|
|
59786
60142
|
var type = res.type,
|
|
@@ -59840,14 +60196,16 @@ var events = [function (tabs, index, that) {
|
|
|
59840
60196
|
this.showSet = false;
|
|
59841
60197
|
break;
|
|
59842
60198
|
case 'search':
|
|
59843
|
-
|
|
59844
|
-
this.handlerSetDrawer(res);
|
|
59845
|
-
} else {
|
|
59846
|
-
this.showSearch = true;
|
|
59847
|
-
}
|
|
60199
|
+
this.showSearch = true;
|
|
59848
60200
|
this.showMsg = false;
|
|
59849
60201
|
this.showSet = false;
|
|
59850
60202
|
break;
|
|
60203
|
+
case 'ai':
|
|
60204
|
+
this.handlerSetDrawer(this._aiConfig, 'ai', 'rtl');
|
|
60205
|
+
break;
|
|
60206
|
+
case 'im':
|
|
60207
|
+
this.handlerSetDrawer(this._imConfig, 'im', 'rtl');
|
|
60208
|
+
break;
|
|
59851
60209
|
case 'goView':
|
|
59852
60210
|
utils_util["a" /* default */].win.open(res.path, '_blank');
|
|
59853
60211
|
break;
|
|
@@ -59856,10 +60214,10 @@ var events = [function (tabs, index, that) {
|
|
|
59856
60214
|
this.$emit('handler-click', res);
|
|
59857
60215
|
},
|
|
59858
60216
|
|
|
59859
|
-
/**
|
|
59860
|
-
* @desc:退出登录
|
|
59861
|
-
* @author huangbo
|
|
59862
|
-
* @date 2024年9月7日
|
|
60217
|
+
/**
|
|
60218
|
+
* @desc:退出登录
|
|
60219
|
+
* @author huangbo
|
|
60220
|
+
* @date 2024年9月7日
|
|
59863
60221
|
**/
|
|
59864
60222
|
handleQuit: function handleQuit() {
|
|
59865
60223
|
var _this6 = this;
|
|
@@ -59917,10 +60275,10 @@ var events = [function (tabs, index, that) {
|
|
|
59917
60275
|
}).catch(function (e) {});
|
|
59918
60276
|
},
|
|
59919
60277
|
|
|
59920
|
-
/**
|
|
59921
|
-
* @desc:主题、消息回调
|
|
59922
|
-
* @author huangbo
|
|
59923
|
-
* @date 2024年9月7日
|
|
60278
|
+
/**
|
|
60279
|
+
* @desc:主题、消息回调
|
|
60280
|
+
* @author huangbo
|
|
60281
|
+
* @date 2024年9月7日
|
|
59924
60282
|
**/
|
|
59925
60283
|
handleChange: function handleChange(res) {
|
|
59926
60284
|
var type = res.type,
|
|
@@ -59936,10 +60294,10 @@ var events = [function (tabs, index, that) {
|
|
|
59936
60294
|
}
|
|
59937
60295
|
},
|
|
59938
60296
|
|
|
59939
|
-
/**
|
|
59940
|
-
* @desc:菜单布局样式切换
|
|
59941
|
-
* @author huangbo
|
|
59942
|
-
* @date 2024年9月7日
|
|
60297
|
+
/**
|
|
60298
|
+
* @desc:菜单布局样式切换
|
|
60299
|
+
* @author huangbo
|
|
60300
|
+
* @date 2024年9月7日
|
|
59943
60301
|
**/
|
|
59944
60302
|
handleLayout: function handleLayout(res, active) {
|
|
59945
60303
|
if (active) {
|
|
@@ -59948,10 +60306,10 @@ var events = [function (tabs, index, that) {
|
|
|
59948
60306
|
this.$emit('chang-layout', res, active);
|
|
59949
60307
|
},
|
|
59950
60308
|
|
|
59951
|
-
/**
|
|
59952
|
-
* @desc:消息修改总数
|
|
59953
|
-
* @author huangbo
|
|
59954
|
-
* @date 2024年9月7日
|
|
60309
|
+
/**
|
|
60310
|
+
* @desc:消息修改总数
|
|
60311
|
+
* @author huangbo
|
|
60312
|
+
* @date 2024年9月7日
|
|
59955
60313
|
**/
|
|
59956
60314
|
handleMenuTips: function handleMenuTips(id, num) {
|
|
59957
60315
|
if (num) {
|
|
@@ -59962,10 +60320,10 @@ var events = [function (tabs, index, that) {
|
|
|
59962
60320
|
}
|
|
59963
60321
|
},
|
|
59964
60322
|
|
|
59965
|
-
/**
|
|
59966
|
-
* @desc:处理即时消息
|
|
59967
|
-
* @author huangbo
|
|
59968
|
-
* @date 2024年9月7日
|
|
60323
|
+
/**
|
|
60324
|
+
* @desc:处理即时消息
|
|
60325
|
+
* @author huangbo
|
|
60326
|
+
* @date 2024年9月7日
|
|
59969
60327
|
**/
|
|
59970
60328
|
handleOpened: function handleOpened(res) {
|
|
59971
60329
|
var _this7 = this;
|
|
@@ -60086,18 +60444,18 @@ var events = [function (tabs, index, that) {
|
|
|
60086
60444
|
|
|
60087
60445
|
var simplicity_component = normalizeComponent(
|
|
60088
60446
|
src_simplicityvue_type_script_lang_js_,
|
|
60089
|
-
|
|
60090
|
-
|
|
60447
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_render,
|
|
60448
|
+
simplicityvue_type_template_id_4aaec640_scoped_true_staticRenderFns,
|
|
60091
60449
|
false,
|
|
60092
60450
|
null,
|
|
60093
|
-
"
|
|
60451
|
+
"4aaec640",
|
|
60094
60452
|
null
|
|
60095
60453
|
|
|
60096
60454
|
)
|
|
60097
60455
|
|
|
60098
60456
|
/* harmony default export */ var simplicity = (simplicity_component.exports);
|
|
60099
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=
|
|
60100
|
-
var
|
|
60457
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=40cb21f4&
|
|
60458
|
+
var defaultvue_type_template_id_40cb21f4_render = function () {
|
|
60101
60459
|
var _vm = this
|
|
60102
60460
|
var _h = _vm.$createElement
|
|
60103
60461
|
var _c = _vm._self._c || _h
|
|
@@ -60164,7 +60522,7 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60164
60522
|
online: _vm.online,
|
|
60165
60523
|
application: _vm.application,
|
|
60166
60524
|
storage: _vm.storage,
|
|
60167
|
-
|
|
60525
|
+
noticeNum: _vm.notice,
|
|
60168
60526
|
data: _vm.handleData,
|
|
60169
60527
|
"max-height": _vm._maxHeight,
|
|
60170
60528
|
},
|
|
@@ -60460,6 +60818,25 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60460
60818
|
attrs: { data: _vm.sysMsg, winopen: _vm.winopen },
|
|
60461
60819
|
on: { opened: _vm.handleOpened },
|
|
60462
60820
|
}),
|
|
60821
|
+
_c(
|
|
60822
|
+
"es-dialog",
|
|
60823
|
+
{
|
|
60824
|
+
staticClass: "es-public-search-dialog",
|
|
60825
|
+
attrs: { visible: _vm.showSearch, size: "lg" },
|
|
60826
|
+
on: {
|
|
60827
|
+
"update:visible": function ($event) {
|
|
60828
|
+
_vm.showSearch = $event
|
|
60829
|
+
},
|
|
60830
|
+
},
|
|
60831
|
+
},
|
|
60832
|
+
[
|
|
60833
|
+
_c("search", {
|
|
60834
|
+
attrs: { menus: _vm.menus, menuIcon: _vm.menuIcon },
|
|
60835
|
+
on: { select: _vm.handleOnSearch },
|
|
60836
|
+
}),
|
|
60837
|
+
],
|
|
60838
|
+
1
|
|
60839
|
+
),
|
|
60463
60840
|
_c(
|
|
60464
60841
|
"es-dialog",
|
|
60465
60842
|
{
|
|
@@ -60494,11 +60871,11 @@ var defaultvue_type_template_id_3e631434_render = function () {
|
|
|
60494
60871
|
1
|
|
60495
60872
|
)
|
|
60496
60873
|
}
|
|
60497
|
-
var
|
|
60498
|
-
|
|
60874
|
+
var defaultvue_type_template_id_40cb21f4_staticRenderFns = []
|
|
60875
|
+
defaultvue_type_template_id_40cb21f4_render._withStripped = true
|
|
60499
60876
|
|
|
60500
60877
|
|
|
60501
|
-
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=
|
|
60878
|
+
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=40cb21f4&
|
|
60502
60879
|
|
|
60503
60880
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=b6520920&
|
|
60504
60881
|
var userinfovue_type_template_id_b6520920_render = function () {
|
|
@@ -61952,6 +62329,18 @@ var defaultvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
61952
62329
|
//
|
|
61953
62330
|
//
|
|
61954
62331
|
//
|
|
62332
|
+
//
|
|
62333
|
+
//
|
|
62334
|
+
//
|
|
62335
|
+
//
|
|
62336
|
+
//
|
|
62337
|
+
//
|
|
62338
|
+
//
|
|
62339
|
+
//
|
|
62340
|
+
//
|
|
62341
|
+
//
|
|
62342
|
+
//
|
|
62343
|
+
|
|
61955
62344
|
|
|
61956
62345
|
|
|
61957
62346
|
|
|
@@ -61980,7 +62369,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
61980
62369
|
settings: settings,
|
|
61981
62370
|
message: default_message,
|
|
61982
62371
|
notice: default_notice,
|
|
61983
|
-
online: online
|
|
62372
|
+
online: online,
|
|
62373
|
+
search: public_search
|
|
61984
62374
|
},
|
|
61985
62375
|
props: {
|
|
61986
62376
|
jobScrollbar: Boolean,
|
|
@@ -61990,7 +62380,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
61990
62380
|
//菜单展开关闭图标
|
|
61991
62381
|
icons: Object,
|
|
61992
62382
|
//菜单前置默认图标
|
|
61993
|
-
menuIcon:
|
|
62383
|
+
menuIcon: {
|
|
62384
|
+
type: String,
|
|
62385
|
+
default: 'es-icon-application'
|
|
62386
|
+
},
|
|
61994
62387
|
//子菜单是否显示前置图标
|
|
61995
62388
|
subIcon: {
|
|
61996
62389
|
type: Boolean,
|
|
@@ -62328,6 +62721,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
62328
62721
|
showMsg: false,
|
|
62329
62722
|
//即时消息
|
|
62330
62723
|
sysMsg: [],
|
|
62724
|
+
//搜索
|
|
62725
|
+
showSearch: false,
|
|
62331
62726
|
//定时关闭及时消息对象
|
|
62332
62727
|
sysMsgOut: null,
|
|
62333
62728
|
//额外信息数据
|
|
@@ -63385,6 +63780,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63385
63780
|
case 'set':
|
|
63386
63781
|
this.handleSet();
|
|
63387
63782
|
break;
|
|
63783
|
+
case 'search':
|
|
63784
|
+
this.showSearch = true;
|
|
63785
|
+
this.showMsg = false;
|
|
63786
|
+
break;
|
|
63388
63787
|
case 'goView':
|
|
63389
63788
|
utils_util["a" /* default */].win.open(res.path, '_blank');
|
|
63390
63789
|
break;
|
|
@@ -63705,6 +64104,14 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63705
64104
|
var n = parseInt(this.menuTips[id], 10) - 1;
|
|
63706
64105
|
this.$set(this.menuTips, id, n);
|
|
63707
64106
|
}
|
|
64107
|
+
},
|
|
64108
|
+
|
|
64109
|
+
//搜索
|
|
64110
|
+
handleOnSearch: function handleOnSearch(res, parent) {
|
|
64111
|
+
this.showSearch = false;
|
|
64112
|
+
if (parent.name === '菜单') {
|
|
64113
|
+
this.jumpMenu(res.appCode);
|
|
64114
|
+
}
|
|
63708
64115
|
}
|
|
63709
64116
|
},
|
|
63710
64117
|
beforeDestroy: function beforeDestroy() {
|
|
@@ -63727,8 +64134,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
63727
64134
|
|
|
63728
64135
|
var default_component = normalizeComponent(
|
|
63729
64136
|
src_defaultvue_type_script_lang_js_,
|
|
63730
|
-
|
|
63731
|
-
|
|
64137
|
+
defaultvue_type_template_id_40cb21f4_render,
|
|
64138
|
+
defaultvue_type_template_id_40cb21f4_staticRenderFns,
|
|
63732
64139
|
false,
|
|
63733
64140
|
null,
|
|
63734
64141
|
null,
|
|
@@ -66754,19 +67161,19 @@ var QRCode = __webpack_require__(23);
|
|
|
66754
67161
|
//设置logo大小
|
|
66755
67162
|
var logoPosition = (_this3.mwidth - 46) / 2; //logo相对于canvas居中定位
|
|
66756
67163
|
//设置获取的logo将其变为圆角以及添加白色背景
|
|
66757
|
-
/* ctx.fillStyle = "#fff";
|
|
66758
|
-
ctx.beginPath();
|
|
66759
|
-
let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
|
|
66760
|
-
let w = 46; //圆角宽
|
|
66761
|
-
let x = logoPosition - 5;
|
|
66762
|
-
let y = logoPosition - 5;
|
|
66763
|
-
let r = 5; //圆角半径
|
|
66764
|
-
ctx.moveTo(x + r, y);
|
|
66765
|
-
ctx.arcTo(x + w, y, x + w, y + h, r);
|
|
66766
|
-
ctx.arcTo(x + w, y + h, x, y + h, r);
|
|
66767
|
-
ctx.arcTo(x, y + h, x, y, r);
|
|
66768
|
-
ctx.arcTo(x, y, x + w, y, r);
|
|
66769
|
-
ctx.closePath();
|
|
67164
|
+
/* ctx.fillStyle = "#fff";
|
|
67165
|
+
ctx.beginPath();
|
|
67166
|
+
let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
|
|
67167
|
+
let w = 46; //圆角宽
|
|
67168
|
+
let x = logoPosition - 5;
|
|
67169
|
+
let y = logoPosition - 5;
|
|
67170
|
+
let r = 5; //圆角半径
|
|
67171
|
+
ctx.moveTo(x + r, y);
|
|
67172
|
+
ctx.arcTo(x + w, y, x + w, y + h, r);
|
|
67173
|
+
ctx.arcTo(x + w, y + h, x, y + h, r);
|
|
67174
|
+
ctx.arcTo(x, y + h, x, y, r);
|
|
67175
|
+
ctx.arcTo(x, y, x + w, y, r);
|
|
67176
|
+
ctx.closePath();
|
|
66770
67177
|
ctx.fill(); */
|
|
66771
67178
|
logo.onload = function () {
|
|
66772
67179
|
ctx.drawImage(logo, logoPosition, logoPosition, 46, 46);
|
|
@@ -69137,8 +69544,8 @@ select_ganged_src_main.install = function (Vue) {
|
|
|
69137
69544
|
};
|
|
69138
69545
|
|
|
69139
69546
|
/* harmony default export */ var select_ganged = (select_ganged_src_main);
|
|
69140
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=
|
|
69141
|
-
var
|
|
69547
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=ed4f9db4&
|
|
69548
|
+
var mainvue_type_template_id_ed4f9db4_render = function () {
|
|
69142
69549
|
var _vm = this
|
|
69143
69550
|
var _h = _vm.$createElement
|
|
69144
69551
|
var _c = _vm._self._c || _h
|
|
@@ -69170,7 +69577,13 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69170
69577
|
_vm.button,
|
|
69171
69578
|
false
|
|
69172
69579
|
),
|
|
69173
|
-
[
|
|
69580
|
+
[
|
|
69581
|
+
_vm._t("default", [
|
|
69582
|
+
_vm.icon
|
|
69583
|
+
? _c("es-icon", { attrs: { contents: _vm.icon } })
|
|
69584
|
+
: [_vm._v("选择")],
|
|
69585
|
+
]),
|
|
69586
|
+
],
|
|
69174
69587
|
2
|
|
69175
69588
|
)
|
|
69176
69589
|
: [
|
|
@@ -69430,7 +69843,14 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69430
69843
|
},
|
|
69431
69844
|
[
|
|
69432
69845
|
_vm._t("default", [
|
|
69433
|
-
_vm.
|
|
69846
|
+
_vm.icon
|
|
69847
|
+
? _c("es-icon", {
|
|
69848
|
+
attrs: {
|
|
69849
|
+
contents:
|
|
69850
|
+
_vm.icon,
|
|
69851
|
+
},
|
|
69852
|
+
})
|
|
69853
|
+
: [_vm._v("选择")],
|
|
69434
69854
|
]),
|
|
69435
69855
|
],
|
|
69436
69856
|
2
|
|
@@ -69525,7 +69945,14 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69525
69945
|
},
|
|
69526
69946
|
[
|
|
69527
69947
|
_vm._t("default", [
|
|
69528
|
-
_vm.
|
|
69948
|
+
_vm.icon
|
|
69949
|
+
? _c("es-icon", {
|
|
69950
|
+
attrs: {
|
|
69951
|
+
contents:
|
|
69952
|
+
_vm.icon,
|
|
69953
|
+
},
|
|
69954
|
+
})
|
|
69955
|
+
: [_vm._v("选择")],
|
|
69529
69956
|
]),
|
|
69530
69957
|
],
|
|
69531
69958
|
2
|
|
@@ -69690,11 +70117,11 @@ var mainvue_type_template_id_0fb46944_render = function () {
|
|
|
69690
70117
|
)
|
|
69691
70118
|
: _vm._e()
|
|
69692
70119
|
}
|
|
69693
|
-
var
|
|
69694
|
-
|
|
70120
|
+
var mainvue_type_template_id_ed4f9db4_staticRenderFns = []
|
|
70121
|
+
mainvue_type_template_id_ed4f9db4_render._withStripped = true
|
|
69695
70122
|
|
|
69696
70123
|
|
|
69697
|
-
// CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=
|
|
70124
|
+
// CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=ed4f9db4&
|
|
69698
70125
|
|
|
69699
70126
|
// EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
|
|
69700
70127
|
var clickoutside_ = __webpack_require__(16);
|
|
@@ -69914,6 +70341,17 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
69914
70341
|
//
|
|
69915
70342
|
//
|
|
69916
70343
|
//
|
|
70344
|
+
//
|
|
70345
|
+
//
|
|
70346
|
+
//
|
|
70347
|
+
//
|
|
70348
|
+
//
|
|
70349
|
+
//
|
|
70350
|
+
//
|
|
70351
|
+
//
|
|
70352
|
+
//
|
|
70353
|
+
//
|
|
70354
|
+
//
|
|
69917
70355
|
|
|
69918
70356
|
|
|
69919
70357
|
|
|
@@ -70020,6 +70458,7 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
70020
70458
|
default: false
|
|
70021
70459
|
},
|
|
70022
70460
|
button: Object,
|
|
70461
|
+
icon: String,
|
|
70023
70462
|
active: String,
|
|
70024
70463
|
keywords: {
|
|
70025
70464
|
type: String,
|
|
@@ -70376,8 +70815,8 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
|
70376
70815
|
|
|
70377
70816
|
var selector_src_main_component = normalizeComponent(
|
|
70378
70817
|
packages_selector_src_mainvue_type_script_lang_js_,
|
|
70379
|
-
|
|
70380
|
-
|
|
70818
|
+
mainvue_type_template_id_ed4f9db4_render,
|
|
70819
|
+
mainvue_type_template_id_ed4f9db4_staticRenderFns,
|
|
70381
70820
|
false,
|
|
70382
70821
|
null,
|
|
70383
70822
|
null,
|
|
@@ -70394,8 +70833,8 @@ selector_src_main.install = function (Vue) {
|
|
|
70394
70833
|
};
|
|
70395
70834
|
|
|
70396
70835
|
/* harmony default export */ var selector = (selector_src_main);
|
|
70397
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=
|
|
70398
|
-
var
|
|
70836
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
|
|
70837
|
+
var mainvue_type_template_id_4caee95f_render = function () {
|
|
70399
70838
|
var _vm = this
|
|
70400
70839
|
var _h = _vm.$createElement
|
|
70401
70840
|
var _c = _vm._self._c || _h
|
|
@@ -70658,11 +71097,11 @@ var mainvue_type_template_id_e434ebf2_render = function () {
|
|
|
70658
71097
|
1
|
|
70659
71098
|
)
|
|
70660
71099
|
}
|
|
70661
|
-
var
|
|
70662
|
-
|
|
71100
|
+
var mainvue_type_template_id_4caee95f_staticRenderFns = []
|
|
71101
|
+
mainvue_type_template_id_4caee95f_render._withStripped = true
|
|
70663
71102
|
|
|
70664
71103
|
|
|
70665
|
-
// CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=
|
|
71104
|
+
// CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
|
|
70666
71105
|
|
|
70667
71106
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/tree.vue?vue&type=template&id=24ad732a&
|
|
70668
71107
|
var treevue_type_template_id_24ad732a_render = function () {
|
|
@@ -71833,7 +72272,6 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
|
|
|
71833
72272
|
if (this.replace) {
|
|
71834
72273
|
return this.tabs;
|
|
71835
72274
|
} else {
|
|
71836
|
-
console.log(utils_util["a" /* default */].extend(true, tabs, this.tabs), 'this.tabs');
|
|
71837
72275
|
return utils_util["a" /* default */].extend(true, tabs, this.tabs);
|
|
71838
72276
|
}
|
|
71839
72277
|
}
|
|
@@ -72280,8 +72718,8 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
|
|
|
72280
72718
|
|
|
72281
72719
|
var selector_panel_src_main_component = normalizeComponent(
|
|
72282
72720
|
packages_selector_panel_src_mainvue_type_script_lang_js_,
|
|
72283
|
-
|
|
72284
|
-
|
|
72721
|
+
mainvue_type_template_id_4caee95f_render,
|
|
72722
|
+
mainvue_type_template_id_4caee95f_staticRenderFns,
|
|
72285
72723
|
false,
|
|
72286
72724
|
null,
|
|
72287
72725
|
null,
|
|
@@ -82971,7 +83409,7 @@ var upload_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
|
|
|
82971
83409
|
|
|
82972
83410
|
var upload_src_mainvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
82973
83411
|
|
|
82974
|
-
var
|
|
83412
|
+
var mainvue_type_script_lang_js_props;
|
|
82975
83413
|
|
|
82976
83414
|
//
|
|
82977
83415
|
//
|
|
@@ -83186,7 +83624,7 @@ var _props;
|
|
|
83186
83624
|
default: ''
|
|
83187
83625
|
}
|
|
83188
83626
|
},
|
|
83189
|
-
props: (
|
|
83627
|
+
props: (mainvue_type_script_lang_js_props = {
|
|
83190
83628
|
prepend: [Array, Object],
|
|
83191
83629
|
append: [Array, Object],
|
|
83192
83630
|
render: Function,
|
|
@@ -83348,28 +83786,28 @@ var _props;
|
|
|
83348
83786
|
beforeRemove: Function,
|
|
83349
83787
|
onDownloads: Function,
|
|
83350
83788
|
onDownload: Function
|
|
83351
|
-
},
|
|
83789
|
+
}, mainvue_type_script_lang_js_props['onSort'] = Function, mainvue_type_script_lang_js_props.onSuccess = Function, mainvue_type_script_lang_js_props.onChange = Function, mainvue_type_script_lang_js_props.onRemove = Function, mainvue_type_script_lang_js_props.onError = Function, mainvue_type_script_lang_js_props.dangerouslyUseHTMLString = Boolean, mainvue_type_script_lang_js_props.fileCount = Number, mainvue_type_script_lang_js_props.listHeight = String, mainvue_type_script_lang_js_props.display = Boolean, mainvue_type_script_lang_js_props.resultFile = {
|
|
83352
83790
|
type: Boolean,
|
|
83353
83791
|
default: true
|
|
83354
|
-
},
|
|
83792
|
+
}, mainvue_type_script_lang_js_props.properties = {
|
|
83355
83793
|
type: String,
|
|
83356
83794
|
default: function _default() {
|
|
83357
83795
|
return api["B" /* getAdjunctProperties */];
|
|
83358
83796
|
}
|
|
83359
|
-
},
|
|
83797
|
+
}, mainvue_type_script_lang_js_props.icons = {
|
|
83360
83798
|
type: Object,
|
|
83361
83799
|
default: function _default() {
|
|
83362
83800
|
return {};
|
|
83363
83801
|
}
|
|
83364
|
-
},
|
|
83802
|
+
}, mainvue_type_script_lang_js_props.picture = {
|
|
83365
83803
|
type: Object,
|
|
83366
83804
|
default: function _default() {
|
|
83367
83805
|
return {};
|
|
83368
83806
|
}
|
|
83369
|
-
},
|
|
83807
|
+
}, mainvue_type_script_lang_js_props.previewScale = {
|
|
83370
83808
|
type: Boolean,
|
|
83371
83809
|
default: true
|
|
83372
|
-
},
|
|
83810
|
+
}, mainvue_type_script_lang_js_props.useCaseCode = String, mainvue_type_script_lang_js_props),
|
|
83373
83811
|
data: function data() {
|
|
83374
83812
|
return {
|
|
83375
83813
|
uploadUrl: this.action,
|
|
@@ -84603,7 +85041,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
84603
85041
|
}
|
|
84604
85042
|
|
|
84605
85043
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
84606
|
-
version: '0.6.
|
|
85044
|
+
version: '0.6.41',
|
|
84607
85045
|
install: install,
|
|
84608
85046
|
Button: packages_button,
|
|
84609
85047
|
ButtonGroup: button_group,
|