eoss-ui 0.6.47 → 0.6.49
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 +27 -26
- package/lib/button.js +27 -26
- package/lib/checkbox-group.js +27 -26
- package/lib/data-table-form.js +27 -26
- package/lib/data-table.js +27 -26
- package/lib/date-picker.js +27 -26
- package/lib/dialog.js +27 -26
- package/lib/enable-drag.js +3 -15
- package/lib/eoss-ui.common.js +742 -701
- package/lib/flow-group.js +30 -29
- package/lib/flow-list.js +108 -107
- package/lib/flow.js +333 -319
- package/lib/form.js +31 -30
- package/lib/handle-user.js +27 -26
- package/lib/handler.js +30 -31
- package/lib/icon.js +27 -26
- package/lib/index.js +1 -1
- package/lib/input-number.js +27 -26
- package/lib/input.js +27 -26
- package/lib/login.js +27 -26
- package/lib/main.js +256 -219
- package/lib/nav.js +27 -26
- package/lib/page.js +27 -26
- package/lib/pagination.js +27 -26
- package/lib/player.js +27 -26
- package/lib/qr-code.js +40 -39
- package/lib/radio-group.js +27 -26
- package/lib/retrial-auth.js +31 -30
- package/lib/select-ganged.js +27 -26
- package/lib/select.js +27 -26
- package/lib/selector-panel.js +27 -26
- package/lib/selector.js +45 -49
- package/lib/sizer.js +27 -26
- package/lib/steps.js +27 -26
- package/lib/switch.js +27 -26
- package/lib/table-form.js +33 -32
- package/lib/tabs.js +27 -26
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +27 -26
- package/lib/tree-group.js +27 -26
- package/lib/tree.js +27 -26
- package/lib/upload.js +27 -26
- package/lib/utils/util.js +27 -26
- package/lib/wujie.js +27 -26
- package/lib/wxlogin.js +27 -26
- 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 -989
- package/packages/data-table/src/main.vue +1822 -1822
- 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/enable-drag/index.js +5 -5
- package/packages/enable-drag/src/main.vue +0 -2
- 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 -611
- package/packages/flow/src/form.vue +121 -121
- package/packages/flow/src/freeStartFlow.vue +2843 -2843
- package/packages/flow/src/main.vue +3107 -3100
- package/packages/flow/src/processForm.vue +1031 -1031
- package/packages/flow/src/processReject.vue +293 -293
- package/packages/flow/src/reset.vue +902 -899
- package/packages/flow/src/startTaskRead.vue +597 -597
- package/packages/flow/src/supervise.vue +138 -138
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/.DS_Store +0 -0
- 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 +1411 -1411
- package/packages/form/.DS_Store +0 -0
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +3583 -3583
- package/packages/form/src/table.vue +1426 -1426
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +138 -138
- package/packages/handler/.DS_Store +0 -0
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +493 -491
- 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/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 -1935
- 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 +24 -10
- 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 +503 -505
- package/packages/main/src/main.vue +30 -8
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +461 -461
- 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 -259
- package/packages/main/src/simplicity/index.vue +2064 -2049
- 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 +351 -351
- 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/.DS_Store +0 -0
- 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 +687 -689
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/main.vue +1027 -1027
- 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/flow.css +1 -1
- package/packages/theme-chalk/lib/index.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/enable-drag.scss +181 -181
- 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 +335 -325
- 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 -1789
- 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 +969 -969
- package/packages/theme-chalk/src/main.scss +656 -656
- 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 +111 -111
- 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 +1265 -1265
- 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 +1335 -1335
- 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 +281 -281
- package/src/config/image.js +2 -2
- package/src/index.js +160 -160
- 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 +7 -4
- package/src/utils/webSocket.js +107 -107
package/lib/flow.js
CHANGED
|
@@ -764,15 +764,16 @@ var browser = function browser() {
|
|
|
764
764
|
* @author huangbo
|
|
765
765
|
* @date 2022年5月7日
|
|
766
766
|
**/
|
|
767
|
-
var busEmit = function busEmit() {
|
|
768
|
-
var vm = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this;
|
|
769
|
-
var _ref3 = arguments[1];
|
|
767
|
+
var busEmit = function busEmit(that, _ref3) {
|
|
770
768
|
var method = _ref3.method,
|
|
771
769
|
args = _ref3.args;
|
|
772
770
|
|
|
773
|
-
var bus = win.$wujie ? win.$wujie.bus :
|
|
774
|
-
|
|
775
|
-
|
|
771
|
+
var bus = win.$wujie ? win.$wujie.bus : that ? that.bus || that.$root.Bus : null;
|
|
772
|
+
if (bus) {
|
|
773
|
+
bus.$emit(method, args);
|
|
774
|
+
} else {
|
|
775
|
+
win.parent.postMessage({ method: method, query: args }, '*');
|
|
776
|
+
}
|
|
776
777
|
};
|
|
777
778
|
|
|
778
779
|
/**
|
|
@@ -1251,15 +1252,15 @@ var exportXls = function exportXls(_ref8) {
|
|
|
1251
1252
|
var _loop2 = function _loop2(_i5) {
|
|
1252
1253
|
tbody += '<tr>';
|
|
1253
1254
|
|
|
1254
|
-
var _loop3 = function _loop3(
|
|
1255
|
+
var _loop3 = function _loop3(_x2) {
|
|
1255
1256
|
var field = '';
|
|
1256
|
-
var valueKey = keys[fields[
|
|
1257
|
-
var labelKey = keys[fields[
|
|
1258
|
-
if (option[fields[
|
|
1259
|
-
if (Array.isArray(data[_i5][fields[
|
|
1257
|
+
var valueKey = keys[fields[_x2]] && keys[fields[_x2]].valueKey ? keys[fields[_x2]].valueKey : 'value';
|
|
1258
|
+
var labelKey = keys[fields[_x2]] && keys[fields[_x2]].labelKey ? keys[fields[_x2]].labelKey : 'name';
|
|
1259
|
+
if (option[fields[_x2]]) {
|
|
1260
|
+
if (Array.isArray(data[_i5][fields[_x2]])) {
|
|
1260
1261
|
field = [];
|
|
1261
|
-
data[_i5][fields[
|
|
1262
|
-
option[fields[
|
|
1262
|
+
data[_i5][fields[_x2]].forEach(function (ele) {
|
|
1263
|
+
option[fields[_x2]].forEach(function (item) {
|
|
1263
1264
|
// eslint-disable-next-line eqeqeq
|
|
1264
1265
|
if (item[valueKey] == ele) {
|
|
1265
1266
|
field.push(item[labelKey]);
|
|
@@ -1268,10 +1269,10 @@ var exportXls = function exportXls(_ref8) {
|
|
|
1268
1269
|
});
|
|
1269
1270
|
});
|
|
1270
1271
|
field = field.join(' ');
|
|
1271
|
-
} else if (typeof data[_i5][fields[
|
|
1272
|
+
} else if (typeof data[_i5][fields[_x2]] === 'string' && keys[fields[_x2]] && keys[fields[_x2]].multiple) {
|
|
1272
1273
|
field = [];
|
|
1273
|
-
data[_i5][fields[
|
|
1274
|
-
option[fields[
|
|
1274
|
+
data[_i5][fields[_x2]].split(',').forEach(function (ele) {
|
|
1275
|
+
option[fields[_x2]].forEach(function (item) {
|
|
1275
1276
|
// eslint-disable-next-line eqeqeq
|
|
1276
1277
|
if (item[valueKey] == ele) {
|
|
1277
1278
|
field.push(item[labelKey]);
|
|
@@ -1281,32 +1282,32 @@ var exportXls = function exportXls(_ref8) {
|
|
|
1281
1282
|
});
|
|
1282
1283
|
field = field.join(' ');
|
|
1283
1284
|
} else {
|
|
1284
|
-
option[fields[
|
|
1285
|
+
option[fields[_x2]].forEach(function (item) {
|
|
1285
1286
|
// eslint-disable-next-line eqeqeq
|
|
1286
|
-
if (item[valueKey] == data[_i5][fields[
|
|
1287
|
+
if (item[valueKey] == data[_i5][fields[_x2]]) {
|
|
1287
1288
|
field = item[labelKey];
|
|
1288
1289
|
return;
|
|
1289
1290
|
}
|
|
1290
1291
|
});
|
|
1291
1292
|
}
|
|
1292
|
-
} else if (_typeof(data[_i5][fields[
|
|
1293
|
-
if (Array.isArray(data[_i5][fields[
|
|
1294
|
-
data[_i5][fields[
|
|
1293
|
+
} else if (_typeof(data[_i5][fields[_x2]]) === 'object' && keys[fields[_x2]]) {
|
|
1294
|
+
if (Array.isArray(data[_i5][fields[_x2]])) {
|
|
1295
|
+
data[_i5][fields[_x2]].forEach(function (item) {
|
|
1295
1296
|
field = [];
|
|
1296
1297
|
field.push({}.toString.call(item) === '[object Object]' ? item[labelKey] : item);
|
|
1297
1298
|
});
|
|
1298
1299
|
field = field.join(' ');
|
|
1299
1300
|
} else {
|
|
1300
|
-
field = data[_i5][fields[
|
|
1301
|
+
field = data[_i5][fields[_x2]][labelKey];
|
|
1301
1302
|
}
|
|
1302
1303
|
} else {
|
|
1303
|
-
field = data[_i5][fields[
|
|
1304
|
+
field = data[_i5][fields[_x2]];
|
|
1304
1305
|
}
|
|
1305
|
-
tbody += '<td align="' + aligns[
|
|
1306
|
+
tbody += '<td align="' + aligns[_x2] + '">' + field + '</td>';
|
|
1306
1307
|
};
|
|
1307
1308
|
|
|
1308
|
-
for (var
|
|
1309
|
-
_loop3(
|
|
1309
|
+
for (var _x2 in fields) {
|
|
1310
|
+
_loop3(_x2);
|
|
1310
1311
|
}
|
|
1311
1312
|
tbody += '</tr>';
|
|
1312
1313
|
};
|
|
@@ -4367,7 +4368,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4367
4368
|
// ESM COMPAT FLAG
|
|
4368
4369
|
__webpack_require__.r(__webpack_exports__);
|
|
4369
4370
|
|
|
4370
|
-
// 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=
|
|
4371
|
+
// 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=74ef8ad5&
|
|
4371
4372
|
var render = function () {
|
|
4372
4373
|
var _vm = this
|
|
4373
4374
|
var _h = _vm.$createElement
|
|
@@ -6627,7 +6628,7 @@ var staticRenderFns = []
|
|
|
6627
6628
|
render._withStripped = true
|
|
6628
6629
|
|
|
6629
6630
|
|
|
6630
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
6631
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=74ef8ad5&
|
|
6631
6632
|
|
|
6632
6633
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
6633
6634
|
var regenerator_ = __webpack_require__(14);
|
|
@@ -7440,21 +7441,21 @@ var _components;
|
|
|
7440
7441
|
return validSate;
|
|
7441
7442
|
},
|
|
7442
7443
|
|
|
7443
|
-
/**
|
|
7444
|
-
* changeOpinion
|
|
7445
|
-
* @desc:监听意见变化
|
|
7446
|
-
* @author liufan
|
|
7447
|
-
* @date 2022年10月28日
|
|
7444
|
+
/**
|
|
7445
|
+
* changeOpinion
|
|
7446
|
+
* @desc:监听意见变化
|
|
7447
|
+
* @author liufan
|
|
7448
|
+
* @date 2022年10月28日
|
|
7448
7449
|
**/
|
|
7449
7450
|
changeOpinion: function changeOpinion() {
|
|
7450
7451
|
this.$emit('change', this.form.value);
|
|
7451
7452
|
},
|
|
7452
7453
|
|
|
7453
|
-
/**
|
|
7454
|
-
* getCommonOpion
|
|
7455
|
-
* @desc:获取意见
|
|
7456
|
-
* @author liufan
|
|
7457
|
-
* @date 2022年5月25日
|
|
7454
|
+
/**
|
|
7455
|
+
* getCommonOpion
|
|
7456
|
+
* @desc:获取意见
|
|
7457
|
+
* @author liufan
|
|
7458
|
+
* @date 2022年5月25日
|
|
7458
7459
|
**/
|
|
7459
7460
|
getCommonOpion: function getCommonOpion() {
|
|
7460
7461
|
var _this = this;
|
|
@@ -7483,24 +7484,24 @@ var _components;
|
|
|
7483
7484
|
});
|
|
7484
7485
|
},
|
|
7485
7486
|
|
|
7486
|
-
/**
|
|
7487
|
-
* upDate
|
|
7488
|
-
* @desc:修改常用语
|
|
7489
|
-
* @author liufan
|
|
7490
|
-
* @param {Object} val 修改值
|
|
7491
|
-
* @date 2022年5月25日
|
|
7487
|
+
/**
|
|
7488
|
+
* upDate
|
|
7489
|
+
* @desc:修改常用语
|
|
7490
|
+
* @author liufan
|
|
7491
|
+
* @param {Object} val 修改值
|
|
7492
|
+
* @date 2022年5月25日
|
|
7492
7493
|
**/
|
|
7493
7494
|
upDate: function upDate(val) {
|
|
7494
7495
|
this.FormData.id = val.id;
|
|
7495
7496
|
this.addVisible = true;
|
|
7496
7497
|
},
|
|
7497
7498
|
|
|
7498
|
-
/**
|
|
7499
|
-
* selectChange
|
|
7500
|
-
* @desc:常用语选择
|
|
7501
|
-
* @author liufan
|
|
7502
|
-
* @param {String} val 选中值
|
|
7503
|
-
* @date 2022年5月25日
|
|
7499
|
+
/**
|
|
7500
|
+
* selectChange
|
|
7501
|
+
* @desc:常用语选择
|
|
7502
|
+
* @author liufan
|
|
7503
|
+
* @param {String} val 选中值
|
|
7504
|
+
* @date 2022年5月25日
|
|
7504
7505
|
**/
|
|
7505
7506
|
selectChange: function selectChange(val) {
|
|
7506
7507
|
var _this2 = this;
|
|
@@ -7519,12 +7520,12 @@ var _components;
|
|
|
7519
7520
|
});
|
|
7520
7521
|
},
|
|
7521
7522
|
|
|
7522
|
-
/**
|
|
7523
|
-
* del
|
|
7524
|
-
* @desc:删除常用语
|
|
7525
|
-
* @author liufan
|
|
7526
|
-
* @param {Object} val 删除的数据
|
|
7527
|
-
* @date 2022年5月25日
|
|
7523
|
+
/**
|
|
7524
|
+
* del
|
|
7525
|
+
* @desc:删除常用语
|
|
7526
|
+
* @author liufan
|
|
7527
|
+
* @param {Object} val 删除的数据
|
|
7528
|
+
* @date 2022年5月25日
|
|
7528
7529
|
**/
|
|
7529
7530
|
del: function del(val) {
|
|
7530
7531
|
var _this3 = this;
|
|
@@ -7566,12 +7567,12 @@ var _components;
|
|
|
7566
7567
|
}).catch(function (e) {});
|
|
7567
7568
|
},
|
|
7568
7569
|
|
|
7569
|
-
/**
|
|
7570
|
-
* submit
|
|
7571
|
-
* @desc:新增/编辑意见保存
|
|
7572
|
-
* @author liufan
|
|
7573
|
-
* @param {Object} val 保存数据
|
|
7574
|
-
* @date 2022年5月25日
|
|
7570
|
+
/**
|
|
7571
|
+
* submit
|
|
7572
|
+
* @desc:新增/编辑意见保存
|
|
7573
|
+
* @author liufan
|
|
7574
|
+
* @param {Object} val 保存数据
|
|
7575
|
+
* @date 2022年5月25日
|
|
7575
7576
|
**/
|
|
7576
7577
|
submit: function submit(val) {
|
|
7577
7578
|
var _this4 = this;
|
|
@@ -10458,11 +10459,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10458
10459
|
});
|
|
10459
10460
|
},
|
|
10460
10461
|
|
|
10461
|
-
/**
|
|
10462
|
-
* isMultiple
|
|
10463
|
-
* @desc:是否多选
|
|
10464
|
-
* @author liufan
|
|
10465
|
-
* @date 2022年9月13日
|
|
10462
|
+
/**
|
|
10463
|
+
* isMultiple
|
|
10464
|
+
* @desc:是否多选
|
|
10465
|
+
* @author liufan
|
|
10466
|
+
* @date 2022年9月13日
|
|
10466
10467
|
**/
|
|
10467
10468
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
10468
10469
|
var multiple = false;
|
|
@@ -13114,8 +13115,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
|
13114
13115
|
)
|
|
13115
13116
|
|
|
13116
13117
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
13117
|
-
// 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=
|
|
13118
|
-
var
|
|
13118
|
+
// 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=506a888c&
|
|
13119
|
+
var resetvue_type_template_id_506a888c_render = function () {
|
|
13119
13120
|
var _vm = this
|
|
13120
13121
|
var _h = _vm.$createElement
|
|
13121
13122
|
var _c = _vm._self._c || _h
|
|
@@ -13131,6 +13132,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
|
|
|
13131
13132
|
},
|
|
13132
13133
|
],
|
|
13133
13134
|
staticClass: "es-flow-form",
|
|
13135
|
+
staticStyle: { height: "100%" },
|
|
13134
13136
|
attrs: {
|
|
13135
13137
|
"element-loading-text": "加载中...",
|
|
13136
13138
|
"element-loading-spinner": "el-icon-loading",
|
|
@@ -13142,7 +13144,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
|
|
|
13142
13144
|
"el-form",
|
|
13143
13145
|
{
|
|
13144
13146
|
ref: "nextNode",
|
|
13145
|
-
staticClass: "demo-dynamic",
|
|
13147
|
+
staticClass: "es-reset-flow demo-dynamic",
|
|
13146
13148
|
attrs: {
|
|
13147
13149
|
model: _vm.nextNode,
|
|
13148
13150
|
"label-width": "100px",
|
|
@@ -13152,7 +13154,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
|
|
|
13152
13154
|
[
|
|
13153
13155
|
_c(
|
|
13154
13156
|
"div",
|
|
13155
|
-
{
|
|
13157
|
+
{ staticClass: "es-reset-flow-form-box" },
|
|
13156
13158
|
[
|
|
13157
13159
|
_c(
|
|
13158
13160
|
"el-form-item",
|
|
@@ -13540,11 +13542,11 @@ var resetvue_type_template_id_5f0800ef_render = function () {
|
|
|
13540
13542
|
1
|
|
13541
13543
|
)
|
|
13542
13544
|
}
|
|
13543
|
-
var
|
|
13544
|
-
|
|
13545
|
+
var resetvue_type_template_id_506a888c_staticRenderFns = []
|
|
13546
|
+
resetvue_type_template_id_506a888c_render._withStripped = true
|
|
13545
13547
|
|
|
13546
13548
|
|
|
13547
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
13549
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=506a888c&
|
|
13548
13550
|
|
|
13549
13551
|
// 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&
|
|
13550
13552
|
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; };
|
|
@@ -13762,6 +13764,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
13762
13764
|
//
|
|
13763
13765
|
//
|
|
13764
13766
|
//
|
|
13767
|
+
//
|
|
13765
13768
|
|
|
13766
13769
|
|
|
13767
13770
|
|
|
@@ -14267,11 +14270,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
14267
14270
|
});
|
|
14268
14271
|
},
|
|
14269
14272
|
|
|
14270
|
-
/**
|
|
14271
|
-
* isMultiple
|
|
14272
|
-
* @desc:是否多选
|
|
14273
|
-
* @author liufan
|
|
14274
|
-
* @date 2022年9月13日
|
|
14273
|
+
/**
|
|
14274
|
+
* isMultiple
|
|
14275
|
+
* @desc:是否多选
|
|
14276
|
+
* @author liufan
|
|
14277
|
+
* @date 2022年9月13日
|
|
14275
14278
|
**/
|
|
14276
14279
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
14277
14280
|
var multiple = false;
|
|
@@ -14313,9 +14316,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
14313
14316
|
appId: this.appId
|
|
14314
14317
|
}, this.flowParams)
|
|
14315
14318
|
};
|
|
14319
|
+
this.loading = true;
|
|
14316
14320
|
// 获取节点
|
|
14317
14321
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
14318
14322
|
//pc接口返回数据处理
|
|
14323
|
+
_this7.loading = false;
|
|
14319
14324
|
var status = res.status,
|
|
14320
14325
|
message = res.message,
|
|
14321
14326
|
data = res.data;
|
|
@@ -14402,8 +14407,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
14402
14407
|
|
|
14403
14408
|
var reset_component = Object(componentNormalizer["a" /* default */])(
|
|
14404
14409
|
src_resetvue_type_script_lang_js_,
|
|
14405
|
-
|
|
14406
|
-
|
|
14410
|
+
resetvue_type_template_id_506a888c_render,
|
|
14411
|
+
resetvue_type_template_id_506a888c_staticRenderFns,
|
|
14407
14412
|
false,
|
|
14408
14413
|
null,
|
|
14409
14414
|
null,
|
|
@@ -18633,11 +18638,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18633
18638
|
});
|
|
18634
18639
|
},
|
|
18635
18640
|
|
|
18636
|
-
/**
|
|
18637
|
-
* saveInfo
|
|
18638
|
-
* @desc:暂存
|
|
18639
|
-
* @author liufan
|
|
18640
|
-
* @date 2022年9月9日
|
|
18641
|
+
/**
|
|
18642
|
+
* saveInfo
|
|
18643
|
+
* @desc:暂存
|
|
18644
|
+
* @author liufan
|
|
18645
|
+
* @date 2022年9月9日
|
|
18641
18646
|
**/
|
|
18642
18647
|
saveInfo: function saveInfo(type, btn) {
|
|
18643
18648
|
var _this6 = this;
|
|
@@ -18699,11 +18704,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18699
18704
|
});
|
|
18700
18705
|
},
|
|
18701
18706
|
|
|
18702
|
-
/**
|
|
18703
|
-
* rejectBtn
|
|
18704
|
-
* @desc:点击驳回
|
|
18705
|
-
* @author liufan
|
|
18706
|
-
* @date 2022年5月25日
|
|
18707
|
+
/**
|
|
18708
|
+
* rejectBtn
|
|
18709
|
+
* @desc:点击驳回
|
|
18710
|
+
* @author liufan
|
|
18711
|
+
* @date 2022年5月25日
|
|
18707
18712
|
**/
|
|
18708
18713
|
rejectBtn: function rejectBtn() {
|
|
18709
18714
|
var _this8 = this;
|
|
@@ -18721,11 +18726,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18721
18726
|
}
|
|
18722
18727
|
},
|
|
18723
18728
|
|
|
18724
|
-
/**
|
|
18725
|
-
* taskReadBtn
|
|
18726
|
-
* @desc:点击分阅
|
|
18727
|
-
* @author liufan
|
|
18728
|
-
* @date 2022年5月25日
|
|
18729
|
+
/**
|
|
18730
|
+
* taskReadBtn
|
|
18731
|
+
* @desc:点击分阅
|
|
18732
|
+
* @author liufan
|
|
18733
|
+
* @date 2022年5月25日
|
|
18729
18734
|
**/
|
|
18730
18735
|
taskReadBtn: function taskReadBtn() {
|
|
18731
18736
|
var _this9 = this;
|
|
@@ -18744,11 +18749,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18744
18749
|
}
|
|
18745
18750
|
},
|
|
18746
18751
|
|
|
18747
|
-
/**
|
|
18748
|
-
* getFind
|
|
18749
|
-
* @desc:获取通知方式
|
|
18750
|
-
* @author liufan
|
|
18751
|
-
* @date 2022年5月25日
|
|
18752
|
+
/**
|
|
18753
|
+
* getFind
|
|
18754
|
+
* @desc:获取通知方式
|
|
18755
|
+
* @author liufan
|
|
18756
|
+
* @date 2022年5月25日
|
|
18752
18757
|
**/
|
|
18753
18758
|
getFind: function getFind() {
|
|
18754
18759
|
var _this10 = this;
|
|
@@ -18803,12 +18808,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18803
18808
|
});
|
|
18804
18809
|
},
|
|
18805
18810
|
|
|
18806
|
-
/**
|
|
18807
|
-
* endFlows
|
|
18808
|
-
* @desc:直接办结
|
|
18809
|
-
* @author liufan
|
|
18810
|
-
* @param {Object} res 直接办结数据
|
|
18811
|
-
* @date 2022年5月25日
|
|
18811
|
+
/**
|
|
18812
|
+
* endFlows
|
|
18813
|
+
* @desc:直接办结
|
|
18814
|
+
* @author liufan
|
|
18815
|
+
* @param {Object} res 直接办结数据
|
|
18816
|
+
* @date 2022年5月25日
|
|
18812
18817
|
**/
|
|
18813
18818
|
endFlows: function endFlows(res) {
|
|
18814
18819
|
var _this12 = this;
|
|
@@ -18862,12 +18867,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18862
18867
|
}).catch(function (e) {});
|
|
18863
18868
|
},
|
|
18864
18869
|
|
|
18865
|
-
/**
|
|
18866
|
-
* goView
|
|
18867
|
-
* @desc:更多流程按钮操作
|
|
18868
|
-
* @author liufan
|
|
18869
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
18870
|
-
* @date 2022年5月25日
|
|
18870
|
+
/**
|
|
18871
|
+
* goView
|
|
18872
|
+
* @desc:更多流程按钮操作
|
|
18873
|
+
* @author liufan
|
|
18874
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
18875
|
+
* @date 2022年5月25日
|
|
18871
18876
|
**/
|
|
18872
18877
|
goView: function goView(res) {
|
|
18873
18878
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -18952,11 +18957,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18952
18957
|
// isCanStartSubFlow
|
|
18953
18958
|
},
|
|
18954
18959
|
|
|
18955
|
-
/**
|
|
18956
|
-
* toTakeAdvice
|
|
18957
|
-
* @desc:征求意见
|
|
18958
|
-
* @author liufan
|
|
18959
|
-
* @date 2022年9月29日
|
|
18960
|
+
/**
|
|
18961
|
+
* toTakeAdvice
|
|
18962
|
+
* @desc:征求意见
|
|
18963
|
+
* @author liufan
|
|
18964
|
+
* @date 2022年9月29日
|
|
18960
18965
|
**/
|
|
18961
18966
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
18962
18967
|
var _this14 = this;
|
|
@@ -19000,11 +19005,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19000
19005
|
});
|
|
19001
19006
|
},
|
|
19002
19007
|
|
|
19003
|
-
/**
|
|
19004
|
-
* toStartDraf
|
|
19005
|
-
* @desc: 稿件递送、联合审核、复核
|
|
19006
|
-
* @author liufan
|
|
19007
|
-
* @date 2022年9月29日
|
|
19008
|
+
/**
|
|
19009
|
+
* toStartDraf
|
|
19010
|
+
* @desc: 稿件递送、联合审核、复核
|
|
19011
|
+
* @author liufan
|
|
19012
|
+
* @date 2022年9月29日
|
|
19008
19013
|
**/
|
|
19009
19014
|
toStartDraf: function toStartDraf(res) {
|
|
19010
19015
|
var _this16 = this;
|
|
@@ -19018,11 +19023,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19018
19023
|
}
|
|
19019
19024
|
},
|
|
19020
19025
|
|
|
19021
|
-
/**
|
|
19022
|
-
* toSendMsg
|
|
19023
|
-
* @desc:核稿通知
|
|
19024
|
-
* @author liufan
|
|
19025
|
-
* @date 2022年9月29日
|
|
19026
|
+
/**
|
|
19027
|
+
* toSendMsg
|
|
19028
|
+
* @desc:核稿通知
|
|
19029
|
+
* @author liufan
|
|
19030
|
+
* @date 2022年9月29日
|
|
19026
19031
|
**/
|
|
19027
19032
|
toSendMsg: function toSendMsg(res) {
|
|
19028
19033
|
var _this17 = this;
|
|
@@ -19036,11 +19041,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19036
19041
|
}
|
|
19037
19042
|
},
|
|
19038
19043
|
|
|
19039
|
-
/**
|
|
19040
|
-
* toTaskReadAndEnd
|
|
19041
|
-
* @desc:分阅并办结
|
|
19042
|
-
* @author liufan
|
|
19043
|
-
* @date 2022年9月29日
|
|
19044
|
+
/**
|
|
19045
|
+
* toTaskReadAndEnd
|
|
19046
|
+
* @desc:分阅并办结
|
|
19047
|
+
* @author liufan
|
|
19048
|
+
* @date 2022年9月29日
|
|
19044
19049
|
**/
|
|
19045
19050
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
19046
19051
|
var _this18 = this;
|
|
@@ -19058,11 +19063,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19058
19063
|
}
|
|
19059
19064
|
},
|
|
19060
19065
|
|
|
19061
|
-
/**
|
|
19062
|
-
* rejectAndEnd
|
|
19063
|
-
* @desc:驳回并办结
|
|
19064
|
-
* @author liufan
|
|
19065
|
-
* @date 2022年9月29日
|
|
19066
|
+
/**
|
|
19067
|
+
* rejectAndEnd
|
|
19068
|
+
* @desc:驳回并办结
|
|
19069
|
+
* @author liufan
|
|
19070
|
+
* @date 2022年9月29日
|
|
19066
19071
|
**/
|
|
19067
19072
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
19068
19073
|
var _this19 = this;
|
|
@@ -19117,11 +19122,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19117
19122
|
});
|
|
19118
19123
|
},
|
|
19119
19124
|
|
|
19120
|
-
/**
|
|
19121
|
-
* toTransfer
|
|
19122
|
-
* @desc:转办
|
|
19123
|
-
* @author liufan
|
|
19124
|
-
* @date 2022年9月29日
|
|
19125
|
+
/**
|
|
19126
|
+
* toTransfer
|
|
19127
|
+
* @desc:转办
|
|
19128
|
+
* @author liufan
|
|
19129
|
+
* @date 2022年9月29日
|
|
19125
19130
|
**/
|
|
19126
19131
|
toTransfer: function toTransfer(res) {
|
|
19127
19132
|
var _this21 = this;
|
|
@@ -19137,11 +19142,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19137
19142
|
}
|
|
19138
19143
|
},
|
|
19139
19144
|
|
|
19140
|
-
/**
|
|
19141
|
-
* getNodeInfo
|
|
19142
|
-
* @desc:获取节点信息
|
|
19143
|
-
* @author liufan
|
|
19144
|
-
* @date 2022年5月25日
|
|
19145
|
+
/**
|
|
19146
|
+
* getNodeInfo
|
|
19147
|
+
* @desc:获取节点信息
|
|
19148
|
+
* @author liufan
|
|
19149
|
+
* @date 2022年5月25日
|
|
19145
19150
|
**/
|
|
19146
19151
|
getNodeInfo: function getNodeInfo() {
|
|
19147
19152
|
var _this22 = this;
|
|
@@ -19240,12 +19245,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19240
19245
|
});
|
|
19241
19246
|
},
|
|
19242
19247
|
|
|
19243
|
-
/**
|
|
19244
|
-
* selecNext
|
|
19245
|
-
* @desc:下步节点变化时更新数据
|
|
19246
|
-
* @author liufan
|
|
19247
|
-
* @param {String} val 当前选中值
|
|
19248
|
-
* @date 2022年5月25日
|
|
19248
|
+
/**
|
|
19249
|
+
* selecNext
|
|
19250
|
+
* @desc:下步节点变化时更新数据
|
|
19251
|
+
* @author liufan
|
|
19252
|
+
* @param {String} val 当前选中值
|
|
19253
|
+
* @date 2022年5月25日
|
|
19249
19254
|
**/
|
|
19250
19255
|
selecNext: function selecNext(val, type, isDef) {
|
|
19251
19256
|
var _this23 = this;
|
|
@@ -19354,11 +19359,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19354
19359
|
if (isDef !== true) this.getNodeInfo();
|
|
19355
19360
|
},
|
|
19356
19361
|
|
|
19357
|
-
/**
|
|
19358
|
-
* isMultiple
|
|
19359
|
-
* @desc:是否多选
|
|
19360
|
-
* @author liufan
|
|
19361
|
-
* @date 2022年9月13日
|
|
19362
|
+
/**
|
|
19363
|
+
* isMultiple
|
|
19364
|
+
* @desc:是否多选
|
|
19365
|
+
* @author liufan
|
|
19366
|
+
* @date 2022年9月13日
|
|
19362
19367
|
**/
|
|
19363
19368
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
19364
19369
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -19390,11 +19395,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19390
19395
|
}
|
|
19391
19396
|
},
|
|
19392
19397
|
|
|
19393
|
-
/**
|
|
19394
|
-
* getHedInfo
|
|
19395
|
-
* @desc:获取审核页面数据
|
|
19396
|
-
* @author liufan
|
|
19397
|
-
* @date 2022年5月25日
|
|
19398
|
+
/**
|
|
19399
|
+
* getHedInfo
|
|
19400
|
+
* @desc:获取审核页面数据
|
|
19401
|
+
* @author liufan
|
|
19402
|
+
* @date 2022年5月25日
|
|
19398
19403
|
**/
|
|
19399
19404
|
getHedInfo: function getHedInfo() {
|
|
19400
19405
|
var _this24 = this;
|
|
@@ -19630,13 +19635,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19630
19635
|
});
|
|
19631
19636
|
},
|
|
19632
19637
|
|
|
19633
|
-
/**
|
|
19634
|
-
* closeProcess
|
|
19635
|
-
* @desc:关闭弹窗
|
|
19636
|
-
* @author liufan
|
|
19637
|
-
* @param {boolean} val 当前是否办理流程
|
|
19638
|
-
* @param {String} type 当前点击的弹窗类型
|
|
19639
|
-
* @date 2022年5月25日
|
|
19638
|
+
/**
|
|
19639
|
+
* closeProcess
|
|
19640
|
+
* @desc:关闭弹窗
|
|
19641
|
+
* @author liufan
|
|
19642
|
+
* @param {boolean} val 当前是否办理流程
|
|
19643
|
+
* @param {String} type 当前点击的弹窗类型
|
|
19644
|
+
* @date 2022年5月25日
|
|
19640
19645
|
**/
|
|
19641
19646
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
19642
19647
|
if (closeParent) {
|
|
@@ -19653,23 +19658,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19653
19658
|
}
|
|
19654
19659
|
},
|
|
19655
19660
|
|
|
19656
|
-
/**
|
|
19657
|
-
* selectChange
|
|
19658
|
-
* @desc:常用语选择
|
|
19659
|
-
* @author liufan
|
|
19660
|
-
* @param {String} val 选中值
|
|
19661
|
-
* @date 2022年5月25日
|
|
19661
|
+
/**
|
|
19662
|
+
* selectChange
|
|
19663
|
+
* @desc:常用语选择
|
|
19664
|
+
* @author liufan
|
|
19665
|
+
* @param {String} val 选中值
|
|
19666
|
+
* @date 2022年5月25日
|
|
19662
19667
|
**/
|
|
19663
19668
|
selectChange: function selectChange(val) {
|
|
19664
19669
|
this.value = val;
|
|
19665
19670
|
},
|
|
19666
19671
|
|
|
19667
|
-
/**
|
|
19668
|
-
* upDate
|
|
19669
|
-
* @desc:修改常用语
|
|
19670
|
-
* @author liufan
|
|
19671
|
-
* @param {Object} val 修改值
|
|
19672
|
-
* @date 2022年5月25日
|
|
19672
|
+
/**
|
|
19673
|
+
* upDate
|
|
19674
|
+
* @desc:修改常用语
|
|
19675
|
+
* @author liufan
|
|
19676
|
+
* @param {Object} val 修改值
|
|
19677
|
+
* @date 2022年5月25日
|
|
19673
19678
|
**/
|
|
19674
19679
|
upDate: function upDate(val) {
|
|
19675
19680
|
this.FormData.id = val.id;
|
|
@@ -19677,11 +19682,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19677
19682
|
},
|
|
19678
19683
|
|
|
19679
19684
|
|
|
19680
|
-
/**
|
|
19681
|
-
* getProcess
|
|
19682
|
-
* @desc:获取选择流程
|
|
19683
|
-
* @author liufan
|
|
19684
|
-
* @date 2022年5月25日
|
|
19685
|
+
/**
|
|
19686
|
+
* getProcess
|
|
19687
|
+
* @desc:获取选择流程
|
|
19688
|
+
* @author liufan
|
|
19689
|
+
* @date 2022年5月25日
|
|
19685
19690
|
**/
|
|
19686
19691
|
getProcess: function getProcess() {
|
|
19687
19692
|
var _this25 = this;
|
|
@@ -19735,11 +19740,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19735
19740
|
});
|
|
19736
19741
|
},
|
|
19737
19742
|
|
|
19738
|
-
/**
|
|
19739
|
-
* getPendedhistoryList
|
|
19740
|
-
* @desc:获取流程列表
|
|
19741
|
-
* @author liufan
|
|
19742
|
-
* @date 2022年5月25日
|
|
19743
|
+
/**
|
|
19744
|
+
* getPendedhistoryList
|
|
19745
|
+
* @desc:获取流程列表
|
|
19746
|
+
* @author liufan
|
|
19747
|
+
* @date 2022年5月25日
|
|
19743
19748
|
**/
|
|
19744
19749
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
19745
19750
|
var _this26 = this;
|
|
@@ -19771,12 +19776,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19771
19776
|
},
|
|
19772
19777
|
|
|
19773
19778
|
// 提交流程
|
|
19774
|
-
/**
|
|
19775
|
-
* subProcess
|
|
19776
|
-
* @desc:提交流程
|
|
19777
|
-
* @author liufan
|
|
19778
|
-
* @param {String} formName 当前form表单ref值
|
|
19779
|
-
* @date 2022年5月25日
|
|
19779
|
+
/**
|
|
19780
|
+
* subProcess
|
|
19781
|
+
* @desc:提交流程
|
|
19782
|
+
* @author liufan
|
|
19783
|
+
* @param {String} formName 当前form表单ref值
|
|
19784
|
+
* @date 2022年5月25日
|
|
19780
19785
|
**/
|
|
19781
19786
|
subProcess: function subProcess(val) {
|
|
19782
19787
|
var _this27 = this;
|
|
@@ -21433,6 +21438,15 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21433
21438
|
this.getProcess();
|
|
21434
21439
|
}
|
|
21435
21440
|
}
|
|
21441
|
+
},
|
|
21442
|
+
|
|
21443
|
+
flowTypeCode: {
|
|
21444
|
+
handler: function handler(val) {
|
|
21445
|
+
this.isFlow && this.businessId && this.getProcess(val);
|
|
21446
|
+
},
|
|
21447
|
+
|
|
21448
|
+
deep: true,
|
|
21449
|
+
immediate: true
|
|
21436
21450
|
}
|
|
21437
21451
|
},
|
|
21438
21452
|
computed: {
|
|
@@ -21812,11 +21826,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21812
21826
|
});
|
|
21813
21827
|
},
|
|
21814
21828
|
|
|
21815
|
-
/**
|
|
21816
|
-
* saveInfo
|
|
21817
|
-
* @desc:暂存
|
|
21818
|
-
* @author liufan
|
|
21819
|
-
* @date 2022年9月9日
|
|
21829
|
+
/**
|
|
21830
|
+
* saveInfo
|
|
21831
|
+
* @desc:暂存
|
|
21832
|
+
* @author liufan
|
|
21833
|
+
* @date 2022年9月9日
|
|
21820
21834
|
**/
|
|
21821
21835
|
saveInfo: function saveInfo(type, btn) {
|
|
21822
21836
|
var _this8 = this;
|
|
@@ -21878,11 +21892,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21878
21892
|
});
|
|
21879
21893
|
},
|
|
21880
21894
|
|
|
21881
|
-
/**
|
|
21882
|
-
* rejectBtn
|
|
21883
|
-
* @desc:点击驳回
|
|
21884
|
-
* @author liufan
|
|
21885
|
-
* @date 2022年5月25日
|
|
21895
|
+
/**
|
|
21896
|
+
* rejectBtn
|
|
21897
|
+
* @desc:点击驳回
|
|
21898
|
+
* @author liufan
|
|
21899
|
+
* @date 2022年5月25日
|
|
21886
21900
|
**/
|
|
21887
21901
|
rejectBtn: function rejectBtn() {
|
|
21888
21902
|
var _this10 = this;
|
|
@@ -21900,11 +21914,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21900
21914
|
}
|
|
21901
21915
|
},
|
|
21902
21916
|
|
|
21903
|
-
/**
|
|
21904
|
-
* taskReadBtn
|
|
21905
|
-
* @desc:点击分阅
|
|
21906
|
-
* @author liufan
|
|
21907
|
-
* @date 2022年5月25日
|
|
21917
|
+
/**
|
|
21918
|
+
* taskReadBtn
|
|
21919
|
+
* @desc:点击分阅
|
|
21920
|
+
* @author liufan
|
|
21921
|
+
* @date 2022年5月25日
|
|
21908
21922
|
**/
|
|
21909
21923
|
taskReadBtn: function taskReadBtn() {
|
|
21910
21924
|
var _this11 = this;
|
|
@@ -21923,11 +21937,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21923
21937
|
}
|
|
21924
21938
|
},
|
|
21925
21939
|
|
|
21926
|
-
/**
|
|
21927
|
-
* getFind
|
|
21928
|
-
* @desc:获取通知方式
|
|
21929
|
-
* @author liufan
|
|
21930
|
-
* @date 2022年5月25日
|
|
21940
|
+
/**
|
|
21941
|
+
* getFind
|
|
21942
|
+
* @desc:获取通知方式
|
|
21943
|
+
* @author liufan
|
|
21944
|
+
* @date 2022年5月25日
|
|
21931
21945
|
**/
|
|
21932
21946
|
getFind: function getFind() {
|
|
21933
21947
|
var _this12 = this;
|
|
@@ -21992,12 +22006,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21992
22006
|
});
|
|
21993
22007
|
},
|
|
21994
22008
|
|
|
21995
|
-
/**
|
|
21996
|
-
* endFlows
|
|
21997
|
-
* @desc:直接办结
|
|
21998
|
-
* @author liufan
|
|
21999
|
-
* @param {Object} res 直接办结数据
|
|
22000
|
-
* @date 2022年5月25日
|
|
22009
|
+
/**
|
|
22010
|
+
* endFlows
|
|
22011
|
+
* @desc:直接办结
|
|
22012
|
+
* @author liufan
|
|
22013
|
+
* @param {Object} res 直接办结数据
|
|
22014
|
+
* @date 2022年5月25日
|
|
22001
22015
|
**/
|
|
22002
22016
|
endFlows: function endFlows(res) {
|
|
22003
22017
|
var _this14 = this;
|
|
@@ -22051,12 +22065,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22051
22065
|
}).catch(function (e) {});
|
|
22052
22066
|
},
|
|
22053
22067
|
|
|
22054
|
-
/**
|
|
22055
|
-
* goView
|
|
22056
|
-
* @desc:更多流程按钮操作
|
|
22057
|
-
* @author liufan
|
|
22058
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
22059
|
-
* @date 2022年5月25日
|
|
22068
|
+
/**
|
|
22069
|
+
* goView
|
|
22070
|
+
* @desc:更多流程按钮操作
|
|
22071
|
+
* @author liufan
|
|
22072
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
22073
|
+
* @date 2022年5月25日
|
|
22060
22074
|
**/
|
|
22061
22075
|
goView: function goView(res) {
|
|
22062
22076
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -22141,11 +22155,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22141
22155
|
// isCanStartSubFlow
|
|
22142
22156
|
},
|
|
22143
22157
|
|
|
22144
|
-
/**
|
|
22145
|
-
* toTakeAdvice
|
|
22146
|
-
* @desc:征求意见
|
|
22147
|
-
* @author liufan
|
|
22148
|
-
* @date 2022年9月29日
|
|
22158
|
+
/**
|
|
22159
|
+
* toTakeAdvice
|
|
22160
|
+
* @desc:征求意见
|
|
22161
|
+
* @author liufan
|
|
22162
|
+
* @date 2022年9月29日
|
|
22149
22163
|
**/
|
|
22150
22164
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
22151
22165
|
var _this16 = this;
|
|
@@ -22189,11 +22203,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22189
22203
|
});
|
|
22190
22204
|
},
|
|
22191
22205
|
|
|
22192
|
-
/**
|
|
22193
|
-
* toStartDraf
|
|
22194
|
-
* @desc: 稿件递送、联合审核、复核
|
|
22195
|
-
* @author liufan
|
|
22196
|
-
* @date 2022年9月29日
|
|
22206
|
+
/**
|
|
22207
|
+
* toStartDraf
|
|
22208
|
+
* @desc: 稿件递送、联合审核、复核
|
|
22209
|
+
* @author liufan
|
|
22210
|
+
* @date 2022年9月29日
|
|
22197
22211
|
**/
|
|
22198
22212
|
toStartDraf: function toStartDraf(res) {
|
|
22199
22213
|
var _this18 = this;
|
|
@@ -22207,11 +22221,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22207
22221
|
}
|
|
22208
22222
|
},
|
|
22209
22223
|
|
|
22210
|
-
/**
|
|
22211
|
-
* toSendMsg
|
|
22212
|
-
* @desc:核稿通知
|
|
22213
|
-
* @author liufan
|
|
22214
|
-
* @date 2022年9月29日
|
|
22224
|
+
/**
|
|
22225
|
+
* toSendMsg
|
|
22226
|
+
* @desc:核稿通知
|
|
22227
|
+
* @author liufan
|
|
22228
|
+
* @date 2022年9月29日
|
|
22215
22229
|
**/
|
|
22216
22230
|
toSendMsg: function toSendMsg(res) {
|
|
22217
22231
|
var _this19 = this;
|
|
@@ -22225,11 +22239,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22225
22239
|
}
|
|
22226
22240
|
},
|
|
22227
22241
|
|
|
22228
|
-
/**
|
|
22229
|
-
* toTaskReadAndEnd
|
|
22230
|
-
* @desc:分阅并办结
|
|
22231
|
-
* @author liufan
|
|
22232
|
-
* @date 2022年9月29日
|
|
22242
|
+
/**
|
|
22243
|
+
* toTaskReadAndEnd
|
|
22244
|
+
* @desc:分阅并办结
|
|
22245
|
+
* @author liufan
|
|
22246
|
+
* @date 2022年9月29日
|
|
22233
22247
|
**/
|
|
22234
22248
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
22235
22249
|
var _this20 = this;
|
|
@@ -22247,11 +22261,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22247
22261
|
}
|
|
22248
22262
|
},
|
|
22249
22263
|
|
|
22250
|
-
/**
|
|
22251
|
-
* rejectAndEnd
|
|
22252
|
-
* @desc:驳回并办结
|
|
22253
|
-
* @author liufan
|
|
22254
|
-
* @date 2022年9月29日
|
|
22264
|
+
/**
|
|
22265
|
+
* rejectAndEnd
|
|
22266
|
+
* @desc:驳回并办结
|
|
22267
|
+
* @author liufan
|
|
22268
|
+
* @date 2022年9月29日
|
|
22255
22269
|
**/
|
|
22256
22270
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
22257
22271
|
var _this21 = this;
|
|
@@ -22306,11 +22320,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22306
22320
|
});
|
|
22307
22321
|
},
|
|
22308
22322
|
|
|
22309
|
-
/**
|
|
22310
|
-
* toTransfer
|
|
22311
|
-
* @desc:转办
|
|
22312
|
-
* @author liufan
|
|
22313
|
-
* @date 2022年9月29日
|
|
22323
|
+
/**
|
|
22324
|
+
* toTransfer
|
|
22325
|
+
* @desc:转办
|
|
22326
|
+
* @author liufan
|
|
22327
|
+
* @date 2022年9月29日
|
|
22314
22328
|
**/
|
|
22315
22329
|
toTransfer: function toTransfer(res) {
|
|
22316
22330
|
var _this23 = this;
|
|
@@ -22326,11 +22340,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22326
22340
|
}
|
|
22327
22341
|
},
|
|
22328
22342
|
|
|
22329
|
-
/**
|
|
22330
|
-
* getNodeInfo
|
|
22331
|
-
* @desc:获取节点信息
|
|
22332
|
-
* @author liufan
|
|
22333
|
-
* @date 2022年5月25日
|
|
22343
|
+
/**
|
|
22344
|
+
* getNodeInfo
|
|
22345
|
+
* @desc:获取节点信息
|
|
22346
|
+
* @author liufan
|
|
22347
|
+
* @date 2022年5月25日
|
|
22334
22348
|
**/
|
|
22335
22349
|
getNodeInfo: function getNodeInfo() {
|
|
22336
22350
|
var _this24 = this;
|
|
@@ -22429,12 +22443,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22429
22443
|
});
|
|
22430
22444
|
},
|
|
22431
22445
|
|
|
22432
|
-
/**
|
|
22433
|
-
* selecNext
|
|
22434
|
-
* @desc:下步节点变化时更新数据
|
|
22435
|
-
* @author liufan
|
|
22436
|
-
* @param {String} val 当前选中值
|
|
22437
|
-
* @date 2022年5月25日
|
|
22446
|
+
/**
|
|
22447
|
+
* selecNext
|
|
22448
|
+
* @desc:下步节点变化时更新数据
|
|
22449
|
+
* @author liufan
|
|
22450
|
+
* @param {String} val 当前选中值
|
|
22451
|
+
* @date 2022年5月25日
|
|
22438
22452
|
**/
|
|
22439
22453
|
selecNext: function selecNext(val, type, isDef) {
|
|
22440
22454
|
var _this25 = this;
|
|
@@ -22543,11 +22557,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22543
22557
|
if (isDef !== true) this.getNodeInfo();
|
|
22544
22558
|
},
|
|
22545
22559
|
|
|
22546
|
-
/**
|
|
22547
|
-
* isMultiple
|
|
22548
|
-
* @desc:是否多选
|
|
22549
|
-
* @author liufan
|
|
22550
|
-
* @date 2022年9月13日
|
|
22560
|
+
/**
|
|
22561
|
+
* isMultiple
|
|
22562
|
+
* @desc:是否多选
|
|
22563
|
+
* @author liufan
|
|
22564
|
+
* @date 2022年9月13日
|
|
22551
22565
|
**/
|
|
22552
22566
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
22553
22567
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -22579,11 +22593,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22579
22593
|
}
|
|
22580
22594
|
},
|
|
22581
22595
|
|
|
22582
|
-
/**
|
|
22583
|
-
* getHedInfo
|
|
22584
|
-
* @desc:获取审核页面数据
|
|
22585
|
-
* @author liufan
|
|
22586
|
-
* @date 2022年5月25日
|
|
22596
|
+
/**
|
|
22597
|
+
* getHedInfo
|
|
22598
|
+
* @desc:获取审核页面数据
|
|
22599
|
+
* @author liufan
|
|
22600
|
+
* @date 2022年5月25日
|
|
22587
22601
|
**/
|
|
22588
22602
|
getHedInfo: function getHedInfo() {
|
|
22589
22603
|
var _this26 = this;
|
|
@@ -22823,13 +22837,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22823
22837
|
});
|
|
22824
22838
|
},
|
|
22825
22839
|
|
|
22826
|
-
/**
|
|
22827
|
-
* closeProcess
|
|
22828
|
-
* @desc:关闭弹窗
|
|
22829
|
-
* @author liufan
|
|
22830
|
-
* @param {boolean} val 当前是否办理流程
|
|
22831
|
-
* @param {String} type 当前点击的弹窗类型
|
|
22832
|
-
* @date 2022年5月25日
|
|
22840
|
+
/**
|
|
22841
|
+
* closeProcess
|
|
22842
|
+
* @desc:关闭弹窗
|
|
22843
|
+
* @author liufan
|
|
22844
|
+
* @param {boolean} val 当前是否办理流程
|
|
22845
|
+
* @param {String} type 当前点击的弹窗类型
|
|
22846
|
+
* @date 2022年5月25日
|
|
22833
22847
|
**/
|
|
22834
22848
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
22835
22849
|
if (closeParent) {
|
|
@@ -22846,23 +22860,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22846
22860
|
}
|
|
22847
22861
|
},
|
|
22848
22862
|
|
|
22849
|
-
/**
|
|
22850
|
-
* selectChange
|
|
22851
|
-
* @desc:常用语选择
|
|
22852
|
-
* @author liufan
|
|
22853
|
-
* @param {String} val 选中值
|
|
22854
|
-
* @date 2022年5月25日
|
|
22863
|
+
/**
|
|
22864
|
+
* selectChange
|
|
22865
|
+
* @desc:常用语选择
|
|
22866
|
+
* @author liufan
|
|
22867
|
+
* @param {String} val 选中值
|
|
22868
|
+
* @date 2022年5月25日
|
|
22855
22869
|
**/
|
|
22856
22870
|
selectChange: function selectChange(val) {
|
|
22857
22871
|
this.value = val;
|
|
22858
22872
|
},
|
|
22859
22873
|
|
|
22860
|
-
/**
|
|
22861
|
-
* upDate
|
|
22862
|
-
* @desc:修改常用语
|
|
22863
|
-
* @author liufan
|
|
22864
|
-
* @param {Object} val 修改值
|
|
22865
|
-
* @date 2022年5月25日
|
|
22874
|
+
/**
|
|
22875
|
+
* upDate
|
|
22876
|
+
* @desc:修改常用语
|
|
22877
|
+
* @author liufan
|
|
22878
|
+
* @param {Object} val 修改值
|
|
22879
|
+
* @date 2022年5月25日
|
|
22866
22880
|
**/
|
|
22867
22881
|
upDate: function upDate(val) {
|
|
22868
22882
|
this.FormData.id = val.id;
|
|
@@ -22870,18 +22884,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22870
22884
|
},
|
|
22871
22885
|
|
|
22872
22886
|
|
|
22873
|
-
/**
|
|
22874
|
-
* getProcess
|
|
22875
|
-
* @desc:获取选择流程
|
|
22876
|
-
* @author liufan
|
|
22877
|
-
* @date 2022年5月25日
|
|
22887
|
+
/**
|
|
22888
|
+
* getProcess
|
|
22889
|
+
* @desc:获取选择流程
|
|
22890
|
+
* @author liufan
|
|
22891
|
+
* @date 2022年5月25日
|
|
22878
22892
|
**/
|
|
22879
|
-
getProcess: function getProcess() {
|
|
22893
|
+
getProcess: function getProcess(val) {
|
|
22880
22894
|
var _this27 = this;
|
|
22881
22895
|
|
|
22882
22896
|
var params = mainvue_type_script_lang_js_extends({
|
|
22883
22897
|
businessId: this.businessId,
|
|
22884
|
-
flowTypeCode: this.flowTypeCode,
|
|
22898
|
+
flowTypeCode: val || this.flowTypeCode,
|
|
22885
22899
|
// defaultProcessKey: this.defaultProcessKey,
|
|
22886
22900
|
isOnly: true,
|
|
22887
22901
|
hideTempSave: true
|
|
@@ -22926,11 +22940,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22926
22940
|
});
|
|
22927
22941
|
},
|
|
22928
22942
|
|
|
22929
|
-
/**
|
|
22930
|
-
* getPendedhistoryList
|
|
22931
|
-
* @desc:获取流程列表
|
|
22932
|
-
* @author liufan
|
|
22933
|
-
* @date 2022年5月25日
|
|
22943
|
+
/**
|
|
22944
|
+
* getPendedhistoryList
|
|
22945
|
+
* @desc:获取流程列表
|
|
22946
|
+
* @author liufan
|
|
22947
|
+
* @date 2022年5月25日
|
|
22934
22948
|
**/
|
|
22935
22949
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
22936
22950
|
var _this28 = this;
|
|
@@ -22997,12 +23011,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22997
23011
|
},
|
|
22998
23012
|
|
|
22999
23013
|
// 提交流程
|
|
23000
|
-
/**
|
|
23001
|
-
* subProcess
|
|
23002
|
-
* @desc:提交流程
|
|
23003
|
-
* @author liufan
|
|
23004
|
-
* @param {String} formName 当前form表单ref值
|
|
23005
|
-
* @date 2022年5月25日
|
|
23014
|
+
/**
|
|
23015
|
+
* subProcess
|
|
23016
|
+
* @desc:提交流程
|
|
23017
|
+
* @author liufan
|
|
23018
|
+
* @param {String} formName 当前form表单ref值
|
|
23019
|
+
* @date 2022年5月25日
|
|
23006
23020
|
**/
|
|
23007
23021
|
subProcess: function subProcess(val, type) {
|
|
23008
23022
|
var _this30 = this;
|