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/flow.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;
|
|
@@ -4305,7 +4347,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4305
4347
|
// ESM COMPAT FLAG
|
|
4306
4348
|
__webpack_require__.r(__webpack_exports__);
|
|
4307
4349
|
|
|
4308
|
-
// 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=
|
|
4350
|
+
// 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&
|
|
4309
4351
|
var render = function () {
|
|
4310
4352
|
var _vm = this
|
|
4311
4353
|
var _h = _vm.$createElement
|
|
@@ -6416,7 +6458,7 @@ var staticRenderFns = []
|
|
|
6416
6458
|
render._withStripped = true
|
|
6417
6459
|
|
|
6418
6460
|
|
|
6419
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
6461
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5d052dc2&
|
|
6420
6462
|
|
|
6421
6463
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
6422
6464
|
var regenerator_ = __webpack_require__(14);
|
|
@@ -7229,21 +7271,21 @@ var _components;
|
|
|
7229
7271
|
return validSate;
|
|
7230
7272
|
},
|
|
7231
7273
|
|
|
7232
|
-
/**
|
|
7233
|
-
* changeOpinion
|
|
7234
|
-
* @desc:监听意见变化
|
|
7235
|
-
* @author liufan
|
|
7236
|
-
* @date 2022年10月28日
|
|
7274
|
+
/**
|
|
7275
|
+
* changeOpinion
|
|
7276
|
+
* @desc:监听意见变化
|
|
7277
|
+
* @author liufan
|
|
7278
|
+
* @date 2022年10月28日
|
|
7237
7279
|
**/
|
|
7238
7280
|
changeOpinion: function changeOpinion() {
|
|
7239
7281
|
this.$emit('change', this.form.value);
|
|
7240
7282
|
},
|
|
7241
7283
|
|
|
7242
|
-
/**
|
|
7243
|
-
* getCommonOpion
|
|
7244
|
-
* @desc:获取意见
|
|
7245
|
-
* @author liufan
|
|
7246
|
-
* @date 2022年5月25日
|
|
7284
|
+
/**
|
|
7285
|
+
* getCommonOpion
|
|
7286
|
+
* @desc:获取意见
|
|
7287
|
+
* @author liufan
|
|
7288
|
+
* @date 2022年5月25日
|
|
7247
7289
|
**/
|
|
7248
7290
|
getCommonOpion: function getCommonOpion() {
|
|
7249
7291
|
var _this = this;
|
|
@@ -7272,24 +7314,24 @@ var _components;
|
|
|
7272
7314
|
});
|
|
7273
7315
|
},
|
|
7274
7316
|
|
|
7275
|
-
/**
|
|
7276
|
-
* upDate
|
|
7277
|
-
* @desc:修改常用语
|
|
7278
|
-
* @author liufan
|
|
7279
|
-
* @param {Object} val 修改值
|
|
7280
|
-
* @date 2022年5月25日
|
|
7317
|
+
/**
|
|
7318
|
+
* upDate
|
|
7319
|
+
* @desc:修改常用语
|
|
7320
|
+
* @author liufan
|
|
7321
|
+
* @param {Object} val 修改值
|
|
7322
|
+
* @date 2022年5月25日
|
|
7281
7323
|
**/
|
|
7282
7324
|
upDate: function upDate(val) {
|
|
7283
7325
|
this.FormData.id = val.id;
|
|
7284
7326
|
this.addVisible = true;
|
|
7285
7327
|
},
|
|
7286
7328
|
|
|
7287
|
-
/**
|
|
7288
|
-
* selectChange
|
|
7289
|
-
* @desc:常用语选择
|
|
7290
|
-
* @author liufan
|
|
7291
|
-
* @param {String} val 选中值
|
|
7292
|
-
* @date 2022年5月25日
|
|
7329
|
+
/**
|
|
7330
|
+
* selectChange
|
|
7331
|
+
* @desc:常用语选择
|
|
7332
|
+
* @author liufan
|
|
7333
|
+
* @param {String} val 选中值
|
|
7334
|
+
* @date 2022年5月25日
|
|
7293
7335
|
**/
|
|
7294
7336
|
selectChange: function selectChange(val) {
|
|
7295
7337
|
var _this2 = this;
|
|
@@ -7308,12 +7350,12 @@ var _components;
|
|
|
7308
7350
|
});
|
|
7309
7351
|
},
|
|
7310
7352
|
|
|
7311
|
-
/**
|
|
7312
|
-
* del
|
|
7313
|
-
* @desc:删除常用语
|
|
7314
|
-
* @author liufan
|
|
7315
|
-
* @param {Object} val 删除的数据
|
|
7316
|
-
* @date 2022年5月25日
|
|
7353
|
+
/**
|
|
7354
|
+
* del
|
|
7355
|
+
* @desc:删除常用语
|
|
7356
|
+
* @author liufan
|
|
7357
|
+
* @param {Object} val 删除的数据
|
|
7358
|
+
* @date 2022年5月25日
|
|
7317
7359
|
**/
|
|
7318
7360
|
del: function del(val) {
|
|
7319
7361
|
var _this3 = this;
|
|
@@ -7355,12 +7397,12 @@ var _components;
|
|
|
7355
7397
|
}).catch(function (e) {});
|
|
7356
7398
|
},
|
|
7357
7399
|
|
|
7358
|
-
/**
|
|
7359
|
-
* submit
|
|
7360
|
-
* @desc:新增/编辑意见保存
|
|
7361
|
-
* @author liufan
|
|
7362
|
-
* @param {Object} val 保存数据
|
|
7363
|
-
* @date 2022年5月25日
|
|
7400
|
+
/**
|
|
7401
|
+
* submit
|
|
7402
|
+
* @desc:新增/编辑意见保存
|
|
7403
|
+
* @author liufan
|
|
7404
|
+
* @param {Object} val 保存数据
|
|
7405
|
+
* @date 2022年5月25日
|
|
7364
7406
|
**/
|
|
7365
7407
|
submit: function submit(val) {
|
|
7366
7408
|
var _this4 = this;
|
|
@@ -7425,8 +7467,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
|
|
|
7425
7467
|
)
|
|
7426
7468
|
|
|
7427
7469
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
7428
|
-
// 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=
|
|
7429
|
-
var
|
|
7470
|
+
// 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&
|
|
7471
|
+
var processFormvue_type_template_id_4c3e6186_render = function () {
|
|
7430
7472
|
var _vm = this
|
|
7431
7473
|
var _h = _vm.$createElement
|
|
7432
7474
|
var _c = _vm._self._c || _h
|
|
@@ -7947,11 +7989,11 @@ var processFormvue_type_template_id_3ec67af0_render = function () {
|
|
|
7947
7989
|
1
|
|
7948
7990
|
)
|
|
7949
7991
|
}
|
|
7950
|
-
var
|
|
7951
|
-
|
|
7992
|
+
var processFormvue_type_template_id_4c3e6186_staticRenderFns = []
|
|
7993
|
+
processFormvue_type_template_id_4c3e6186_render._withStripped = true
|
|
7952
7994
|
|
|
7953
7995
|
|
|
7954
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
7996
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=4c3e6186&
|
|
7955
7997
|
|
|
7956
7998
|
// 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&
|
|
7957
7999
|
var selectUservue_type_template_id_615d0e78_render = function () {
|
|
@@ -9830,7 +9872,6 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9830
9872
|
this.getUserInfo();
|
|
9831
9873
|
},
|
|
9832
9874
|
mounted: function mounted() {
|
|
9833
|
-
console.log('发起流程开始');
|
|
9834
9875
|
this.getNodeType();
|
|
9835
9876
|
this.getStartFlow(this.processDefinitionId);
|
|
9836
9877
|
this.newOpinion = this.opinion;
|
|
@@ -10064,7 +10105,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10064
10105
|
newParm.submitTaskParamJson = JSON.stringify(_this4.taskParams);
|
|
10065
10106
|
params = newParm;
|
|
10066
10107
|
}
|
|
10067
|
-
util["a" /* default */].ajax({
|
|
10108
|
+
util["a" /* default */].ajax({
|
|
10109
|
+
url: _this4.isFreeStartFlow ? api["z" /* freeStartFlowWithSubmitTask */] : api["pb" /* register */],
|
|
10110
|
+
method: 'post',
|
|
10111
|
+
data: params
|
|
10112
|
+
}).then(function (res) {
|
|
10068
10113
|
var status = res.status,
|
|
10069
10114
|
message = res.message;
|
|
10070
10115
|
|
|
@@ -10209,11 +10254,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10209
10254
|
});
|
|
10210
10255
|
},
|
|
10211
10256
|
|
|
10212
|
-
/**
|
|
10213
|
-
* isMultiple
|
|
10214
|
-
* @desc:是否多选
|
|
10215
|
-
* @author liufan
|
|
10216
|
-
* @date 2022年9月13日
|
|
10257
|
+
/**
|
|
10258
|
+
* isMultiple
|
|
10259
|
+
* @desc:是否多选
|
|
10260
|
+
* @author liufan
|
|
10261
|
+
* @date 2022年9月13日
|
|
10217
10262
|
**/
|
|
10218
10263
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
10219
10264
|
var multiple = false;
|
|
@@ -10366,8 +10411,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10366
10411
|
|
|
10367
10412
|
var processForm_component = Object(componentNormalizer["a" /* default */])(
|
|
10368
10413
|
src_processFormvue_type_script_lang_js_,
|
|
10369
|
-
|
|
10370
|
-
|
|
10414
|
+
processFormvue_type_template_id_4c3e6186_render,
|
|
10415
|
+
processFormvue_type_template_id_4c3e6186_staticRenderFns,
|
|
10371
10416
|
false,
|
|
10372
10417
|
null,
|
|
10373
10418
|
null,
|
|
@@ -12865,8 +12910,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
|
12865
12910
|
)
|
|
12866
12911
|
|
|
12867
12912
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
12868
|
-
// 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=
|
|
12869
|
-
var
|
|
12913
|
+
// 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&
|
|
12914
|
+
var resetvue_type_template_id_2b7d4b66_render = function () {
|
|
12870
12915
|
var _vm = this
|
|
12871
12916
|
var _h = _vm.$createElement
|
|
12872
12917
|
var _c = _vm._self._c || _h
|
|
@@ -13297,11 +13342,11 @@ var resetvue_type_template_id_138bb789_render = function () {
|
|
|
13297
13342
|
1
|
|
13298
13343
|
)
|
|
13299
13344
|
}
|
|
13300
|
-
var
|
|
13301
|
-
|
|
13345
|
+
var resetvue_type_template_id_2b7d4b66_staticRenderFns = []
|
|
13346
|
+
resetvue_type_template_id_2b7d4b66_render._withStripped = true
|
|
13302
13347
|
|
|
13303
13348
|
|
|
13304
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
13349
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=2b7d4b66&
|
|
13305
13350
|
|
|
13306
13351
|
// 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&
|
|
13307
13352
|
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; };
|
|
@@ -14024,11 +14069,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
14024
14069
|
});
|
|
14025
14070
|
},
|
|
14026
14071
|
|
|
14027
|
-
/**
|
|
14028
|
-
* isMultiple
|
|
14029
|
-
* @desc:是否多选
|
|
14030
|
-
* @author liufan
|
|
14031
|
-
* @date 2022年9月13日
|
|
14072
|
+
/**
|
|
14073
|
+
* isMultiple
|
|
14074
|
+
* @desc:是否多选
|
|
14075
|
+
* @author liufan
|
|
14076
|
+
* @date 2022年9月13日
|
|
14032
14077
|
**/
|
|
14033
14078
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
14034
14079
|
var multiple = false;
|
|
@@ -14083,7 +14128,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
14083
14128
|
_this7.readOnlyNotificationType = data.readOnlyNotificationType;
|
|
14084
14129
|
_this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
|
|
14085
14130
|
var flowList = [];
|
|
14086
|
-
console.log(data.taskNodeList);
|
|
14087
14131
|
if (data.taskNodeList && data.taskNodeList.length > 0) {
|
|
14088
14132
|
for (var key in data.taskNodeList[0]) {
|
|
14089
14133
|
flowList.push({
|
|
@@ -14101,7 +14145,6 @@ var resetvue_type_script_lang_js_components;
|
|
|
14101
14145
|
}
|
|
14102
14146
|
|
|
14103
14147
|
_this7.nextNode.nodeInfo = flowList;
|
|
14104
|
-
console.log(_this7.nextNode.nodeInfo, 'this.nextNode.nodeInfo');
|
|
14105
14148
|
_this7.nextNode.nextNode = flowList[0].nodeId;
|
|
14106
14149
|
_this7.taskExamine = data.taskExamine;
|
|
14107
14150
|
_this7.processDefinitionId = data.taskExamine.processDefinitionId;
|
|
@@ -14161,8 +14204,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
14161
14204
|
|
|
14162
14205
|
var reset_component = Object(componentNormalizer["a" /* default */])(
|
|
14163
14206
|
src_resetvue_type_script_lang_js_,
|
|
14164
|
-
|
|
14165
|
-
|
|
14207
|
+
resetvue_type_template_id_2b7d4b66_render,
|
|
14208
|
+
resetvue_type_template_id_2b7d4b66_staticRenderFns,
|
|
14166
14209
|
false,
|
|
14167
14210
|
null,
|
|
14168
14211
|
null,
|
|
@@ -14171,8 +14214,8 @@ var reset_component = Object(componentNormalizer["a" /* default */])(
|
|
|
14171
14214
|
)
|
|
14172
14215
|
|
|
14173
14216
|
/* harmony default export */ var src_reset = (reset_component.exports);
|
|
14174
|
-
// 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=
|
|
14175
|
-
var
|
|
14217
|
+
// 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&
|
|
14218
|
+
var taskUnionExaminevue_type_template_id_3d269602_render = function () {
|
|
14176
14219
|
var _vm = this
|
|
14177
14220
|
var _h = _vm.$createElement
|
|
14178
14221
|
var _c = _vm._self._c || _h
|
|
@@ -14411,7 +14454,7 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
14411
14454
|
attrs: { type: "primary", size: "small" },
|
|
14412
14455
|
on: { click: _vm.subMit },
|
|
14413
14456
|
},
|
|
14414
|
-
[_vm._v("
|
|
14457
|
+
[_vm._v(" 确定 ")]
|
|
14415
14458
|
),
|
|
14416
14459
|
_c(
|
|
14417
14460
|
"el-button",
|
|
@@ -14425,11 +14468,11 @@ var taskUnionExaminevue_type_template_id_e8b3de86_render = function () {
|
|
|
14425
14468
|
1
|
|
14426
14469
|
)
|
|
14427
14470
|
}
|
|
14428
|
-
var
|
|
14429
|
-
|
|
14471
|
+
var taskUnionExaminevue_type_template_id_3d269602_staticRenderFns = []
|
|
14472
|
+
taskUnionExaminevue_type_template_id_3d269602_render._withStripped = true
|
|
14430
14473
|
|
|
14431
14474
|
|
|
14432
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=
|
|
14475
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=3d269602&
|
|
14433
14476
|
|
|
14434
14477
|
// 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&
|
|
14435
14478
|
var taskUnionExaminevue_type_script_lang_js_components;
|
|
@@ -14563,9 +14606,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14563
14606
|
//
|
|
14564
14607
|
//
|
|
14565
14608
|
//
|
|
14566
|
-
//
|
|
14567
|
-
//
|
|
14568
|
-
//
|
|
14569
14609
|
|
|
14570
14610
|
|
|
14571
14611
|
|
|
@@ -14747,7 +14787,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14747
14787
|
_this3.currentOrgTabs = res.data.customizedConfig.currentOrgSelectorItemList.split(',');
|
|
14748
14788
|
var param = res.data.customizedConfig.currentOrgSelectorRangeList.split(',');
|
|
14749
14789
|
_this3.currentOrgTabs.map(function (x, i) {
|
|
14750
|
-
_this3.params[x] = {
|
|
14790
|
+
_this3.params[x] = {
|
|
14791
|
+
filid: param[i] == 'my' ? _this3.params.filid = JSON.parse(sessionStorage.getItem('mainConfig')).userModel.orgId : param[i]
|
|
14792
|
+
};
|
|
14751
14793
|
});
|
|
14752
14794
|
} else {
|
|
14753
14795
|
if (_this3.type == 'takeAdvice') {
|
|
@@ -14851,7 +14893,6 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14851
14893
|
method: 'POST'
|
|
14852
14894
|
};
|
|
14853
14895
|
this.loading = true;
|
|
14854
|
-
console.log(param.data, nextCurrentOrgObj, 'data');
|
|
14855
14896
|
util["a" /* default */].ajax(param).then(function (res) {
|
|
14856
14897
|
var message = res.message,
|
|
14857
14898
|
status = res.status;
|
|
@@ -14986,8 +15027,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14986
15027
|
|
|
14987
15028
|
var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
14988
15029
|
component_taskUnionExaminevue_type_script_lang_js_,
|
|
14989
|
-
|
|
14990
|
-
|
|
15030
|
+
taskUnionExaminevue_type_template_id_3d269602_render,
|
|
15031
|
+
taskUnionExaminevue_type_template_id_3d269602_staticRenderFns,
|
|
14991
15032
|
false,
|
|
14992
15033
|
null,
|
|
14993
15034
|
null,
|
|
@@ -18394,11 +18435,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18394
18435
|
});
|
|
18395
18436
|
},
|
|
18396
18437
|
|
|
18397
|
-
/**
|
|
18398
|
-
* saveInfo
|
|
18399
|
-
* @desc:暂存
|
|
18400
|
-
* @author liufan
|
|
18401
|
-
* @date 2022年9月9日
|
|
18438
|
+
/**
|
|
18439
|
+
* saveInfo
|
|
18440
|
+
* @desc:暂存
|
|
18441
|
+
* @author liufan
|
|
18442
|
+
* @date 2022年9月9日
|
|
18402
18443
|
**/
|
|
18403
18444
|
saveInfo: function saveInfo(type, btn) {
|
|
18404
18445
|
var _this6 = this;
|
|
@@ -18460,11 +18501,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18460
18501
|
});
|
|
18461
18502
|
},
|
|
18462
18503
|
|
|
18463
|
-
/**
|
|
18464
|
-
* rejectBtn
|
|
18465
|
-
* @desc:点击驳回
|
|
18466
|
-
* @author liufan
|
|
18467
|
-
* @date 2022年5月25日
|
|
18504
|
+
/**
|
|
18505
|
+
* rejectBtn
|
|
18506
|
+
* @desc:点击驳回
|
|
18507
|
+
* @author liufan
|
|
18508
|
+
* @date 2022年5月25日
|
|
18468
18509
|
**/
|
|
18469
18510
|
rejectBtn: function rejectBtn() {
|
|
18470
18511
|
var _this8 = this;
|
|
@@ -18482,11 +18523,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18482
18523
|
}
|
|
18483
18524
|
},
|
|
18484
18525
|
|
|
18485
|
-
/**
|
|
18486
|
-
* taskReadBtn
|
|
18487
|
-
* @desc:点击分阅
|
|
18488
|
-
* @author liufan
|
|
18489
|
-
* @date 2022年5月25日
|
|
18526
|
+
/**
|
|
18527
|
+
* taskReadBtn
|
|
18528
|
+
* @desc:点击分阅
|
|
18529
|
+
* @author liufan
|
|
18530
|
+
* @date 2022年5月25日
|
|
18490
18531
|
**/
|
|
18491
18532
|
taskReadBtn: function taskReadBtn() {
|
|
18492
18533
|
var _this9 = this;
|
|
@@ -18505,11 +18546,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18505
18546
|
}
|
|
18506
18547
|
},
|
|
18507
18548
|
|
|
18508
|
-
/**
|
|
18509
|
-
* getFind
|
|
18510
|
-
* @desc:获取通知方式
|
|
18511
|
-
* @author liufan
|
|
18512
|
-
* @date 2022年5月25日
|
|
18549
|
+
/**
|
|
18550
|
+
* getFind
|
|
18551
|
+
* @desc:获取通知方式
|
|
18552
|
+
* @author liufan
|
|
18553
|
+
* @date 2022年5月25日
|
|
18513
18554
|
**/
|
|
18514
18555
|
getFind: function getFind() {
|
|
18515
18556
|
var _this10 = this;
|
|
@@ -18564,12 +18605,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18564
18605
|
});
|
|
18565
18606
|
},
|
|
18566
18607
|
|
|
18567
|
-
/**
|
|
18568
|
-
* endFlows
|
|
18569
|
-
* @desc:直接办结
|
|
18570
|
-
* @author liufan
|
|
18571
|
-
* @param {Object} res 直接办结数据
|
|
18572
|
-
* @date 2022年5月25日
|
|
18608
|
+
/**
|
|
18609
|
+
* endFlows
|
|
18610
|
+
* @desc:直接办结
|
|
18611
|
+
* @author liufan
|
|
18612
|
+
* @param {Object} res 直接办结数据
|
|
18613
|
+
* @date 2022年5月25日
|
|
18573
18614
|
**/
|
|
18574
18615
|
endFlows: function endFlows(res) {
|
|
18575
18616
|
var _this12 = this;
|
|
@@ -18623,12 +18664,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18623
18664
|
}).catch(function (e) {});
|
|
18624
18665
|
},
|
|
18625
18666
|
|
|
18626
|
-
/**
|
|
18627
|
-
* goView
|
|
18628
|
-
* @desc:更多流程按钮操作
|
|
18629
|
-
* @author liufan
|
|
18630
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
18631
|
-
* @date 2022年5月25日
|
|
18667
|
+
/**
|
|
18668
|
+
* goView
|
|
18669
|
+
* @desc:更多流程按钮操作
|
|
18670
|
+
* @author liufan
|
|
18671
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
18672
|
+
* @date 2022年5月25日
|
|
18632
18673
|
**/
|
|
18633
18674
|
goView: function goView(res) {
|
|
18634
18675
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -18713,11 +18754,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18713
18754
|
// isCanStartSubFlow
|
|
18714
18755
|
},
|
|
18715
18756
|
|
|
18716
|
-
/**
|
|
18717
|
-
* toTakeAdvice
|
|
18718
|
-
* @desc:征求意见
|
|
18719
|
-
* @author liufan
|
|
18720
|
-
* @date 2022年9月29日
|
|
18757
|
+
/**
|
|
18758
|
+
* toTakeAdvice
|
|
18759
|
+
* @desc:征求意见
|
|
18760
|
+
* @author liufan
|
|
18761
|
+
* @date 2022年9月29日
|
|
18721
18762
|
**/
|
|
18722
18763
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
18723
18764
|
var _this14 = this;
|
|
@@ -18761,11 +18802,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18761
18802
|
});
|
|
18762
18803
|
},
|
|
18763
18804
|
|
|
18764
|
-
/**
|
|
18765
|
-
* toStartDraf
|
|
18766
|
-
* @desc: 稿件递送、联合审核、复核
|
|
18767
|
-
* @author liufan
|
|
18768
|
-
* @date 2022年9月29日
|
|
18805
|
+
/**
|
|
18806
|
+
* toStartDraf
|
|
18807
|
+
* @desc: 稿件递送、联合审核、复核
|
|
18808
|
+
* @author liufan
|
|
18809
|
+
* @date 2022年9月29日
|
|
18769
18810
|
**/
|
|
18770
18811
|
toStartDraf: function toStartDraf(res) {
|
|
18771
18812
|
var _this16 = this;
|
|
@@ -18779,11 +18820,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18779
18820
|
}
|
|
18780
18821
|
},
|
|
18781
18822
|
|
|
18782
|
-
/**
|
|
18783
|
-
* toSendMsg
|
|
18784
|
-
* @desc:核稿通知
|
|
18785
|
-
* @author liufan
|
|
18786
|
-
* @date 2022年9月29日
|
|
18823
|
+
/**
|
|
18824
|
+
* toSendMsg
|
|
18825
|
+
* @desc:核稿通知
|
|
18826
|
+
* @author liufan
|
|
18827
|
+
* @date 2022年9月29日
|
|
18787
18828
|
**/
|
|
18788
18829
|
toSendMsg: function toSendMsg(res) {
|
|
18789
18830
|
var _this17 = this;
|
|
@@ -18797,11 +18838,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18797
18838
|
}
|
|
18798
18839
|
},
|
|
18799
18840
|
|
|
18800
|
-
/**
|
|
18801
|
-
* toTaskReadAndEnd
|
|
18802
|
-
* @desc:分阅并办结
|
|
18803
|
-
* @author liufan
|
|
18804
|
-
* @date 2022年9月29日
|
|
18841
|
+
/**
|
|
18842
|
+
* toTaskReadAndEnd
|
|
18843
|
+
* @desc:分阅并办结
|
|
18844
|
+
* @author liufan
|
|
18845
|
+
* @date 2022年9月29日
|
|
18805
18846
|
**/
|
|
18806
18847
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
18807
18848
|
var _this18 = this;
|
|
@@ -18819,11 +18860,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18819
18860
|
}
|
|
18820
18861
|
},
|
|
18821
18862
|
|
|
18822
|
-
/**
|
|
18823
|
-
* rejectAndEnd
|
|
18824
|
-
* @desc:驳回并办结
|
|
18825
|
-
* @author liufan
|
|
18826
|
-
* @date 2022年9月29日
|
|
18863
|
+
/**
|
|
18864
|
+
* rejectAndEnd
|
|
18865
|
+
* @desc:驳回并办结
|
|
18866
|
+
* @author liufan
|
|
18867
|
+
* @date 2022年9月29日
|
|
18827
18868
|
**/
|
|
18828
18869
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
18829
18870
|
var _this19 = this;
|
|
@@ -18878,11 +18919,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18878
18919
|
});
|
|
18879
18920
|
},
|
|
18880
18921
|
|
|
18881
|
-
/**
|
|
18882
|
-
* toTransfer
|
|
18883
|
-
* @desc:转办
|
|
18884
|
-
* @author liufan
|
|
18885
|
-
* @date 2022年9月29日
|
|
18922
|
+
/**
|
|
18923
|
+
* toTransfer
|
|
18924
|
+
* @desc:转办
|
|
18925
|
+
* @author liufan
|
|
18926
|
+
* @date 2022年9月29日
|
|
18886
18927
|
**/
|
|
18887
18928
|
toTransfer: function toTransfer(res) {
|
|
18888
18929
|
var _this21 = this;
|
|
@@ -18898,11 +18939,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18898
18939
|
}
|
|
18899
18940
|
},
|
|
18900
18941
|
|
|
18901
|
-
/**
|
|
18902
|
-
* getNodeInfo
|
|
18903
|
-
* @desc:获取节点信息
|
|
18904
|
-
* @author liufan
|
|
18905
|
-
* @date 2022年5月25日
|
|
18942
|
+
/**
|
|
18943
|
+
* getNodeInfo
|
|
18944
|
+
* @desc:获取节点信息
|
|
18945
|
+
* @author liufan
|
|
18946
|
+
* @date 2022年5月25日
|
|
18906
18947
|
**/
|
|
18907
18948
|
getNodeInfo: function getNodeInfo() {
|
|
18908
18949
|
var _this22 = this;
|
|
@@ -19001,12 +19042,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19001
19042
|
});
|
|
19002
19043
|
},
|
|
19003
19044
|
|
|
19004
|
-
/**
|
|
19005
|
-
* selecNext
|
|
19006
|
-
* @desc:下步节点变化时更新数据
|
|
19007
|
-
* @author liufan
|
|
19008
|
-
* @param {String} val 当前选中值
|
|
19009
|
-
* @date 2022年5月25日
|
|
19045
|
+
/**
|
|
19046
|
+
* selecNext
|
|
19047
|
+
* @desc:下步节点变化时更新数据
|
|
19048
|
+
* @author liufan
|
|
19049
|
+
* @param {String} val 当前选中值
|
|
19050
|
+
* @date 2022年5月25日
|
|
19010
19051
|
**/
|
|
19011
19052
|
selecNext: function selecNext(val, type, isDef) {
|
|
19012
19053
|
var _this23 = this;
|
|
@@ -19115,11 +19156,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19115
19156
|
if (isDef !== true) this.getNodeInfo();
|
|
19116
19157
|
},
|
|
19117
19158
|
|
|
19118
|
-
/**
|
|
19119
|
-
* isMultiple
|
|
19120
|
-
* @desc:是否多选
|
|
19121
|
-
* @author liufan
|
|
19122
|
-
* @date 2022年9月13日
|
|
19159
|
+
/**
|
|
19160
|
+
* isMultiple
|
|
19161
|
+
* @desc:是否多选
|
|
19162
|
+
* @author liufan
|
|
19163
|
+
* @date 2022年9月13日
|
|
19123
19164
|
**/
|
|
19124
19165
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
19125
19166
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -19151,11 +19192,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19151
19192
|
}
|
|
19152
19193
|
},
|
|
19153
19194
|
|
|
19154
|
-
/**
|
|
19155
|
-
* getHedInfo
|
|
19156
|
-
* @desc:获取审核页面数据
|
|
19157
|
-
* @author liufan
|
|
19158
|
-
* @date 2022年5月25日
|
|
19195
|
+
/**
|
|
19196
|
+
* getHedInfo
|
|
19197
|
+
* @desc:获取审核页面数据
|
|
19198
|
+
* @author liufan
|
|
19199
|
+
* @date 2022年5月25日
|
|
19159
19200
|
**/
|
|
19160
19201
|
getHedInfo: function getHedInfo() {
|
|
19161
19202
|
var _this24 = this;
|
|
@@ -19391,13 +19432,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19391
19432
|
});
|
|
19392
19433
|
},
|
|
19393
19434
|
|
|
19394
|
-
/**
|
|
19395
|
-
* closeProcess
|
|
19396
|
-
* @desc:关闭弹窗
|
|
19397
|
-
* @author liufan
|
|
19398
|
-
* @param {boolean} val 当前是否办理流程
|
|
19399
|
-
* @param {String} type 当前点击的弹窗类型
|
|
19400
|
-
* @date 2022年5月25日
|
|
19435
|
+
/**
|
|
19436
|
+
* closeProcess
|
|
19437
|
+
* @desc:关闭弹窗
|
|
19438
|
+
* @author liufan
|
|
19439
|
+
* @param {boolean} val 当前是否办理流程
|
|
19440
|
+
* @param {String} type 当前点击的弹窗类型
|
|
19441
|
+
* @date 2022年5月25日
|
|
19401
19442
|
**/
|
|
19402
19443
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
19403
19444
|
if (closeParent) {
|
|
@@ -19414,23 +19455,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19414
19455
|
}
|
|
19415
19456
|
},
|
|
19416
19457
|
|
|
19417
|
-
/**
|
|
19418
|
-
* selectChange
|
|
19419
|
-
* @desc:常用语选择
|
|
19420
|
-
* @author liufan
|
|
19421
|
-
* @param {String} val 选中值
|
|
19422
|
-
* @date 2022年5月25日
|
|
19458
|
+
/**
|
|
19459
|
+
* selectChange
|
|
19460
|
+
* @desc:常用语选择
|
|
19461
|
+
* @author liufan
|
|
19462
|
+
* @param {String} val 选中值
|
|
19463
|
+
* @date 2022年5月25日
|
|
19423
19464
|
**/
|
|
19424
19465
|
selectChange: function selectChange(val) {
|
|
19425
19466
|
this.value = val;
|
|
19426
19467
|
},
|
|
19427
19468
|
|
|
19428
|
-
/**
|
|
19429
|
-
* upDate
|
|
19430
|
-
* @desc:修改常用语
|
|
19431
|
-
* @author liufan
|
|
19432
|
-
* @param {Object} val 修改值
|
|
19433
|
-
* @date 2022年5月25日
|
|
19469
|
+
/**
|
|
19470
|
+
* upDate
|
|
19471
|
+
* @desc:修改常用语
|
|
19472
|
+
* @author liufan
|
|
19473
|
+
* @param {Object} val 修改值
|
|
19474
|
+
* @date 2022年5月25日
|
|
19434
19475
|
**/
|
|
19435
19476
|
upDate: function upDate(val) {
|
|
19436
19477
|
this.FormData.id = val.id;
|
|
@@ -19438,11 +19479,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19438
19479
|
},
|
|
19439
19480
|
|
|
19440
19481
|
|
|
19441
|
-
/**
|
|
19442
|
-
* getProcess
|
|
19443
|
-
* @desc:获取选择流程
|
|
19444
|
-
* @author liufan
|
|
19445
|
-
* @date 2022年5月25日
|
|
19482
|
+
/**
|
|
19483
|
+
* getProcess
|
|
19484
|
+
* @desc:获取选择流程
|
|
19485
|
+
* @author liufan
|
|
19486
|
+
* @date 2022年5月25日
|
|
19446
19487
|
**/
|
|
19447
19488
|
getProcess: function getProcess() {
|
|
19448
19489
|
var _this25 = this;
|
|
@@ -19496,11 +19537,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19496
19537
|
});
|
|
19497
19538
|
},
|
|
19498
19539
|
|
|
19499
|
-
/**
|
|
19500
|
-
* getPendedhistoryList
|
|
19501
|
-
* @desc:获取流程列表
|
|
19502
|
-
* @author liufan
|
|
19503
|
-
* @date 2022年5月25日
|
|
19540
|
+
/**
|
|
19541
|
+
* getPendedhistoryList
|
|
19542
|
+
* @desc:获取流程列表
|
|
19543
|
+
* @author liufan
|
|
19544
|
+
* @date 2022年5月25日
|
|
19504
19545
|
**/
|
|
19505
19546
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
19506
19547
|
var _this26 = this;
|
|
@@ -19532,12 +19573,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19532
19573
|
},
|
|
19533
19574
|
|
|
19534
19575
|
// 提交流程
|
|
19535
|
-
/**
|
|
19536
|
-
* subProcess
|
|
19537
|
-
* @desc:提交流程
|
|
19538
|
-
* @author liufan
|
|
19539
|
-
* @param {String} formName 当前form表单ref值
|
|
19540
|
-
* @date 2022年5月25日
|
|
19576
|
+
/**
|
|
19577
|
+
* subProcess
|
|
19578
|
+
* @desc:提交流程
|
|
19579
|
+
* @author liufan
|
|
19580
|
+
* @param {String} formName 当前form表单ref值
|
|
19581
|
+
* @date 2022年5月25日
|
|
19541
19582
|
**/
|
|
19542
19583
|
subProcess: function subProcess(val) {
|
|
19543
19584
|
var _this27 = this;
|
|
@@ -21110,11 +21151,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21110
21151
|
});
|
|
21111
21152
|
},
|
|
21112
21153
|
|
|
21113
|
-
/**
|
|
21114
|
-
* saveInfo
|
|
21115
|
-
* @desc:暂存
|
|
21116
|
-
* @author liufan
|
|
21117
|
-
* @date 2022年9月9日
|
|
21154
|
+
/**
|
|
21155
|
+
* saveInfo
|
|
21156
|
+
* @desc:暂存
|
|
21157
|
+
* @author liufan
|
|
21158
|
+
* @date 2022年9月9日
|
|
21118
21159
|
**/
|
|
21119
21160
|
saveInfo: function saveInfo(type, btn) {
|
|
21120
21161
|
var _this6 = this;
|
|
@@ -21176,11 +21217,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21176
21217
|
});
|
|
21177
21218
|
},
|
|
21178
21219
|
|
|
21179
|
-
/**
|
|
21180
|
-
* rejectBtn
|
|
21181
|
-
* @desc:点击驳回
|
|
21182
|
-
* @author liufan
|
|
21183
|
-
* @date 2022年5月25日
|
|
21220
|
+
/**
|
|
21221
|
+
* rejectBtn
|
|
21222
|
+
* @desc:点击驳回
|
|
21223
|
+
* @author liufan
|
|
21224
|
+
* @date 2022年5月25日
|
|
21184
21225
|
**/
|
|
21185
21226
|
rejectBtn: function rejectBtn() {
|
|
21186
21227
|
var _this8 = this;
|
|
@@ -21198,11 +21239,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21198
21239
|
}
|
|
21199
21240
|
},
|
|
21200
21241
|
|
|
21201
|
-
/**
|
|
21202
|
-
* taskReadBtn
|
|
21203
|
-
* @desc:点击分阅
|
|
21204
|
-
* @author liufan
|
|
21205
|
-
* @date 2022年5月25日
|
|
21242
|
+
/**
|
|
21243
|
+
* taskReadBtn
|
|
21244
|
+
* @desc:点击分阅
|
|
21245
|
+
* @author liufan
|
|
21246
|
+
* @date 2022年5月25日
|
|
21206
21247
|
**/
|
|
21207
21248
|
taskReadBtn: function taskReadBtn() {
|
|
21208
21249
|
var _this9 = this;
|
|
@@ -21221,11 +21262,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21221
21262
|
}
|
|
21222
21263
|
},
|
|
21223
21264
|
|
|
21224
|
-
/**
|
|
21225
|
-
* getFind
|
|
21226
|
-
* @desc:获取通知方式
|
|
21227
|
-
* @author liufan
|
|
21228
|
-
* @date 2022年5月25日
|
|
21265
|
+
/**
|
|
21266
|
+
* getFind
|
|
21267
|
+
* @desc:获取通知方式
|
|
21268
|
+
* @author liufan
|
|
21269
|
+
* @date 2022年5月25日
|
|
21229
21270
|
**/
|
|
21230
21271
|
getFind: function getFind() {
|
|
21231
21272
|
var _this10 = this;
|
|
@@ -21282,12 +21323,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21282
21323
|
});
|
|
21283
21324
|
},
|
|
21284
21325
|
|
|
21285
|
-
/**
|
|
21286
|
-
* endFlows
|
|
21287
|
-
* @desc:直接办结
|
|
21288
|
-
* @author liufan
|
|
21289
|
-
* @param {Object} res 直接办结数据
|
|
21290
|
-
* @date 2022年5月25日
|
|
21326
|
+
/**
|
|
21327
|
+
* endFlows
|
|
21328
|
+
* @desc:直接办结
|
|
21329
|
+
* @author liufan
|
|
21330
|
+
* @param {Object} res 直接办结数据
|
|
21331
|
+
* @date 2022年5月25日
|
|
21291
21332
|
**/
|
|
21292
21333
|
endFlows: function endFlows(res) {
|
|
21293
21334
|
var _this12 = this;
|
|
@@ -21341,12 +21382,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21341
21382
|
}).catch(function (e) {});
|
|
21342
21383
|
},
|
|
21343
21384
|
|
|
21344
|
-
/**
|
|
21345
|
-
* goView
|
|
21346
|
-
* @desc:更多流程按钮操作
|
|
21347
|
-
* @author liufan
|
|
21348
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
21349
|
-
* @date 2022年5月25日
|
|
21385
|
+
/**
|
|
21386
|
+
* goView
|
|
21387
|
+
* @desc:更多流程按钮操作
|
|
21388
|
+
* @author liufan
|
|
21389
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
21390
|
+
* @date 2022年5月25日
|
|
21350
21391
|
**/
|
|
21351
21392
|
goView: function goView(res) {
|
|
21352
21393
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -21431,11 +21472,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21431
21472
|
// isCanStartSubFlow
|
|
21432
21473
|
},
|
|
21433
21474
|
|
|
21434
|
-
/**
|
|
21435
|
-
* toTakeAdvice
|
|
21436
|
-
* @desc:征求意见
|
|
21437
|
-
* @author liufan
|
|
21438
|
-
* @date 2022年9月29日
|
|
21475
|
+
/**
|
|
21476
|
+
* toTakeAdvice
|
|
21477
|
+
* @desc:征求意见
|
|
21478
|
+
* @author liufan
|
|
21479
|
+
* @date 2022年9月29日
|
|
21439
21480
|
**/
|
|
21440
21481
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
21441
21482
|
var _this14 = this;
|
|
@@ -21479,11 +21520,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21479
21520
|
});
|
|
21480
21521
|
},
|
|
21481
21522
|
|
|
21482
|
-
/**
|
|
21483
|
-
* toStartDraf
|
|
21484
|
-
* @desc: 稿件递送、联合审核、复核
|
|
21485
|
-
* @author liufan
|
|
21486
|
-
* @date 2022年9月29日
|
|
21523
|
+
/**
|
|
21524
|
+
* toStartDraf
|
|
21525
|
+
* @desc: 稿件递送、联合审核、复核
|
|
21526
|
+
* @author liufan
|
|
21527
|
+
* @date 2022年9月29日
|
|
21487
21528
|
**/
|
|
21488
21529
|
toStartDraf: function toStartDraf(res) {
|
|
21489
21530
|
var _this16 = this;
|
|
@@ -21497,11 +21538,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21497
21538
|
}
|
|
21498
21539
|
},
|
|
21499
21540
|
|
|
21500
|
-
/**
|
|
21501
|
-
* toSendMsg
|
|
21502
|
-
* @desc:核稿通知
|
|
21503
|
-
* @author liufan
|
|
21504
|
-
* @date 2022年9月29日
|
|
21541
|
+
/**
|
|
21542
|
+
* toSendMsg
|
|
21543
|
+
* @desc:核稿通知
|
|
21544
|
+
* @author liufan
|
|
21545
|
+
* @date 2022年9月29日
|
|
21505
21546
|
**/
|
|
21506
21547
|
toSendMsg: function toSendMsg(res) {
|
|
21507
21548
|
var _this17 = this;
|
|
@@ -21515,11 +21556,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21515
21556
|
}
|
|
21516
21557
|
},
|
|
21517
21558
|
|
|
21518
|
-
/**
|
|
21519
|
-
* toTaskReadAndEnd
|
|
21520
|
-
* @desc:分阅并办结
|
|
21521
|
-
* @author liufan
|
|
21522
|
-
* @date 2022年9月29日
|
|
21559
|
+
/**
|
|
21560
|
+
* toTaskReadAndEnd
|
|
21561
|
+
* @desc:分阅并办结
|
|
21562
|
+
* @author liufan
|
|
21563
|
+
* @date 2022年9月29日
|
|
21523
21564
|
**/
|
|
21524
21565
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
21525
21566
|
var _this18 = this;
|
|
@@ -21537,11 +21578,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21537
21578
|
}
|
|
21538
21579
|
},
|
|
21539
21580
|
|
|
21540
|
-
/**
|
|
21541
|
-
* rejectAndEnd
|
|
21542
|
-
* @desc:驳回并办结
|
|
21543
|
-
* @author liufan
|
|
21544
|
-
* @date 2022年9月29日
|
|
21581
|
+
/**
|
|
21582
|
+
* rejectAndEnd
|
|
21583
|
+
* @desc:驳回并办结
|
|
21584
|
+
* @author liufan
|
|
21585
|
+
* @date 2022年9月29日
|
|
21545
21586
|
**/
|
|
21546
21587
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
21547
21588
|
var _this19 = this;
|
|
@@ -21596,11 +21637,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21596
21637
|
});
|
|
21597
21638
|
},
|
|
21598
21639
|
|
|
21599
|
-
/**
|
|
21600
|
-
* toTransfer
|
|
21601
|
-
* @desc:转办
|
|
21602
|
-
* @author liufan
|
|
21603
|
-
* @date 2022年9月29日
|
|
21640
|
+
/**
|
|
21641
|
+
* toTransfer
|
|
21642
|
+
* @desc:转办
|
|
21643
|
+
* @author liufan
|
|
21644
|
+
* @date 2022年9月29日
|
|
21604
21645
|
**/
|
|
21605
21646
|
toTransfer: function toTransfer(res) {
|
|
21606
21647
|
var _this21 = this;
|
|
@@ -21616,11 +21657,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21616
21657
|
}
|
|
21617
21658
|
},
|
|
21618
21659
|
|
|
21619
|
-
/**
|
|
21620
|
-
* getNodeInfo
|
|
21621
|
-
* @desc:获取节点信息
|
|
21622
|
-
* @author liufan
|
|
21623
|
-
* @date 2022年5月25日
|
|
21660
|
+
/**
|
|
21661
|
+
* getNodeInfo
|
|
21662
|
+
* @desc:获取节点信息
|
|
21663
|
+
* @author liufan
|
|
21664
|
+
* @date 2022年5月25日
|
|
21624
21665
|
**/
|
|
21625
21666
|
getNodeInfo: function getNodeInfo() {
|
|
21626
21667
|
var _this22 = this;
|
|
@@ -21719,12 +21760,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21719
21760
|
});
|
|
21720
21761
|
},
|
|
21721
21762
|
|
|
21722
|
-
/**
|
|
21723
|
-
* selecNext
|
|
21724
|
-
* @desc:下步节点变化时更新数据
|
|
21725
|
-
* @author liufan
|
|
21726
|
-
* @param {String} val 当前选中值
|
|
21727
|
-
* @date 2022年5月25日
|
|
21763
|
+
/**
|
|
21764
|
+
* selecNext
|
|
21765
|
+
* @desc:下步节点变化时更新数据
|
|
21766
|
+
* @author liufan
|
|
21767
|
+
* @param {String} val 当前选中值
|
|
21768
|
+
* @date 2022年5月25日
|
|
21728
21769
|
**/
|
|
21729
21770
|
selecNext: function selecNext(val, type, isDef) {
|
|
21730
21771
|
var _this23 = this;
|
|
@@ -21833,11 +21874,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21833
21874
|
if (isDef !== true) this.getNodeInfo();
|
|
21834
21875
|
},
|
|
21835
21876
|
|
|
21836
|
-
/**
|
|
21837
|
-
* isMultiple
|
|
21838
|
-
* @desc:是否多选
|
|
21839
|
-
* @author liufan
|
|
21840
|
-
* @date 2022年9月13日
|
|
21877
|
+
/**
|
|
21878
|
+
* isMultiple
|
|
21879
|
+
* @desc:是否多选
|
|
21880
|
+
* @author liufan
|
|
21881
|
+
* @date 2022年9月13日
|
|
21841
21882
|
**/
|
|
21842
21883
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
21843
21884
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -21869,11 +21910,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21869
21910
|
}
|
|
21870
21911
|
},
|
|
21871
21912
|
|
|
21872
|
-
/**
|
|
21873
|
-
* getHedInfo
|
|
21874
|
-
* @desc:获取审核页面数据
|
|
21875
|
-
* @author liufan
|
|
21876
|
-
* @date 2022年5月25日
|
|
21913
|
+
/**
|
|
21914
|
+
* getHedInfo
|
|
21915
|
+
* @desc:获取审核页面数据
|
|
21916
|
+
* @author liufan
|
|
21917
|
+
* @date 2022年5月25日
|
|
21877
21918
|
**/
|
|
21878
21919
|
getHedInfo: function getHedInfo() {
|
|
21879
21920
|
var _this24 = this;
|
|
@@ -22109,13 +22150,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22109
22150
|
});
|
|
22110
22151
|
},
|
|
22111
22152
|
|
|
22112
|
-
/**
|
|
22113
|
-
* closeProcess
|
|
22114
|
-
* @desc:关闭弹窗
|
|
22115
|
-
* @author liufan
|
|
22116
|
-
* @param {boolean} val 当前是否办理流程
|
|
22117
|
-
* @param {String} type 当前点击的弹窗类型
|
|
22118
|
-
* @date 2022年5月25日
|
|
22153
|
+
/**
|
|
22154
|
+
* closeProcess
|
|
22155
|
+
* @desc:关闭弹窗
|
|
22156
|
+
* @author liufan
|
|
22157
|
+
* @param {boolean} val 当前是否办理流程
|
|
22158
|
+
* @param {String} type 当前点击的弹窗类型
|
|
22159
|
+
* @date 2022年5月25日
|
|
22119
22160
|
**/
|
|
22120
22161
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
22121
22162
|
if (closeParent) {
|
|
@@ -22128,23 +22169,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22128
22169
|
}
|
|
22129
22170
|
},
|
|
22130
22171
|
|
|
22131
|
-
/**
|
|
22132
|
-
* selectChange
|
|
22133
|
-
* @desc:常用语选择
|
|
22134
|
-
* @author liufan
|
|
22135
|
-
* @param {String} val 选中值
|
|
22136
|
-
* @date 2022年5月25日
|
|
22172
|
+
/**
|
|
22173
|
+
* selectChange
|
|
22174
|
+
* @desc:常用语选择
|
|
22175
|
+
* @author liufan
|
|
22176
|
+
* @param {String} val 选中值
|
|
22177
|
+
* @date 2022年5月25日
|
|
22137
22178
|
**/
|
|
22138
22179
|
selectChange: function selectChange(val) {
|
|
22139
22180
|
this.value = val;
|
|
22140
22181
|
},
|
|
22141
22182
|
|
|
22142
|
-
/**
|
|
22143
|
-
* upDate
|
|
22144
|
-
* @desc:修改常用语
|
|
22145
|
-
* @author liufan
|
|
22146
|
-
* @param {Object} val 修改值
|
|
22147
|
-
* @date 2022年5月25日
|
|
22183
|
+
/**
|
|
22184
|
+
* upDate
|
|
22185
|
+
* @desc:修改常用语
|
|
22186
|
+
* @author liufan
|
|
22187
|
+
* @param {Object} val 修改值
|
|
22188
|
+
* @date 2022年5月25日
|
|
22148
22189
|
**/
|
|
22149
22190
|
upDate: function upDate(val) {
|
|
22150
22191
|
this.FormData.id = val.id;
|
|
@@ -22152,11 +22193,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22152
22193
|
},
|
|
22153
22194
|
|
|
22154
22195
|
|
|
22155
|
-
/**
|
|
22156
|
-
* getProcess
|
|
22157
|
-
* @desc:获取选择流程
|
|
22158
|
-
* @author liufan
|
|
22159
|
-
* @date 2022年5月25日
|
|
22196
|
+
/**
|
|
22197
|
+
* getProcess
|
|
22198
|
+
* @desc:获取选择流程
|
|
22199
|
+
* @author liufan
|
|
22200
|
+
* @date 2022年5月25日
|
|
22160
22201
|
**/
|
|
22161
22202
|
getProcess: function getProcess() {
|
|
22162
22203
|
var _this25 = this;
|
|
@@ -22208,11 +22249,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22208
22249
|
});
|
|
22209
22250
|
},
|
|
22210
22251
|
|
|
22211
|
-
/**
|
|
22212
|
-
* getPendedhistoryList
|
|
22213
|
-
* @desc:获取流程列表
|
|
22214
|
-
* @author liufan
|
|
22215
|
-
* @date 2022年5月25日
|
|
22252
|
+
/**
|
|
22253
|
+
* getPendedhistoryList
|
|
22254
|
+
* @desc:获取流程列表
|
|
22255
|
+
* @author liufan
|
|
22256
|
+
* @date 2022年5月25日
|
|
22216
22257
|
**/
|
|
22217
22258
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
22218
22259
|
var _this26 = this;
|
|
@@ -22244,12 +22285,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22244
22285
|
},
|
|
22245
22286
|
|
|
22246
22287
|
// 提交流程
|
|
22247
|
-
/**
|
|
22248
|
-
* subProcess
|
|
22249
|
-
* @desc:提交流程
|
|
22250
|
-
* @author liufan
|
|
22251
|
-
* @param {String} formName 当前form表单ref值
|
|
22252
|
-
* @date 2022年5月25日
|
|
22288
|
+
/**
|
|
22289
|
+
* subProcess
|
|
22290
|
+
* @desc:提交流程
|
|
22291
|
+
* @author liufan
|
|
22292
|
+
* @param {String} formName 当前form表单ref值
|
|
22293
|
+
* @date 2022年5月25日
|
|
22253
22294
|
**/
|
|
22254
22295
|
subProcess: function subProcess(val, type) {
|
|
22255
22296
|
var _this27 = this;
|
|
@@ -22261,7 +22302,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22261
22302
|
_this27.value = _this27.value.replace(RegExp('同意。', 'g'), '');
|
|
22262
22303
|
_this27.value = val + _this27.value;
|
|
22263
22304
|
}
|
|
22264
|
-
console.log(112);
|
|
22265
22305
|
if (!_this27.validInfo()) {
|
|
22266
22306
|
_this27.freeValid = false;
|
|
22267
22307
|
return;
|
|
@@ -22306,7 +22346,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22306
22346
|
return false;
|
|
22307
22347
|
}
|
|
22308
22348
|
if (!this.value && this.isOpinionRequired === 1) {
|
|
22309
|
-
console.log(1);
|
|
22310
22349
|
this.$message.warning('请选择输入审批意见');
|
|
22311
22350
|
return false;
|
|
22312
22351
|
}
|