eoss-ui 0.5.34 → 0.5.37
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 +17 -0
- package/lib/button.js +17 -0
- package/lib/checkbox-group.js +17 -0
- package/lib/data-table-form.js +17 -0
- package/lib/data-table.js +17 -0
- package/lib/date-picker.js +17 -0
- package/lib/dialog.js +17 -0
- package/lib/eoss-ui.common.js +493 -368
- package/lib/flow-group.js +17 -0
- package/lib/flow-list.js +17 -0
- package/lib/flow.js +425 -305
- package/lib/form.js +17 -0
- package/lib/handle-user.js +17 -0
- package/lib/handler.js +17 -0
- package/lib/index.js +1 -1
- package/lib/input-number.js +17 -0
- package/lib/input.js +17 -0
- package/lib/login.js +41 -15
- package/lib/main.js +35 -24
- package/lib/nav.js +17 -0
- package/lib/page.js +17 -0
- package/lib/player.js +17 -0
- package/lib/qr-code.js +17 -0
- package/lib/radio-group.js +17 -0
- package/lib/retrial-auth.js +17 -0
- package/lib/select-ganged.js +17 -0
- package/lib/select.js +17 -0
- package/lib/selector-panel.js +17 -0
- package/lib/selector.js +17 -0
- package/lib/sizer.js +17 -0
- package/lib/steps.js +17 -0
- package/lib/switch.js +17 -0
- package/lib/table-form.js +25 -6
- package/lib/tabs.js +17 -0
- package/lib/tips.js +17 -0
- package/lib/tree-group.js +17 -0
- package/lib/tree.js +17 -0
- package/lib/upload.js +17 -0
- package/lib/utils/util.js +17 -0
- package/lib/wujie.js +17 -0
- package/lib/wxlogin.js +17 -0
- package/package.json +1 -1
- package/packages/flow/src/main.vue +117 -23
- package/packages/flow/src/processForm.vue +7 -1
- package/packages/flow/src/processReject.vue +4 -1
- package/packages/form/src/table.vue +2 -1
- package/packages/login/src/main.vue +9 -2
- package/packages/login/src/resetPassword.vue +7 -5
- package/packages/main/src/main.vue +11 -20
- package/packages/main/src/userinfo.vue +1 -1
- package/src/index.js +1 -1
- package/src/utils/util.js +22 -2
- package/CHANGELOG.md +0 -929
package/lib/eoss-ui.common.js
CHANGED
|
@@ -1294,6 +1294,7 @@ var getLength = function getLength(text) {
|
|
|
1294
1294
|
* @desc:转换明度
|
|
1295
1295
|
* @author huangbo
|
|
1296
1296
|
* @date 2022年5月7日
|
|
1297
|
+
* @return {string,array} 元素类名或者id
|
|
1297
1298
|
**/
|
|
1298
1299
|
var getLightness = function getLightness($v, $i, $isLight) {
|
|
1299
1300
|
var $value = $isLight ? $v + $brightnessStep1 * $i : $v - $brightnessStep2 * $i;
|
|
@@ -1301,6 +1302,21 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1301
1302
|
return toFixed($value, 2);
|
|
1302
1303
|
};
|
|
1303
1304
|
|
|
1305
|
+
/**
|
|
1306
|
+
* getMainConfig
|
|
1307
|
+
* @desc 获取系统配置
|
|
1308
|
+
* @author huangbo
|
|
1309
|
+
* @date 2022年5月7日
|
|
1310
|
+
* @param {function} callback - 回调函数
|
|
1311
|
+
**/
|
|
1312
|
+
var getMainConfig = function getMainConfig(callback) {
|
|
1313
|
+
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
|
|
1314
|
+
if (res && res.rCode === 0) {
|
|
1315
|
+
callback(res.results);
|
|
1316
|
+
}
|
|
1317
|
+
}).catch(function () {});
|
|
1318
|
+
};
|
|
1319
|
+
|
|
1304
1320
|
/**
|
|
1305
1321
|
* getMinute
|
|
1306
1322
|
* @desc 获取分钟
|
|
@@ -2931,6 +2947,7 @@ var watermark = function watermark(option) {
|
|
|
2931
2947
|
getHour: getHour,
|
|
2932
2948
|
getWeekNumber: getWeekNumber,
|
|
2933
2949
|
getLength: getLength,
|
|
2950
|
+
getMainConfig: getMainConfig,
|
|
2934
2951
|
getMinute: getMinute,
|
|
2935
2952
|
getMonth: getMonth,
|
|
2936
2953
|
getObjectType: getObjectType,
|
|
@@ -28593,8 +28610,8 @@ form_src_main.install = function (Vue) {
|
|
|
28593
28610
|
};
|
|
28594
28611
|
|
|
28595
28612
|
/* harmony default export */ var packages_form = (form_src_main);
|
|
28596
|
-
// 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=
|
|
28597
|
-
var
|
|
28613
|
+
// 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=7620c3cc&
|
|
28614
|
+
var mainvue_type_template_id_7620c3cc_render = function () {
|
|
28598
28615
|
var _vm = this
|
|
28599
28616
|
var _h = _vm.$createElement
|
|
28600
28617
|
var _c = _vm._self._c || _h
|
|
@@ -29809,7 +29826,7 @@ var mainvue_type_template_id_2d625847_render = function () {
|
|
|
29809
29826
|
},
|
|
29810
29827
|
[
|
|
29811
29828
|
_vm._v(
|
|
29812
|
-
"\n
|
|
29829
|
+
"\n " +
|
|
29813
29830
|
_vm._s(
|
|
29814
29831
|
_vm.rejectObj.value
|
|
29815
29832
|
) +
|
|
@@ -30313,11 +30330,11 @@ var mainvue_type_template_id_2d625847_render = function () {
|
|
|
30313
30330
|
)
|
|
30314
30331
|
: _vm._e()
|
|
30315
30332
|
}
|
|
30316
|
-
var
|
|
30317
|
-
|
|
30333
|
+
var mainvue_type_template_id_7620c3cc_staticRenderFns = []
|
|
30334
|
+
mainvue_type_template_id_7620c3cc_render._withStripped = true
|
|
30318
30335
|
|
|
30319
30336
|
|
|
30320
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
30337
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7620c3cc&
|
|
30321
30338
|
|
|
30322
30339
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=4e1f4030&
|
|
30323
30340
|
var CommonOpinionsvue_type_template_id_4e1f4030_render = function () {
|
|
@@ -31257,8 +31274,8 @@ var CommonOpinions_component = normalizeComponent(
|
|
|
31257
31274
|
)
|
|
31258
31275
|
|
|
31259
31276
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
31260
|
-
// 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=
|
|
31261
|
-
var
|
|
31277
|
+
// 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=aaac09fe&
|
|
31278
|
+
var processFormvue_type_template_id_aaac09fe_render = function () {
|
|
31262
31279
|
var _vm = this
|
|
31263
31280
|
var _h = _vm.$createElement
|
|
31264
31281
|
var _c = _vm._self._c || _h
|
|
@@ -31724,11 +31741,11 @@ var processFormvue_type_template_id_b6491348_render = function () {
|
|
|
31724
31741
|
1
|
|
31725
31742
|
)
|
|
31726
31743
|
}
|
|
31727
|
-
var
|
|
31728
|
-
|
|
31744
|
+
var processFormvue_type_template_id_aaac09fe_staticRenderFns = []
|
|
31745
|
+
processFormvue_type_template_id_aaac09fe_render._withStripped = true
|
|
31729
31746
|
|
|
31730
31747
|
|
|
31731
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
31748
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=aaac09fe&
|
|
31732
31749
|
|
|
31733
31750
|
// 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=db651118&
|
|
31734
31751
|
var selectUservue_type_template_id_db651118_render = function () {
|
|
@@ -33640,7 +33657,10 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33640
33657
|
|
|
33641
33658
|
utils_util["a" /* default */].ajax({
|
|
33642
33659
|
url: api["u" /* findCodeValues */],
|
|
33643
|
-
params: {
|
|
33660
|
+
params: {
|
|
33661
|
+
ccCode: 'notification_type',
|
|
33662
|
+
userId: utils_util["a" /* default */].getStorage('userId')
|
|
33663
|
+
}
|
|
33644
33664
|
}).then(function (res) {
|
|
33645
33665
|
var status = res.status,
|
|
33646
33666
|
data = res.data;
|
|
@@ -33679,6 +33699,9 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33679
33699
|
|
|
33680
33700
|
// 提交表单
|
|
33681
33701
|
subProcess: function subProcess(formName) {
|
|
33702
|
+
this.saveProcess(formName);
|
|
33703
|
+
},
|
|
33704
|
+
saveProcess: function saveProcess(formName) {
|
|
33682
33705
|
var _this3 = this;
|
|
33683
33706
|
|
|
33684
33707
|
this.$refs[formName].validate(function (valid) {
|
|
@@ -34018,8 +34041,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
34018
34041
|
|
|
34019
34042
|
var processForm_component = normalizeComponent(
|
|
34020
34043
|
src_processFormvue_type_script_lang_js_,
|
|
34021
|
-
|
|
34022
|
-
|
|
34044
|
+
processFormvue_type_template_id_aaac09fe_render,
|
|
34045
|
+
processFormvue_type_template_id_aaac09fe_staticRenderFns,
|
|
34023
34046
|
false,
|
|
34024
34047
|
null,
|
|
34025
34048
|
null,
|
|
@@ -35032,8 +35055,8 @@ var TimeLimit_component = normalizeComponent(
|
|
|
35032
35055
|
)
|
|
35033
35056
|
|
|
35034
35057
|
/* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
|
|
35035
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=
|
|
35036
|
-
var
|
|
35058
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=432cf815&
|
|
35059
|
+
var processRejectvue_type_template_id_432cf815_render = function () {
|
|
35037
35060
|
var _vm = this
|
|
35038
35061
|
var _h = _vm.$createElement
|
|
35039
35062
|
var _c = _vm._self._c || _h
|
|
@@ -35224,11 +35247,11 @@ var processRejectvue_type_template_id_b5a52fc0_render = function () {
|
|
|
35224
35247
|
1
|
|
35225
35248
|
)
|
|
35226
35249
|
}
|
|
35227
|
-
var
|
|
35228
|
-
|
|
35250
|
+
var processRejectvue_type_template_id_432cf815_staticRenderFns = []
|
|
35251
|
+
processRejectvue_type_template_id_432cf815_render._withStripped = true
|
|
35229
35252
|
|
|
35230
35253
|
|
|
35231
|
-
// CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=
|
|
35254
|
+
// CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=432cf815&
|
|
35232
35255
|
|
|
35233
35256
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=script&lang=js&
|
|
35234
35257
|
//
|
|
@@ -35380,6 +35403,9 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
35380
35403
|
|
|
35381
35404
|
// 提交表单
|
|
35382
35405
|
subProcess: function subProcess(formName) {
|
|
35406
|
+
this.saveProcess(formName);
|
|
35407
|
+
},
|
|
35408
|
+
saveProcess: function saveProcess(formName) {
|
|
35383
35409
|
var _this2 = this;
|
|
35384
35410
|
|
|
35385
35411
|
this.$refs[formName].validate(function (valid) {
|
|
@@ -35506,8 +35532,8 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
35506
35532
|
|
|
35507
35533
|
var processReject_component = normalizeComponent(
|
|
35508
35534
|
src_processRejectvue_type_script_lang_js_,
|
|
35509
|
-
|
|
35510
|
-
|
|
35535
|
+
processRejectvue_type_template_id_432cf815_render,
|
|
35536
|
+
processRejectvue_type_template_id_432cf815_staticRenderFns,
|
|
35511
35537
|
false,
|
|
35512
35538
|
null,
|
|
35513
35539
|
null,
|
|
@@ -37882,6 +37908,10 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
37882
37908
|
//
|
|
37883
37909
|
//
|
|
37884
37910
|
//
|
|
37911
|
+
//
|
|
37912
|
+
//
|
|
37913
|
+
//
|
|
37914
|
+
//
|
|
37885
37915
|
|
|
37886
37916
|
|
|
37887
37917
|
|
|
@@ -38365,7 +38395,10 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38365
38395
|
|
|
38366
38396
|
utils_util["a" /* default */].ajax({
|
|
38367
38397
|
url: api["u" /* findCodeValues */],
|
|
38368
|
-
params: {
|
|
38398
|
+
params: {
|
|
38399
|
+
ccCode: 'notification_type',
|
|
38400
|
+
userId: utils_util["a" /* default */].getStorage('userId')
|
|
38401
|
+
}
|
|
38369
38402
|
}).then(function (res) {
|
|
38370
38403
|
var status = res.status,
|
|
38371
38404
|
data = res.data;
|
|
@@ -38453,11 +38486,22 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38453
38486
|
* @date 2022年5月25日
|
|
38454
38487
|
**/
|
|
38455
38488
|
rejectBtn: function rejectBtn() {
|
|
38489
|
+
var _this8 = this;
|
|
38490
|
+
|
|
38456
38491
|
if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
|
|
38457
|
-
if (
|
|
38458
|
-
|
|
38492
|
+
if (this.beforeSubmit != undefined) {
|
|
38493
|
+
this.beforeSubmit().then(function (next) {
|
|
38494
|
+
if (!_this8.value) {
|
|
38495
|
+
return _this8.$message.warning('请填写意见');
|
|
38496
|
+
}
|
|
38497
|
+
_this8.showReject = true;
|
|
38498
|
+
}).catch(function (e) {});
|
|
38499
|
+
} else {
|
|
38500
|
+
if (!this.value) {
|
|
38501
|
+
return this.$message.warning('请填写意见');
|
|
38502
|
+
}
|
|
38503
|
+
this.showReject = true;
|
|
38459
38504
|
}
|
|
38460
|
-
this.showReject = true;
|
|
38461
38505
|
},
|
|
38462
38506
|
|
|
38463
38507
|
/**
|
|
@@ -38467,10 +38511,20 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38467
38511
|
* @date 2022年5月25日
|
|
38468
38512
|
**/
|
|
38469
38513
|
taskReadBtn: function taskReadBtn() {
|
|
38514
|
+
var _this9 = this;
|
|
38515
|
+
|
|
38470
38516
|
// return this.$message.warning('暂未开放!敬请期待');
|
|
38471
|
-
if (this.
|
|
38472
|
-
|
|
38473
|
-
|
|
38517
|
+
if (this.beforeSubmit != undefined) {
|
|
38518
|
+
this.beforeSubmit().then(function (next) {
|
|
38519
|
+
if (_this9.value === '') _this9.value = _this9.nodeDefaultRejectOpinion;
|
|
38520
|
+
_this9.taskReadType = 'create';
|
|
38521
|
+
_this9.showTaskRead = true;
|
|
38522
|
+
}).catch(function (e) {});
|
|
38523
|
+
} else {
|
|
38524
|
+
if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
|
|
38525
|
+
this.taskReadType = 'create';
|
|
38526
|
+
this.showTaskRead = true;
|
|
38527
|
+
}
|
|
38474
38528
|
},
|
|
38475
38529
|
|
|
38476
38530
|
/**
|
|
@@ -38480,7 +38534,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38480
38534
|
* @date 2022年5月25日
|
|
38481
38535
|
**/
|
|
38482
38536
|
getFind: function getFind() {
|
|
38483
|
-
var
|
|
38537
|
+
var _this10 = this;
|
|
38484
38538
|
|
|
38485
38539
|
utils_util["a" /* default */].ajax({
|
|
38486
38540
|
url: api["w" /* findSysCodes */]
|
|
@@ -38489,11 +38543,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38489
38543
|
message = res.message;
|
|
38490
38544
|
|
|
38491
38545
|
if (status === 'success') {
|
|
38492
|
-
|
|
38546
|
+
_this10.nextNode.notificationType = message.split(',');
|
|
38493
38547
|
}
|
|
38494
38548
|
}).catch(function (err) {
|
|
38495
38549
|
if (err.message && err.message !== 'canceled') {
|
|
38496
|
-
|
|
38550
|
+
_this10.$message.error(err.message);
|
|
38497
38551
|
}
|
|
38498
38552
|
});
|
|
38499
38553
|
},
|
|
@@ -38506,41 +38560,52 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38506
38560
|
* @date 2022年5月25日
|
|
38507
38561
|
**/
|
|
38508
38562
|
endFlows: function endFlows(res) {
|
|
38509
|
-
var
|
|
38563
|
+
var _this11 = this;
|
|
38564
|
+
|
|
38565
|
+
if (this.beforeSubmit != undefined) {
|
|
38566
|
+
this.beforeSubmit().then(function (next) {
|
|
38567
|
+
_this11.saveEndFlows(res);
|
|
38568
|
+
}).catch(function (e) {});
|
|
38569
|
+
} else {
|
|
38570
|
+
this.saveEndFlows(res);
|
|
38571
|
+
}
|
|
38572
|
+
},
|
|
38573
|
+
saveEndFlows: function saveEndFlows(res) {
|
|
38574
|
+
var _this12 = this;
|
|
38510
38575
|
|
|
38511
38576
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
38512
38577
|
var params = {
|
|
38513
38578
|
url: api["t" /* endFlowHtml */],
|
|
38514
38579
|
headers: { Accept: 'application/json,text/plain' },
|
|
38515
38580
|
method: 'post',
|
|
38516
|
-
data: flow_src_mainvue_type_script_lang_js_extends({},
|
|
38517
|
-
opinion:
|
|
38581
|
+
data: flow_src_mainvue_type_script_lang_js_extends({}, _this12.endFlowInfo, _this12.nextNode, {
|
|
38582
|
+
opinion: _this12.value,
|
|
38518
38583
|
userId: utils_util["a" /* default */].getStorage('userId'),
|
|
38519
|
-
nextUserId:
|
|
38520
|
-
addSignUserId:
|
|
38521
|
-
customPresetUserJson: JSON.stringify(
|
|
38522
|
-
presetUserJson: JSON.stringify(
|
|
38523
|
-
removeSignUserId:
|
|
38524
|
-
notificationType:
|
|
38584
|
+
nextUserId: _this12.multiple ? _this12.nextNode.nextUserId.join(',') : _this12.nextNode.nextUserId,
|
|
38585
|
+
addSignUserId: _this12.nextNode.addSignUserId.join(','),
|
|
38586
|
+
customPresetUserJson: JSON.stringify(_this12.presetList),
|
|
38587
|
+
presetUserJson: JSON.stringify(_this12.presetUserJson),
|
|
38588
|
+
removeSignUserId: _this12.nextNode.removeSignUserId.join(','),
|
|
38589
|
+
notificationType: _this12.nextNode.notificationType.join(',')
|
|
38525
38590
|
})
|
|
38526
38591
|
};
|
|
38527
|
-
|
|
38592
|
+
_this12.loading = utils_util["a" /* default */].loading(_this12.$loading, '加载中...');
|
|
38528
38593
|
utils_util["a" /* default */].ajax(params).then(function (res) {
|
|
38529
38594
|
var status = res.status,
|
|
38530
38595
|
message = res.message;
|
|
38531
38596
|
|
|
38532
|
-
|
|
38597
|
+
_this12.loading.close();
|
|
38533
38598
|
if (status === 'success') {
|
|
38534
|
-
|
|
38535
|
-
|
|
38599
|
+
_this12.$message.success('提交成功');
|
|
38600
|
+
_this12.$emit('success');
|
|
38536
38601
|
} else {
|
|
38537
|
-
|
|
38538
|
-
|
|
38602
|
+
_this12.$message.error(message || '系统错误,请联系管理员!');
|
|
38603
|
+
_this12.$emit('error');
|
|
38539
38604
|
}
|
|
38540
38605
|
}).catch(function (err) {
|
|
38541
|
-
|
|
38606
|
+
_this12.loading.close();
|
|
38542
38607
|
if (err.message && err.message !== 'canceled') {
|
|
38543
|
-
|
|
38608
|
+
_this12.$message.error(err.message);
|
|
38544
38609
|
}
|
|
38545
38610
|
});
|
|
38546
38611
|
}).catch(function (e) {});
|
|
@@ -38635,7 +38700,19 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38635
38700
|
* @date 2022年9月29日
|
|
38636
38701
|
**/
|
|
38637
38702
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
38638
|
-
var
|
|
38703
|
+
var _this13 = this;
|
|
38704
|
+
|
|
38705
|
+
if (this.beforeSubmit != undefined) {
|
|
38706
|
+
this.beforeSubmit().then(function (next) {
|
|
38707
|
+
_this13.saveToTakeAdvice(res);
|
|
38708
|
+
}).catch(function (e) {});
|
|
38709
|
+
} else {
|
|
38710
|
+
this.saveToTakeAdvice(res);
|
|
38711
|
+
}
|
|
38712
|
+
// return this.$message.warning('暂未开放!敬请期待');
|
|
38713
|
+
},
|
|
38714
|
+
saveToTakeAdvice: function saveToTakeAdvice(res) {
|
|
38715
|
+
var _this14 = this;
|
|
38639
38716
|
|
|
38640
38717
|
var params = {
|
|
38641
38718
|
url: api["Z" /* isCanStartSubFlow */],
|
|
@@ -38650,19 +38727,18 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38650
38727
|
utils_util["a" /* default */].ajax(params).then(function (res) {
|
|
38651
38728
|
var message = res.message;
|
|
38652
38729
|
|
|
38653
|
-
|
|
38730
|
+
_this14.loading.close();
|
|
38654
38731
|
if (message == 'success') {
|
|
38655
|
-
|
|
38732
|
+
_this14.showTaskUnionExamine = true;
|
|
38656
38733
|
} else {
|
|
38657
|
-
|
|
38734
|
+
_this14.$message.error(message || '系统错误,请联系管理员!');
|
|
38658
38735
|
}
|
|
38659
38736
|
}).catch(function (err) {
|
|
38660
|
-
|
|
38737
|
+
_this14.loading.close();
|
|
38661
38738
|
if (err.message && err.message !== 'canceled') {
|
|
38662
|
-
|
|
38739
|
+
_this14.$message.error(err.message);
|
|
38663
38740
|
}
|
|
38664
38741
|
});
|
|
38665
|
-
// return this.$message.warning('暂未开放!敬请期待');
|
|
38666
38742
|
},
|
|
38667
38743
|
|
|
38668
38744
|
/**
|
|
@@ -38672,7 +38748,15 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38672
38748
|
* @date 2022年9月29日
|
|
38673
38749
|
**/
|
|
38674
38750
|
toStartDraf: function toStartDraf(res) {
|
|
38675
|
-
|
|
38751
|
+
var _this15 = this;
|
|
38752
|
+
|
|
38753
|
+
if (this.beforeSubmit != undefined) {
|
|
38754
|
+
this.beforeSubmit().then(function (next) {
|
|
38755
|
+
_this15.showTaskUnionExamine = true;
|
|
38756
|
+
}).catch(function (e) {});
|
|
38757
|
+
} else {
|
|
38758
|
+
this.showTaskUnionExamine = true;
|
|
38759
|
+
}
|
|
38676
38760
|
},
|
|
38677
38761
|
|
|
38678
38762
|
/**
|
|
@@ -38682,7 +38766,15 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38682
38766
|
* @date 2022年9月29日
|
|
38683
38767
|
**/
|
|
38684
38768
|
toSendMsg: function toSendMsg(res) {
|
|
38685
|
-
|
|
38769
|
+
var _this16 = this;
|
|
38770
|
+
|
|
38771
|
+
if (this.beforeSubmit != undefined) {
|
|
38772
|
+
this.beforeSubmit().then(function (next) {
|
|
38773
|
+
_this16.showSendMsg = true;
|
|
38774
|
+
}).catch(function (e) {});
|
|
38775
|
+
} else {
|
|
38776
|
+
this.showSendMsg = true;
|
|
38777
|
+
}
|
|
38686
38778
|
},
|
|
38687
38779
|
|
|
38688
38780
|
/**
|
|
@@ -38692,9 +38784,19 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38692
38784
|
* @date 2022年9月29日
|
|
38693
38785
|
**/
|
|
38694
38786
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
38695
|
-
|
|
38696
|
-
|
|
38697
|
-
this.
|
|
38787
|
+
var _this17 = this;
|
|
38788
|
+
|
|
38789
|
+
if (this.beforeSubmit != undefined) {
|
|
38790
|
+
this.beforeSubmit().then(function (next) {
|
|
38791
|
+
if (_this17.value === '') _this17.value = _this17.nodeDefaultRejectOpinion;
|
|
38792
|
+
_this17.taskReadType = 'taskReadAndEnd';
|
|
38793
|
+
_this17.showTaskRead = true;
|
|
38794
|
+
}).catch(function (e) {});
|
|
38795
|
+
} else {
|
|
38796
|
+
if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
|
|
38797
|
+
this.taskReadType = 'taskReadAndEnd';
|
|
38798
|
+
this.showTaskRead = true;
|
|
38799
|
+
}
|
|
38698
38800
|
},
|
|
38699
38801
|
|
|
38700
38802
|
/**
|
|
@@ -38704,43 +38806,53 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38704
38806
|
* @date 2022年9月29日
|
|
38705
38807
|
**/
|
|
38706
38808
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
38707
|
-
var
|
|
38809
|
+
var _this18 = this;
|
|
38810
|
+
|
|
38811
|
+
if (this.beforeSubmit != undefined) {
|
|
38812
|
+
this.beforeSubmit().then(function (next) {
|
|
38813
|
+
_this18.saveRejectAndEnd(res);
|
|
38814
|
+
}).catch(function (e) {});
|
|
38815
|
+
} else {
|
|
38816
|
+
this.saveRejectAndEnd(res);
|
|
38817
|
+
}
|
|
38818
|
+
},
|
|
38819
|
+
saveRejectAndEnd: function saveRejectAndEnd(res) {
|
|
38820
|
+
var _this19 = this;
|
|
38708
38821
|
|
|
38709
38822
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
38710
|
-
if (
|
|
38823
|
+
if (_this19.isOpinionRequired == 1 && (_this19.value == '' || !_this19.value)) return _this19.$message.warning('请填写意见');
|
|
38711
38824
|
var params = {
|
|
38712
38825
|
url: api["mb" /* rejectAndEnd */],
|
|
38713
38826
|
headers: { Accept: 'application/json,text/plain' },
|
|
38714
38827
|
method: 'post',
|
|
38715
38828
|
data: {
|
|
38716
|
-
opinion:
|
|
38717
|
-
pendingId:
|
|
38829
|
+
opinion: _this19.value,
|
|
38830
|
+
pendingId: _this19.pendingId,
|
|
38718
38831
|
isSinglePage: false
|
|
38719
38832
|
}
|
|
38720
38833
|
};
|
|
38721
|
-
|
|
38834
|
+
_this19.loading = utils_util["a" /* default */].loading(_this19.$loading, '加载中...');
|
|
38722
38835
|
utils_util["a" /* default */].ajax(params).then(function (res) {
|
|
38723
38836
|
var status = res.status,
|
|
38724
38837
|
message = res.message;
|
|
38725
38838
|
|
|
38726
|
-
|
|
38839
|
+
_this19.loading.close();
|
|
38727
38840
|
if (status === 'success') {
|
|
38728
|
-
|
|
38729
|
-
|
|
38841
|
+
_this19.$message.success('提交成功');
|
|
38842
|
+
_this19.$emit('success');
|
|
38730
38843
|
} else {
|
|
38731
|
-
|
|
38732
|
-
|
|
38844
|
+
_this19.$message.error(message || '系统错误,请联系管理员!');
|
|
38845
|
+
_this19.$emit('error');
|
|
38733
38846
|
}
|
|
38734
38847
|
}).catch(function (err) {
|
|
38735
|
-
|
|
38848
|
+
_this19.loading.close();
|
|
38736
38849
|
if (err.message && err.message !== 'canceled') {
|
|
38737
|
-
|
|
38850
|
+
_this19.$message.error(err.message);
|
|
38738
38851
|
}
|
|
38739
38852
|
});
|
|
38740
38853
|
}).catch(function () {
|
|
38741
38854
|
// on cancel
|
|
38742
38855
|
});
|
|
38743
|
-
// return this.$message.warning('暂未开放!敬请期待');
|
|
38744
38856
|
},
|
|
38745
38857
|
|
|
38746
38858
|
/**
|
|
@@ -38750,9 +38862,17 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38750
38862
|
* @date 2022年9月29日
|
|
38751
38863
|
**/
|
|
38752
38864
|
toTransfer: function toTransfer(res) {
|
|
38753
|
-
|
|
38754
|
-
|
|
38755
|
-
|
|
38865
|
+
var _this20 = this;
|
|
38866
|
+
|
|
38867
|
+
if (this.beforeSubmit != undefined) {
|
|
38868
|
+
this.beforeSubmit().then(function (next) {
|
|
38869
|
+
_this20.taskReadType = 'transfer';
|
|
38870
|
+
_this20.showTaskRead = true;
|
|
38871
|
+
}).catch(function (e) {});
|
|
38872
|
+
} else {
|
|
38873
|
+
this.taskReadType = 'transfer';
|
|
38874
|
+
this.showTaskRead = true;
|
|
38875
|
+
}
|
|
38756
38876
|
},
|
|
38757
38877
|
|
|
38758
38878
|
/**
|
|
@@ -38762,7 +38882,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38762
38882
|
* @date 2022年5月25日
|
|
38763
38883
|
**/
|
|
38764
38884
|
getNodeInfo: function getNodeInfo() {
|
|
38765
|
-
var
|
|
38885
|
+
var _this21 = this;
|
|
38766
38886
|
|
|
38767
38887
|
var params = {
|
|
38768
38888
|
processDefinitionId: this.nodeInfo.nextNode,
|
|
@@ -38777,42 +38897,42 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38777
38897
|
message = res.message,
|
|
38778
38898
|
data = res.data;
|
|
38779
38899
|
|
|
38780
|
-
|
|
38900
|
+
_this21.loading.close();
|
|
38781
38901
|
if (status === 'success') {
|
|
38782
38902
|
if (data != null) {
|
|
38783
38903
|
if (data.nodeExtAttr.userSelectionType == 7 || data.nodeExtAttr.userSelectionType == 8 || data.nodeExtAttr.userSelectionType == 9 || data.nodeExtAttr.userSelectionType == 10 || data.nodeExtAttr.userSelectionType == 11 || data.nodeExtAttr.userSelectionType == 12) {
|
|
38784
|
-
|
|
38904
|
+
_this21.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
|
|
38785
38905
|
} else {
|
|
38786
|
-
|
|
38906
|
+
_this21.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this21.choiceOrgId, _this21.choiceDeptId, _this21.pOrgId);
|
|
38787
38907
|
}
|
|
38788
|
-
|
|
38789
|
-
|
|
38790
|
-
|
|
38791
|
-
|
|
38792
|
-
|
|
38908
|
+
_this21.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
|
|
38909
|
+
_this21.isTaskread = data.nodeExtAttr.isTaskread;
|
|
38910
|
+
_this21.isHandleExplain = data.nodeExtAttr.isHandleExplain;
|
|
38911
|
+
_this21.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
|
|
38912
|
+
_this21.nodeType = data.nodeExtAttr.nodeType;
|
|
38793
38913
|
//如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
|
|
38794
|
-
if (
|
|
38795
|
-
|
|
38796
|
-
|
|
38797
|
-
|
|
38798
|
-
|
|
38799
|
-
|
|
38914
|
+
if (_this21.nodeType === 1 || _this21.nodeType === 2) {
|
|
38915
|
+
_this21.isMainSubProcess === true ? _this21.isNodeShowProcess = true : _this21.isNodeShowProcess = false;
|
|
38916
|
+
_this21.isMainSubProcess === true ? _this21.isMainSubProcess = true : _this21.isMainSubProcess = false;
|
|
38917
|
+
_this21.isNextUser = false;
|
|
38918
|
+
_this21.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
|
|
38919
|
+
_this21.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
|
|
38800
38920
|
} else {
|
|
38801
|
-
|
|
38802
|
-
|
|
38803
|
-
|
|
38804
|
-
|
|
38805
|
-
|
|
38921
|
+
_this21.isHideCurrentOrg = false;
|
|
38922
|
+
_this21.isHideOtherOrg = false;
|
|
38923
|
+
_this21.isNodeShowProcess = false;
|
|
38924
|
+
_this21.isMainSubProcess = false;
|
|
38925
|
+
_this21.isNextUser = true;
|
|
38806
38926
|
// this.isMainSubProcess === true
|
|
38807
38927
|
// ? (this.isMainSubProcess = true)
|
|
38808
38928
|
// : (this.isMainSubProcess = false);
|
|
38809
38929
|
}
|
|
38810
|
-
|
|
38811
|
-
if (
|
|
38930
|
+
_this21.multiple ? _this21.nextNode.nextUserId = [] : _this21.nextNode.nextUserId = '';
|
|
38931
|
+
if (_this21.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
|
|
38812
38932
|
data.nextUserList.map(function (item) {
|
|
38813
38933
|
if (item.userId && item.username) {
|
|
38814
|
-
|
|
38815
|
-
|
|
38934
|
+
_this21.nextNode.nextUserId.push(item.userId);
|
|
38935
|
+
_this21.selectUserList.push({
|
|
38816
38936
|
showname: item.username,
|
|
38817
38937
|
showid: item.userId
|
|
38818
38938
|
});
|
|
@@ -38821,37 +38941,37 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38821
38941
|
}
|
|
38822
38942
|
data.nextUserList.map(function (item) {
|
|
38823
38943
|
if (item.userId && item.username) {
|
|
38824
|
-
|
|
38944
|
+
_this21.options.push({
|
|
38825
38945
|
showname: item.username,
|
|
38826
38946
|
showid: item.userId
|
|
38827
38947
|
});
|
|
38828
38948
|
}
|
|
38829
38949
|
});
|
|
38830
38950
|
if (data.nodeExtAttr.presetEdit != 0) {
|
|
38831
|
-
|
|
38951
|
+
_this21.radioList = _this21.options;
|
|
38832
38952
|
}
|
|
38833
|
-
if (!
|
|
38834
|
-
|
|
38835
|
-
|
|
38953
|
+
if (!_this21.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
|
|
38954
|
+
_this21.nextNode.nextUserId = data.nextUserList[0].userId;
|
|
38955
|
+
_this21.selectUserList.push({
|
|
38836
38956
|
showname: data.nextUserList[0].username,
|
|
38837
38957
|
showid: data.nextUserList[0].userId
|
|
38838
38958
|
});
|
|
38839
38959
|
}
|
|
38840
|
-
|
|
38841
|
-
|
|
38842
|
-
|
|
38843
|
-
|
|
38844
|
-
|
|
38845
|
-
data.globalNodeType === 'endEvent' ?
|
|
38960
|
+
_this21.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
|
|
38961
|
+
_this21.isCustomUser = data.nodeExtAttr.isCustomUser;
|
|
38962
|
+
_this21.presetEdit = data.nodeExtAttr.presetEdit;
|
|
38963
|
+
_this21.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
|
|
38964
|
+
_this21.handleMode = data.countersignaturetypeText;
|
|
38965
|
+
data.globalNodeType === 'endEvent' ? _this21.endFlow = true : '';
|
|
38846
38966
|
}
|
|
38847
|
-
|
|
38967
|
+
_this21.isCustomPreset && _this21.$refs.customPreset.getPresetFlowInfo(_this21.nextNode.nextNodeId, _this21.nodeInfo.nextNode, true);
|
|
38848
38968
|
} else {
|
|
38849
|
-
|
|
38969
|
+
_this21.$message.error(message || '系统错误,请联系管理员!');
|
|
38850
38970
|
}
|
|
38851
38971
|
}).catch(function (err) {
|
|
38852
|
-
|
|
38972
|
+
_this21.loading.close();
|
|
38853
38973
|
if (err.message && err.message !== 'canceled') {
|
|
38854
|
-
|
|
38974
|
+
_this21.$message.error(err.message);
|
|
38855
38975
|
}
|
|
38856
38976
|
});
|
|
38857
38977
|
},
|
|
@@ -38864,7 +38984,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38864
38984
|
* @date 2022年5月25日
|
|
38865
38985
|
**/
|
|
38866
38986
|
selecNext: function selecNext(val, type, isDef) {
|
|
38867
|
-
var
|
|
38987
|
+
var _this22 = this;
|
|
38868
38988
|
|
|
38869
38989
|
this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
38870
38990
|
if (this.multiple) {
|
|
@@ -38895,16 +39015,16 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
38895
39015
|
this.operationList.forEach(function (item) {
|
|
38896
39016
|
if (item.key === val) {
|
|
38897
39017
|
if (!item.taskNodeList) {
|
|
38898
|
-
|
|
39018
|
+
_this22.nodeInfos = [];
|
|
38899
39019
|
} else {
|
|
38900
|
-
|
|
39020
|
+
_this22.nodeInfos = item.taskNodeList;
|
|
38901
39021
|
}
|
|
38902
39022
|
return;
|
|
38903
39023
|
}
|
|
38904
39024
|
});
|
|
38905
39025
|
if (this.defaultNextNode) {
|
|
38906
39026
|
var defaultNode = this.nodeInfos.filter(function (item) {
|
|
38907
|
-
return item.nodeId ==
|
|
39027
|
+
return item.nodeId == _this22.defaultNextNode;
|
|
38908
39028
|
});
|
|
38909
39029
|
if (this.nodeInfos.length > 0 && defaultNode.length == 0) {
|
|
38910
39030
|
this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
|
|
@@ -39010,7 +39130,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39010
39130
|
* @date 2022年5月25日
|
|
39011
39131
|
**/
|
|
39012
39132
|
getHedInfo: function getHedInfo() {
|
|
39013
|
-
var
|
|
39133
|
+
var _this23 = this;
|
|
39014
39134
|
|
|
39015
39135
|
this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
39016
39136
|
var params = {
|
|
@@ -39020,7 +39140,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39020
39140
|
utils_util["a" /* default */].ajax({ url: api["D" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
39021
39141
|
//pc返回数据
|
|
39022
39142
|
|
|
39023
|
-
|
|
39143
|
+
_this23.loading.close();
|
|
39024
39144
|
if (res.status === 'success') {
|
|
39025
39145
|
var _res$data2 = res.data,
|
|
39026
39146
|
nextNodeList = _res$data2.nextNodeList,
|
|
@@ -39048,190 +39168,190 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39048
39168
|
isCdjxjTaskHandle = _res$data2.isCdjxjTaskHandle,
|
|
39049
39169
|
taskButtonList = _res$data2.taskButtonList;
|
|
39050
39170
|
|
|
39051
|
-
|
|
39052
|
-
|
|
39053
|
-
|
|
39054
|
-
|
|
39055
|
-
|
|
39056
|
-
|
|
39057
|
-
|
|
39058
|
-
|
|
39059
|
-
|
|
39060
|
-
|
|
39061
|
-
|
|
39062
|
-
|
|
39171
|
+
_this23.$emit('startTaskRead', res);
|
|
39172
|
+
_this23.currentOrgName = currentOrgName;
|
|
39173
|
+
_this23.otherOrgName = otherOrgName;
|
|
39174
|
+
_this23.endFlowInfo.choiceOrgId = choiceOrgId;
|
|
39175
|
+
_this23.endFlowInfo.choiceDeptId = choiceDeptId;
|
|
39176
|
+
_this23.endFlowInfo.pendingId = _this23.pendingId;
|
|
39177
|
+
_this23.attachedCode = attachedCode;
|
|
39178
|
+
_this23.endFlowInfo.pOrgId = pOrgId;
|
|
39179
|
+
_this23.canPresetRead = canPresetRead;
|
|
39180
|
+
_this23.isCdjxjTaskHandle = isCdjxjTaskHandle;
|
|
39181
|
+
_this23.operationList = taskOperations || [];
|
|
39182
|
+
_this23.customPresetHintMessage = customPresetHintMessage;
|
|
39063
39183
|
if (canPresetRead) {
|
|
39064
39184
|
var ids = nodeInfoMap.nodeExtAttr.presetReadCandinateIds.split(',');
|
|
39065
39185
|
var names = nodeInfoMap.nodeExtAttr.presetReadCandinateNames.split(',');
|
|
39066
39186
|
ids.map(function (item, index) {
|
|
39067
|
-
|
|
39187
|
+
_this23.presetReadUserId.push({
|
|
39068
39188
|
showid: item,
|
|
39069
39189
|
showname: names[index]
|
|
39070
39190
|
});
|
|
39071
|
-
|
|
39191
|
+
_this23.selectPresetUserList.push({
|
|
39072
39192
|
showid: item,
|
|
39073
39193
|
showname: names[index]
|
|
39074
39194
|
});
|
|
39075
|
-
|
|
39195
|
+
_this23.nextNode.presetReadUserId.push(item);
|
|
39076
39196
|
});
|
|
39077
39197
|
}
|
|
39078
|
-
if (!
|
|
39198
|
+
if (!_this23.isFlow) _this23.getFile(_this23.pendingId, attachedCode);
|
|
39079
39199
|
if (nextNodeList && nextNodeList.length != 0) {
|
|
39080
|
-
|
|
39200
|
+
_this23.nextNodeList = nextNodeList;
|
|
39081
39201
|
}
|
|
39082
|
-
if (canRemoveSignUserList && canRemoveSignUserList.length != 0)
|
|
39202
|
+
if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this23.removeUsers = canRemoveSignUserList;
|
|
39083
39203
|
if (taskOperations && taskOperations.length != 0) {
|
|
39084
39204
|
taskOperations.map(function (item) {
|
|
39085
|
-
if (item.key === 9)
|
|
39205
|
+
if (item.key === 9) _this23.isReject = true;
|
|
39086
39206
|
if (item.isSelected) {
|
|
39087
|
-
|
|
39088
|
-
|
|
39207
|
+
_this23.nodeInfos = [];
|
|
39208
|
+
_this23.nextNode.nextOperate = item.key;
|
|
39089
39209
|
if (item.taskNodeList != null) {
|
|
39090
|
-
|
|
39210
|
+
_this23.nodeInfos = item.taskNodeList;
|
|
39091
39211
|
}
|
|
39092
39212
|
}
|
|
39093
39213
|
if (taskOperations.length == 1) {
|
|
39094
|
-
|
|
39095
|
-
|
|
39214
|
+
_this23.nodeInfos = [];
|
|
39215
|
+
_this23.nextNode.nextOperate = taskOperations[0].key;
|
|
39096
39216
|
if (taskOperations[0].taskNodeList != null) {
|
|
39097
|
-
|
|
39217
|
+
_this23.nodeInfos = taskOperations[0].taskNodeList;
|
|
39098
39218
|
}
|
|
39099
39219
|
}
|
|
39100
39220
|
});
|
|
39101
|
-
|
|
39221
|
+
_this23.selecNext(_this23.nextNode.nextOperate, true, true);
|
|
39102
39222
|
}
|
|
39103
39223
|
|
|
39104
39224
|
if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
|
|
39105
|
-
|
|
39225
|
+
_this23.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
|
|
39106
39226
|
if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
|
|
39107
39227
|
var notice = JSON.parse(nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList);
|
|
39108
39228
|
notice.map(function (x) {
|
|
39109
|
-
|
|
39229
|
+
_this23.nodeFixedOpinionSelectList.push({ content: x });
|
|
39110
39230
|
});
|
|
39111
39231
|
}
|
|
39112
|
-
|
|
39113
|
-
|
|
39114
|
-
|
|
39115
|
-
|
|
39116
|
-
|
|
39117
|
-
|
|
39232
|
+
_this23.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
|
|
39233
|
+
_this23.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
|
|
39234
|
+
_this23.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
|
|
39235
|
+
_this23.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
|
|
39236
|
+
_this23.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
|
|
39237
|
+
_this23.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
|
|
39118
39238
|
// this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
|
|
39119
|
-
|
|
39239
|
+
_this23.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
|
|
39120
39240
|
if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
|
|
39121
|
-
var defaultNode =
|
|
39241
|
+
var defaultNode = _this23.nodeInfos.filter(function (item) {
|
|
39122
39242
|
return item.nodeId == nodeInfoMap.nodeExtAttr.defaultNextNode;
|
|
39123
39243
|
});
|
|
39124
|
-
if (
|
|
39125
|
-
|
|
39244
|
+
if (_this23.nodeInfos.length > 0 && defaultNode.length == 0) {
|
|
39245
|
+
_this23.nextNode.nextNodeId = _this23.nodeInfos[0].nodeId;
|
|
39126
39246
|
} else {
|
|
39127
|
-
|
|
39247
|
+
_this23.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
|
|
39128
39248
|
}
|
|
39129
|
-
} else if (
|
|
39130
|
-
|
|
39249
|
+
} else if (_this23.nodeInfos.length > 0) {
|
|
39250
|
+
_this23.nextNode.nextNodeId = _this23.nodeInfos[0].nodeId;
|
|
39131
39251
|
}
|
|
39132
|
-
|
|
39252
|
+
_this23.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
|
|
39133
39253
|
if (nodeInfoMap.nodeExtAttr.submitText) {
|
|
39134
|
-
|
|
39254
|
+
_this23.btnList.map(function (x) {
|
|
39135
39255
|
if (x.event === 'sub') {
|
|
39136
39256
|
x.text = nodeInfoMap.nodeExtAttr.submitText;
|
|
39137
39257
|
}
|
|
39138
39258
|
});
|
|
39139
39259
|
}
|
|
39140
39260
|
}
|
|
39141
|
-
|
|
39142
|
-
|
|
39143
|
-
|
|
39261
|
+
_this23.choiceOrgId = choiceOrgId;
|
|
39262
|
+
_this23.choiceDeptId = choiceDeptId;
|
|
39263
|
+
_this23.pOrgId = pOrgId;
|
|
39144
39264
|
if (res.data && res.data.isEndUserTask != undefined) {
|
|
39145
|
-
|
|
39265
|
+
_this23.isEndUserTask = res.data.isEndUserTask;
|
|
39146
39266
|
}
|
|
39147
39267
|
if (JSON.stringify(taskExamine) != '{}' && taskExamine) {
|
|
39148
|
-
|
|
39149
|
-
|
|
39150
|
-
|
|
39151
|
-
|
|
39152
|
-
|
|
39153
|
-
|
|
39154
|
-
|
|
39155
|
-
|
|
39156
|
-
|
|
39157
|
-
|
|
39158
|
-
|
|
39159
|
-
|
|
39160
|
-
|
|
39161
|
-
|
|
39162
|
-
|
|
39163
|
-
|
|
39164
|
-
|
|
39165
|
-
|
|
39166
|
-
|
|
39167
|
-
|
|
39168
|
-
|
|
39169
|
-
|
|
39170
|
-
|
|
39171
|
-
|
|
39172
|
-
|
|
39173
|
-
|
|
39174
|
-
|
|
39175
|
-
|
|
39268
|
+
_this23.nodeInfo.nextNode = taskExamine.processDefinitionId;
|
|
39269
|
+
_this23.NodeName = taskExamine.nodeName;
|
|
39270
|
+
_this23.taskId = taskExamine.taskId;
|
|
39271
|
+
_this23.businessIds = taskExamine.businessId;
|
|
39272
|
+
_this23.appId = taskExamine.appId;
|
|
39273
|
+
_this23.taskExamineInfo = taskExamine;
|
|
39274
|
+
_this23.taskExamineInfo.choiceOrgId = choiceOrgId;
|
|
39275
|
+
_this23.taskExamineInfo.choiceDeptId = choiceDeptId;
|
|
39276
|
+
_this23.endFlowInfo.processType = taskExamine.processType;
|
|
39277
|
+
_this23.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
|
|
39278
|
+
_this23.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
|
|
39279
|
+
_this23.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
|
|
39280
|
+
_this23.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
|
|
39281
|
+
_this23.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
|
|
39282
|
+
_this23.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
|
|
39283
|
+
_this23.nextNode.isReadDealReply = taskExamine.isReadDealReply;
|
|
39284
|
+
_this23.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
|
|
39285
|
+
_this23.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
|
|
39286
|
+
_this23.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
|
|
39287
|
+
_this23.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
|
|
39288
|
+
_this23.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
|
|
39289
|
+
_this23.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
|
|
39290
|
+
_this23.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
|
|
39291
|
+
_this23.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
|
|
39292
|
+
_this23.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
|
|
39293
|
+
_this23.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
|
|
39294
|
+
_this23.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
|
|
39295
|
+
_this23.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
|
|
39176
39296
|
// this.endFlowInfo.isReadDealReply =
|
|
39177
39297
|
// taskExamine.isReadDealReplybusinessId;
|
|
39178
|
-
|
|
39179
|
-
|
|
39180
|
-
|
|
39181
|
-
|
|
39298
|
+
_this23.endFlowInfo.appId = taskExamine.appId;
|
|
39299
|
+
_this23.endFlowInfo.businessId = taskExamine.businessId;
|
|
39300
|
+
_this23.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
|
|
39301
|
+
_this23.endFlowInfo.nodeId = taskExamine.nodeId;
|
|
39182
39302
|
}
|
|
39183
|
-
if (
|
|
39184
|
-
|
|
39303
|
+
if (_this23.nodeName) {
|
|
39304
|
+
_this23.NodeName = _this23.nodeName;
|
|
39185
39305
|
}
|
|
39186
|
-
|
|
39187
|
-
|
|
39188
|
-
if (
|
|
39189
|
-
|
|
39306
|
+
_this23.isCanAddSign = isCanAddSign;
|
|
39307
|
+
_this23.processObj = res.data;
|
|
39308
|
+
if (_this23.isCanAddSign) {
|
|
39309
|
+
_this23.nextNode.isAddSign = '2';
|
|
39190
39310
|
}
|
|
39191
|
-
|
|
39192
|
-
if (
|
|
39193
|
-
|
|
39311
|
+
_this23.isCanRemoveSign = isCanRemoveSign;
|
|
39312
|
+
if (_this23.isCanRemoveSign) {
|
|
39313
|
+
_this23.nextNode.isRemoveSign = '2';
|
|
39194
39314
|
}
|
|
39195
|
-
|
|
39315
|
+
_this23.isSpecial = isSpecial;
|
|
39196
39316
|
|
|
39197
|
-
if (!
|
|
39198
|
-
|
|
39317
|
+
if (!_this23.isOpinionRequired) {
|
|
39318
|
+
_this23.isOpinionRequired = 0;
|
|
39199
39319
|
}
|
|
39200
39320
|
// opinion && (this.value = opinion);
|
|
39201
|
-
|
|
39202
|
-
|
|
39321
|
+
_this23.nextNode.notificationMsg = defaultNotificationMessage;
|
|
39322
|
+
_this23.moreList = [];
|
|
39203
39323
|
if (taskButtonList && taskButtonList.length != 0) {
|
|
39204
39324
|
taskButtonList.map(function (item) {
|
|
39205
39325
|
if (item.fun === 'reject()') {
|
|
39206
|
-
|
|
39326
|
+
_this23.rejectObj = item;
|
|
39207
39327
|
} else if (item.fun === 'toStartTaskRead()') {
|
|
39208
|
-
|
|
39328
|
+
_this23.pointsReadingObj = item;
|
|
39209
39329
|
} else {
|
|
39210
|
-
|
|
39330
|
+
_this23.moreList.push(item);
|
|
39211
39331
|
}
|
|
39212
39332
|
});
|
|
39213
39333
|
}
|
|
39214
|
-
|
|
39215
|
-
|
|
39216
|
-
|
|
39217
|
-
|
|
39218
|
-
|
|
39219
|
-
|
|
39220
|
-
|
|
39221
|
-
|
|
39334
|
+
_this23.isMainSubProcess = res.data.isMainSubProcess == 'true';
|
|
39335
|
+
_this23.isCustomPreset = isCustomPreset;
|
|
39336
|
+
_this23.isPreset = isPreset;
|
|
39337
|
+
_this23.presetTaskNodeMap = presetTaskNodeMap;
|
|
39338
|
+
_this23.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
|
|
39339
|
+
_this23.getFind();
|
|
39340
|
+
_this23.getNodeType();
|
|
39341
|
+
_this23.getNodeInfo();
|
|
39222
39342
|
} else {
|
|
39223
39343
|
if (res.status === 'taskCompleted') {
|
|
39224
|
-
|
|
39225
|
-
|
|
39226
|
-
|
|
39344
|
+
_this23.$emit('shrink', true);
|
|
39345
|
+
_this23.shrinkAbled = true;
|
|
39346
|
+
_this23.$message.warning(res.message || '系统错误,请联系管理员!');
|
|
39227
39347
|
} else {
|
|
39228
|
-
|
|
39348
|
+
_this23.$message.error(res.message || '系统错误,请联系管理员!');
|
|
39229
39349
|
}
|
|
39230
39350
|
}
|
|
39231
39351
|
}).catch(function (err) {
|
|
39232
|
-
|
|
39352
|
+
_this23.loading.close();
|
|
39233
39353
|
if (err.message && err.message !== 'canceled') {
|
|
39234
|
-
|
|
39354
|
+
_this23.$message.error(err.message);
|
|
39235
39355
|
}
|
|
39236
39356
|
});
|
|
39237
39357
|
},
|
|
@@ -39282,7 +39402,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39282
39402
|
* @date 2022年5月25日
|
|
39283
39403
|
**/
|
|
39284
39404
|
getProcess: function getProcess() {
|
|
39285
|
-
var
|
|
39405
|
+
var _this24 = this;
|
|
39286
39406
|
|
|
39287
39407
|
var params = {
|
|
39288
39408
|
businessId: this.businessId,
|
|
@@ -39298,32 +39418,32 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39298
39418
|
message = res.message,
|
|
39299
39419
|
data = res.data;
|
|
39300
39420
|
|
|
39301
|
-
|
|
39421
|
+
_this24.loading.close();
|
|
39302
39422
|
if (status === 'success') {
|
|
39303
39423
|
if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
|
|
39304
|
-
|
|
39424
|
+
_this24.$message.error('流程不存在或未关联对应流程!');
|
|
39305
39425
|
} else {
|
|
39306
|
-
|
|
39307
|
-
|
|
39308
|
-
return item.processDefKey ==
|
|
39426
|
+
_this24.nodeInfo.option = data.definitionList;
|
|
39427
|
+
_this24.nodeInfo.nextNode = data.definitionList.filter(function (item) {
|
|
39428
|
+
return item.processDefKey == _this24.defaultProcessKey;
|
|
39309
39429
|
});
|
|
39310
|
-
if (
|
|
39311
|
-
|
|
39430
|
+
if (_this24.nodeInfo.nextNode.length) {
|
|
39431
|
+
_this24.nodeInfo.nextNode = _this24.nodeInfo.nextNode[0].processDefId;
|
|
39312
39432
|
} else {
|
|
39313
39433
|
if (data.definitionList.length == 1) {
|
|
39314
|
-
|
|
39434
|
+
_this24.nodeInfo.nextNode = data.definitionList[0].processDefId;
|
|
39315
39435
|
} else {
|
|
39316
|
-
|
|
39436
|
+
_this24.nodeInfo.nextNode = '';
|
|
39317
39437
|
}
|
|
39318
39438
|
}
|
|
39319
39439
|
}
|
|
39320
39440
|
} else {
|
|
39321
|
-
|
|
39441
|
+
_this24.$message.error(message || '系统错误,请联系管理员!');
|
|
39322
39442
|
}
|
|
39323
39443
|
}).catch(function (err) {
|
|
39324
|
-
|
|
39444
|
+
_this24.loading.close();
|
|
39325
39445
|
if (err.message && err.message !== 'canceled') {
|
|
39326
|
-
|
|
39446
|
+
_this24.$message.error(err.message);
|
|
39327
39447
|
}
|
|
39328
39448
|
});
|
|
39329
39449
|
},
|
|
@@ -39335,7 +39455,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39335
39455
|
* @date 2022年5月25日
|
|
39336
39456
|
**/
|
|
39337
39457
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
39338
|
-
var
|
|
39458
|
+
var _this25 = this;
|
|
39339
39459
|
|
|
39340
39460
|
var params = {
|
|
39341
39461
|
apprecordId: this.businessIds,
|
|
@@ -39348,17 +39468,17 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39348
39468
|
results = res.results;
|
|
39349
39469
|
|
|
39350
39470
|
if (!rCode) {
|
|
39351
|
-
|
|
39352
|
-
|
|
39353
|
-
|
|
39354
|
-
|
|
39355
|
-
|
|
39471
|
+
_this25.nextNode.nextUserId = [];
|
|
39472
|
+
_this25.showNews = false;
|
|
39473
|
+
_this25.nextNode.notificationType = [];
|
|
39474
|
+
_this25.pendingId = results[results.length - 1].attachId;
|
|
39475
|
+
_this25.getHedInfo();
|
|
39356
39476
|
} else {
|
|
39357
|
-
|
|
39477
|
+
_this25.$message.error(msg || '系统错误,请联系管理员!');
|
|
39358
39478
|
}
|
|
39359
39479
|
}).catch(function (err) {
|
|
39360
39480
|
if (err.message && err.message !== 'canceled') {
|
|
39361
|
-
|
|
39481
|
+
_this25.$message.error(err.message);
|
|
39362
39482
|
}
|
|
39363
39483
|
});
|
|
39364
39484
|
},
|
|
@@ -39372,21 +39492,21 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39372
39492
|
* @date 2022年5月25日
|
|
39373
39493
|
**/
|
|
39374
39494
|
subProcess: function subProcess(val) {
|
|
39375
|
-
var
|
|
39495
|
+
var _this26 = this;
|
|
39376
39496
|
|
|
39377
39497
|
this.$refs['nextNode'].validate(function (valid) {
|
|
39378
39498
|
if (valid) {
|
|
39379
|
-
if (
|
|
39380
|
-
|
|
39381
|
-
|
|
39382
|
-
|
|
39499
|
+
if (_this26.isSubmitButtonShowAgreeAndDisagree == 1) {
|
|
39500
|
+
_this26.value = _this26.value.replace(RegExp('不同意。', 'g'), '');
|
|
39501
|
+
_this26.value = _this26.value.replace(RegExp('同意。', 'g'), '');
|
|
39502
|
+
_this26.value = val + _this26.value;
|
|
39383
39503
|
}
|
|
39384
|
-
if (!
|
|
39385
|
-
if (
|
|
39386
|
-
|
|
39504
|
+
if (!_this26.validInfo()) return;
|
|
39505
|
+
if (_this26.beforeSubmit == undefined) {
|
|
39506
|
+
_this26.subFun(_this26.sendData);
|
|
39387
39507
|
} else {
|
|
39388
|
-
|
|
39389
|
-
|
|
39508
|
+
_this26.beforeSubmit(1).then(function (next) {
|
|
39509
|
+
_this26.sendData();
|
|
39390
39510
|
}).catch(function (e) {});
|
|
39391
39511
|
}
|
|
39392
39512
|
}
|
|
@@ -39426,7 +39546,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39426
39546
|
return true;
|
|
39427
39547
|
},
|
|
39428
39548
|
sendData: function sendData() {
|
|
39429
|
-
var
|
|
39549
|
+
var _this27 = this;
|
|
39430
39550
|
|
|
39431
39551
|
this.$refs['nextNode'].validate(function () {
|
|
39432
39552
|
var _ref2 = flow_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
|
|
@@ -39440,89 +39560,89 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39440
39560
|
break;
|
|
39441
39561
|
}
|
|
39442
39562
|
|
|
39443
|
-
if (!
|
|
39563
|
+
if (!_this27.isFlow) {
|
|
39444
39564
|
_context.next = 3;
|
|
39445
39565
|
break;
|
|
39446
39566
|
}
|
|
39447
39567
|
|
|
39448
|
-
return _context.abrupt('return',
|
|
39568
|
+
return _context.abrupt('return', _this27.handleVisible = true);
|
|
39449
39569
|
|
|
39450
39570
|
case 3:
|
|
39451
39571
|
nextUserId = [];
|
|
39452
39572
|
|
|
39453
|
-
if (
|
|
39454
|
-
|
|
39573
|
+
if (_this27.multiple) {
|
|
39574
|
+
_this27.nextNode.nextUserId && _this27.nextNode.nextUserId.map(function (item) {
|
|
39455
39575
|
return nextUserId.push(item);
|
|
39456
39576
|
});
|
|
39457
39577
|
}
|
|
39458
39578
|
addSignUserId = [];
|
|
39459
39579
|
|
|
39460
|
-
if (
|
|
39461
|
-
|
|
39580
|
+
if (_this27.isCanAddSign && _this27.nextNode.isAddSign == '1') {
|
|
39581
|
+
_this27.nextNode.addSignUserId.map(function (item) {
|
|
39462
39582
|
addSignUserId.push(item);
|
|
39463
39583
|
});
|
|
39464
39584
|
}
|
|
39465
39585
|
removeSignUserId = [];
|
|
39466
39586
|
|
|
39467
|
-
if (
|
|
39468
|
-
|
|
39587
|
+
if (_this27.isCanRemoveSign && _this27.nextNode.isRemoveSign == '1') {
|
|
39588
|
+
_this27.nextNode.removeSignUserId.map(function (item) {
|
|
39469
39589
|
removeSignUserId.push(item);
|
|
39470
39590
|
});
|
|
39471
39591
|
}
|
|
39472
39592
|
str = '';
|
|
39473
39593
|
|
|
39474
|
-
if (
|
|
39475
|
-
str =
|
|
39594
|
+
if (_this27.value) {
|
|
39595
|
+
str = _this27.value.replace(/\s+/g, '');
|
|
39476
39596
|
}
|
|
39477
|
-
if ((!
|
|
39478
|
-
|
|
39597
|
+
if ((!_this27.value || str === '') && _this27.nodeDefaultSubmitOpinion) {
|
|
39598
|
+
_this27.value = _this27.nodeDefaultSubmitOpinion;
|
|
39479
39599
|
}
|
|
39480
|
-
if (!
|
|
39481
|
-
delete
|
|
39482
|
-
delete
|
|
39600
|
+
if (!_this27.isSpecial) {
|
|
39601
|
+
delete _this27.nextNode.nextOperate;
|
|
39602
|
+
delete _this27.nextNode.nextNodeId;
|
|
39483
39603
|
}
|
|
39484
|
-
if (
|
|
39485
|
-
|
|
39486
|
-
|
|
39604
|
+
if (_this27.nextNode.nextOperate === 9) {
|
|
39605
|
+
_this27.nextNode.isReturnRejectNode = 1;
|
|
39606
|
+
_this27.nextNode.processDefinitionId = _this27.processObj.taskExamine.processDefinitionId;
|
|
39487
39607
|
}
|
|
39488
|
-
if (
|
|
39489
|
-
delete
|
|
39608
|
+
if (_this27.nextNode.nextOperate != 0 && _this27.nextNode.nextOperate != 1) {
|
|
39609
|
+
delete _this27.nextNode.nextNodeId;
|
|
39490
39610
|
}
|
|
39491
39611
|
_context.next = 17;
|
|
39492
|
-
return
|
|
39612
|
+
return _this27.saveInfo('subMit');
|
|
39493
39613
|
|
|
39494
39614
|
case 17:
|
|
39495
|
-
|
|
39615
|
+
_this27.loading = utils_util["a" /* default */].loading(_this27.$loading, '加载中...');
|
|
39496
39616
|
|
|
39497
39617
|
notificationType = '';
|
|
39498
39618
|
|
|
39499
|
-
notificationType =
|
|
39619
|
+
notificationType = _this27.nextNode.notificationType.join(',');
|
|
39500
39620
|
addSignUserId = addSignUserId.join(',');
|
|
39501
39621
|
removeSignUserId = removeSignUserId.join(',');
|
|
39502
|
-
params = flow_src_mainvue_type_script_lang_js_extends({},
|
|
39503
|
-
pendingId:
|
|
39504
|
-
opinion:
|
|
39622
|
+
params = flow_src_mainvue_type_script_lang_js_extends({}, _this27.nextNode, {
|
|
39623
|
+
pendingId: _this27.pendingId,
|
|
39624
|
+
opinion: _this27.isForceDisplayDefaultOptionForPrefix && !_this27.value.startsWith(_this27.nodeDefaultSubmitOpinion) ? _this27.nodeDefaultSubmitOpinion + _this27.value : _this27.value,
|
|
39505
39625
|
userId: utils_util["a" /* default */].getStorage('userId'),
|
|
39506
|
-
nextUserId:
|
|
39626
|
+
nextUserId: _this27.multiple ? nextUserId.join(',') : _this27.nextNode.nextUserId,
|
|
39507
39627
|
addSignUserId: addSignUserId,
|
|
39508
|
-
customPresetUserJson: JSON.stringify(
|
|
39509
|
-
presetUserJson: JSON.stringify(
|
|
39628
|
+
customPresetUserJson: JSON.stringify(_this27.presetList),
|
|
39629
|
+
presetUserJson: JSON.stringify(_this27.presetUserJson),
|
|
39510
39630
|
removeSignUserId: removeSignUserId,
|
|
39511
|
-
nextReadUserId:
|
|
39512
|
-
nextOrgId: !
|
|
39513
|
-
presetReadUserId:
|
|
39631
|
+
nextReadUserId: _this27.readMultiple ? _this27.mixReadList && _this27.mixReadList.join('|') : _this27.nextNode.nextReadUserId,
|
|
39632
|
+
nextOrgId: !_this27.isShowNextUser ? _this27.multiple ? _this27.mixOrgIdList && _this27.mixOrgIdList.join('|') : _this27.nextNode.nextOrgId : '',
|
|
39633
|
+
presetReadUserId: _this27.mixPresetList && _this27.mixPresetList.length > 0 ? _this27.mixPresetList.join('|') : _this27.nextNode.presetReadUserId.join(','),
|
|
39514
39634
|
notificationType: notificationType
|
|
39515
39635
|
});
|
|
39516
39636
|
|
|
39517
|
-
if (
|
|
39518
|
-
if (
|
|
39637
|
+
if (_this27.activeNames != '1') delete params.customPresetUserJson;
|
|
39638
|
+
if (_this27.nextNode.isRemoveSign != '1') {
|
|
39519
39639
|
delete params.removeSignUserId;
|
|
39520
39640
|
}
|
|
39521
|
-
if (
|
|
39641
|
+
if (_this27.nextNode.isAddSign != '1') {
|
|
39522
39642
|
delete params.addSignUserId;
|
|
39523
39643
|
}
|
|
39524
|
-
|
|
39525
|
-
isEndUserTask =
|
|
39644
|
+
_this27.loading = utils_util["a" /* default */].loading(_this27.$loading, '提交中...');
|
|
39645
|
+
isEndUserTask = _this27.isEndUserTask, choiceOrgId = _this27.choiceOrgId, choiceDeptId = _this27.choiceDeptId, pOrgId = _this27.pOrgId, taskExamineInfo = _this27.taskExamineInfo, needRetrialAuth = _this27.needRetrialAuth;
|
|
39526
39646
|
|
|
39527
39647
|
params.isEndUserTask = isEndUserTask;
|
|
39528
39648
|
params.choiceOrgId = choiceOrgId;
|
|
@@ -39539,18 +39659,18 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39539
39659
|
var status = res.status,
|
|
39540
39660
|
message = res.message;
|
|
39541
39661
|
|
|
39542
|
-
|
|
39662
|
+
_this27.loading.close();
|
|
39543
39663
|
if (status === 'success') {
|
|
39544
|
-
|
|
39545
|
-
|
|
39664
|
+
_this27.$message.success('提交成功');
|
|
39665
|
+
_this27.$emit('success');
|
|
39546
39666
|
} else {
|
|
39547
|
-
|
|
39548
|
-
|
|
39667
|
+
_this27.$message.error(message || '系统错误,请联系管理员!');
|
|
39668
|
+
_this27.$emit('error');
|
|
39549
39669
|
}
|
|
39550
39670
|
}).catch(function (err) {
|
|
39551
|
-
|
|
39671
|
+
_this27.loading.close();
|
|
39552
39672
|
if (err.message && err.message !== 'canceled') {
|
|
39553
|
-
|
|
39673
|
+
_this27.$message.error(err.message);
|
|
39554
39674
|
}
|
|
39555
39675
|
}));
|
|
39556
39676
|
|
|
@@ -39562,7 +39682,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39562
39682
|
return _context.stop();
|
|
39563
39683
|
}
|
|
39564
39684
|
}
|
|
39565
|
-
}, _callee,
|
|
39685
|
+
}, _callee, _this27);
|
|
39566
39686
|
}));
|
|
39567
39687
|
|
|
39568
39688
|
return function (_x) {
|
|
@@ -39616,8 +39736,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
39616
39736
|
|
|
39617
39737
|
var flow_src_main_component = normalizeComponent(
|
|
39618
39738
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
39619
|
-
|
|
39620
|
-
|
|
39739
|
+
mainvue_type_template_id_7620c3cc_render,
|
|
39740
|
+
mainvue_type_template_id_7620c3cc_staticRenderFns,
|
|
39621
39741
|
false,
|
|
39622
39742
|
null,
|
|
39623
39743
|
null,
|
|
@@ -44956,8 +45076,8 @@ layout_src_main.install = function (Vue) {
|
|
|
44956
45076
|
};
|
|
44957
45077
|
|
|
44958
45078
|
/* harmony default export */ var layout = (layout_src_main);
|
|
44959
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=
|
|
44960
|
-
var
|
|
45079
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=413b11b3&
|
|
45080
|
+
var mainvue_type_template_id_413b11b3_render = function () {
|
|
44961
45081
|
var _vm = this
|
|
44962
45082
|
var _h = _vm.$createElement
|
|
44963
45083
|
var _c = _vm._self._c || _h
|
|
@@ -45737,7 +45857,7 @@ var mainvue_type_template_id_e28c2dd0_render = function () {
|
|
|
45737
45857
|
[_vm._v(_vm._s(_vm.icpInfo.copyright_unit))]
|
|
45738
45858
|
),
|
|
45739
45859
|
_c(
|
|
45740
|
-
"
|
|
45860
|
+
"span",
|
|
45741
45861
|
{
|
|
45742
45862
|
staticClass: "es-login-icp-item",
|
|
45743
45863
|
style: _vm._copyrightStyle,
|
|
@@ -45836,14 +45956,14 @@ var mainvue_type_template_id_e28c2dd0_render = function () {
|
|
|
45836
45956
|
)
|
|
45837
45957
|
: _vm._e()
|
|
45838
45958
|
}
|
|
45839
|
-
var
|
|
45840
|
-
|
|
45959
|
+
var mainvue_type_template_id_413b11b3_staticRenderFns = []
|
|
45960
|
+
mainvue_type_template_id_413b11b3_render._withStripped = true
|
|
45841
45961
|
|
|
45842
45962
|
|
|
45843
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
45963
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=413b11b3&
|
|
45844
45964
|
|
|
45845
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=
|
|
45846
|
-
var
|
|
45965
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=28f463b9&
|
|
45966
|
+
var resetPasswordvue_type_template_id_28f463b9_render = function () {
|
|
45847
45967
|
var _vm = this
|
|
45848
45968
|
var _h = _vm.$createElement
|
|
45849
45969
|
var _c = _vm._self._c || _h
|
|
@@ -45903,11 +46023,11 @@ var resetPasswordvue_type_template_id_7e3a7461_render = function () {
|
|
|
45903
46023
|
1
|
|
45904
46024
|
)
|
|
45905
46025
|
}
|
|
45906
|
-
var
|
|
45907
|
-
|
|
46026
|
+
var resetPasswordvue_type_template_id_28f463b9_staticRenderFns = []
|
|
46027
|
+
resetPasswordvue_type_template_id_28f463b9_render._withStripped = true
|
|
45908
46028
|
|
|
45909
46029
|
|
|
45910
|
-
// CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=
|
|
46030
|
+
// CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=28f463b9&
|
|
45911
46031
|
|
|
45912
46032
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=script&lang=js&
|
|
45913
46033
|
var resetPasswordvue_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; };
|
|
@@ -46219,7 +46339,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
|
|
|
46219
46339
|
_this.checkPassword = new RegExp(results.checkPassword);
|
|
46220
46340
|
}
|
|
46221
46341
|
if (results.checkPasswordMsg) {
|
|
46222
|
-
_this.checkPasswordMsg =
|
|
46342
|
+
_this.checkPasswordMsg = results.checkPasswordMsg;
|
|
46223
46343
|
}
|
|
46224
46344
|
} else {
|
|
46225
46345
|
var msg = res.msg || '系统错误,请联系管理员!';
|
|
@@ -46305,10 +46425,12 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
|
|
|
46305
46425
|
data: data.password,
|
|
46306
46426
|
key: this.secret
|
|
46307
46427
|
});
|
|
46308
|
-
data.oldPassword
|
|
46309
|
-
data
|
|
46310
|
-
|
|
46311
|
-
|
|
46428
|
+
if (data.oldPassword) {
|
|
46429
|
+
data.oldPassword = utils_util["a" /* default */].esmEncrypt({
|
|
46430
|
+
data: data.oldPassword,
|
|
46431
|
+
key: this.secret
|
|
46432
|
+
});
|
|
46433
|
+
}
|
|
46312
46434
|
}
|
|
46313
46435
|
if (this.activeIndex == '0') {
|
|
46314
46436
|
data.operationCheckCode = this.operationCheckCode;
|
|
@@ -46385,8 +46507,8 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
|
|
|
46385
46507
|
|
|
46386
46508
|
var resetPassword_component = normalizeComponent(
|
|
46387
46509
|
src_resetPasswordvue_type_script_lang_js_,
|
|
46388
|
-
|
|
46389
|
-
|
|
46510
|
+
resetPasswordvue_type_template_id_28f463b9_render,
|
|
46511
|
+
resetPasswordvue_type_template_id_28f463b9_staticRenderFns,
|
|
46390
46512
|
false,
|
|
46391
46513
|
null,
|
|
46392
46514
|
null,
|
|
@@ -47138,6 +47260,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
|
|
|
47138
47260
|
} else {
|
|
47139
47261
|
this.getLogin();
|
|
47140
47262
|
document.addEventListener('keyup', this.doLogin);
|
|
47263
|
+
document.addEventListener('keydown', this.forbiddenTab);
|
|
47141
47264
|
}
|
|
47142
47265
|
},
|
|
47143
47266
|
mounted: function mounted() {
|
|
@@ -47794,10 +47917,16 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
|
|
|
47794
47917
|
},
|
|
47795
47918
|
handleSuccess: function handleSuccess() {
|
|
47796
47919
|
this.showResetPassword = false;
|
|
47920
|
+
},
|
|
47921
|
+
forbiddenTab: function forbiddenTab(e) {
|
|
47922
|
+
if (e.keyCode == 9) {
|
|
47923
|
+
return false;
|
|
47924
|
+
}
|
|
47797
47925
|
}
|
|
47798
47926
|
},
|
|
47799
47927
|
beforeDestroy: function beforeDestroy() {
|
|
47800
47928
|
document.removeEventListener('keyup', this.doLogin);
|
|
47929
|
+
document.removeEventListener('keydown', this.forbiddenTab);
|
|
47801
47930
|
}
|
|
47802
47931
|
});
|
|
47803
47932
|
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=script&lang=js&
|
|
@@ -47812,8 +47941,8 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
|
|
|
47812
47941
|
|
|
47813
47942
|
var login_src_main_component = normalizeComponent(
|
|
47814
47943
|
packages_login_src_mainvue_type_script_lang_js_,
|
|
47815
|
-
|
|
47816
|
-
|
|
47944
|
+
mainvue_type_template_id_413b11b3_render,
|
|
47945
|
+
mainvue_type_template_id_413b11b3_staticRenderFns,
|
|
47817
47946
|
false,
|
|
47818
47947
|
null,
|
|
47819
47948
|
null,
|
|
@@ -47830,8 +47959,8 @@ login_src_main.install = function (Vue) {
|
|
|
47830
47959
|
};
|
|
47831
47960
|
|
|
47832
47961
|
/* harmony default export */ var login = (login_src_main);
|
|
47833
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=
|
|
47834
|
-
var
|
|
47962
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=31c26b8e&
|
|
47963
|
+
var mainvue_type_template_id_31c26b8e_render = function () {
|
|
47835
47964
|
var _vm = this
|
|
47836
47965
|
var _h = _vm.$createElement
|
|
47837
47966
|
var _c = _vm._self._c || _h
|
|
@@ -48256,14 +48385,14 @@ var mainvue_type_template_id_79a0b910_render = function () {
|
|
|
48256
48385
|
1
|
|
48257
48386
|
)
|
|
48258
48387
|
}
|
|
48259
|
-
var
|
|
48260
|
-
|
|
48388
|
+
var mainvue_type_template_id_31c26b8e_staticRenderFns = []
|
|
48389
|
+
mainvue_type_template_id_31c26b8e_render._withStripped = true
|
|
48261
48390
|
|
|
48262
48391
|
|
|
48263
|
-
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=
|
|
48392
|
+
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=31c26b8e&
|
|
48264
48393
|
|
|
48265
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=
|
|
48266
|
-
var
|
|
48394
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=137dd243&
|
|
48395
|
+
var userinfovue_type_template_id_137dd243_render = function () {
|
|
48267
48396
|
var _vm = this
|
|
48268
48397
|
var _h = _vm.$createElement
|
|
48269
48398
|
var _c = _vm._self._c || _h
|
|
@@ -48279,11 +48408,11 @@ var userinfovue_type_template_id_356fcf36_render = function () {
|
|
|
48279
48408
|
2
|
|
48280
48409
|
)
|
|
48281
48410
|
}
|
|
48282
|
-
var
|
|
48283
|
-
|
|
48411
|
+
var userinfovue_type_template_id_137dd243_staticRenderFns = []
|
|
48412
|
+
userinfovue_type_template_id_137dd243_render._withStripped = true
|
|
48284
48413
|
|
|
48285
48414
|
|
|
48286
|
-
// CONCATENATED MODULE: ./packages/main/src/userinfo.vue?vue&type=template&id=
|
|
48415
|
+
// CONCATENATED MODULE: ./packages/main/src/userinfo.vue?vue&type=template&id=137dd243&
|
|
48287
48416
|
|
|
48288
48417
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=script&lang=js&
|
|
48289
48418
|
//
|
|
@@ -48513,7 +48642,7 @@ userinfovue_type_template_id_356fcf36_render._withStripped = true
|
|
|
48513
48642
|
_this2.checkPassword = new RegExp(results.checkPassword);
|
|
48514
48643
|
}
|
|
48515
48644
|
if (results.checkPasswordMsg) {
|
|
48516
|
-
_this2.checkPasswordMsg =
|
|
48645
|
+
_this2.checkPasswordMsg = results.checkPasswordMsg;
|
|
48517
48646
|
}
|
|
48518
48647
|
_this2.results = results.simpleUserInfo;
|
|
48519
48648
|
_this2.values.orgName = results.simpleUserInfo.orgName;
|
|
@@ -48699,8 +48828,8 @@ userinfovue_type_template_id_356fcf36_render._withStripped = true
|
|
|
48699
48828
|
|
|
48700
48829
|
var userinfo_component = normalizeComponent(
|
|
48701
48830
|
src_userinfovue_type_script_lang_js_,
|
|
48702
|
-
|
|
48703
|
-
|
|
48831
|
+
userinfovue_type_template_id_137dd243_render,
|
|
48832
|
+
userinfovue_type_template_id_137dd243_staticRenderFns,
|
|
48704
48833
|
false,
|
|
48705
48834
|
null,
|
|
48706
48835
|
null,
|
|
@@ -50933,6 +51062,9 @@ var log = utils_util["a" /* default */].getParams('console');
|
|
|
50933
51062
|
sessionStorage.setItem('sysLogoIco', results[i]);
|
|
50934
51063
|
utils_util["a" /* default */].setFavicon(results[i]);
|
|
50935
51064
|
}
|
|
51065
|
+
if (i === 'subsystemExtend' && results[i].themeColor) {
|
|
51066
|
+
this.color = unescape(results[i].themeColor).toLowerCase();
|
|
51067
|
+
}
|
|
50936
51068
|
if (i === 'userStyle' && results[i].color) {
|
|
50937
51069
|
this.color = unescape(results[i].color).toLowerCase();
|
|
50938
51070
|
}
|
|
@@ -50975,21 +51107,12 @@ var log = utils_util["a" /* default */].getParams('console');
|
|
|
50975
51107
|
}
|
|
50976
51108
|
return true;
|
|
50977
51109
|
}
|
|
50978
|
-
utils_util["a" /* default */].
|
|
50979
|
-
|
|
50980
|
-
|
|
50981
|
-
|
|
50982
|
-
_this3.getMenu();
|
|
50983
|
-
} else {
|
|
50984
|
-
_this3.renderMenu();
|
|
50985
|
-
}
|
|
51110
|
+
utils_util["a" /* default */].getMainConfig(function (res) {
|
|
51111
|
+
_this3.setConfig(res, 1);
|
|
51112
|
+
if (_this3.remote) {
|
|
51113
|
+
_this3.getMenu();
|
|
50986
51114
|
} else {
|
|
50987
|
-
|
|
50988
|
-
_this3.$message.error(msg);
|
|
50989
|
-
}
|
|
50990
|
-
}).catch(function (err) {
|
|
50991
|
-
if (err.message && err.message !== 'canceled') {
|
|
50992
|
-
_this3.$message.error(err.message);
|
|
51115
|
+
_this3.renderMenu();
|
|
50993
51116
|
}
|
|
50994
51117
|
});
|
|
50995
51118
|
},
|
|
@@ -52031,8 +52154,8 @@ var log = utils_util["a" /* default */].getParams('console');
|
|
|
52031
52154
|
|
|
52032
52155
|
var main_src_main_component = normalizeComponent(
|
|
52033
52156
|
packages_main_src_mainvue_type_script_lang_js_,
|
|
52034
|
-
|
|
52035
|
-
|
|
52157
|
+
mainvue_type_template_id_31c26b8e_render,
|
|
52158
|
+
mainvue_type_template_id_31c26b8e_staticRenderFns,
|
|
52036
52159
|
false,
|
|
52037
52160
|
null,
|
|
52038
52161
|
null,
|
|
@@ -65416,8 +65539,8 @@ toolbar_src_main.install = function (Vue) {
|
|
|
65416
65539
|
};
|
|
65417
65540
|
|
|
65418
65541
|
/* harmony default export */ var packages_toolbar = (toolbar_src_main);
|
|
65419
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=
|
|
65420
|
-
var
|
|
65542
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=0cd27751&
|
|
65543
|
+
var tablevue_type_template_id_0cd27751_render = function () {
|
|
65421
65544
|
var _vm = this
|
|
65422
65545
|
var _h = _vm.$createElement
|
|
65423
65546
|
var _c = _vm._self._c || _h
|
|
@@ -65585,7 +65708,8 @@ var tablevue_type_template_id_b5a1829e_render = function () {
|
|
|
65585
65708
|
class: {
|
|
65586
65709
|
"es-align-middle": item.labelRow,
|
|
65587
65710
|
"is-required":
|
|
65588
|
-
|
|
65711
|
+
item.rules &&
|
|
65712
|
+
item.rules.required &&
|
|
65589
65713
|
!_vm.hideRequiredAsterisk,
|
|
65590
65714
|
"required-after": _vm.after,
|
|
65591
65715
|
},
|
|
@@ -68071,11 +68195,11 @@ var tablevue_type_template_id_b5a1829e_render = function () {
|
|
|
68071
68195
|
2
|
|
68072
68196
|
)
|
|
68073
68197
|
}
|
|
68074
|
-
var
|
|
68075
|
-
|
|
68198
|
+
var tablevue_type_template_id_0cd27751_staticRenderFns = []
|
|
68199
|
+
tablevue_type_template_id_0cd27751_render._withStripped = true
|
|
68076
68200
|
|
|
68077
68201
|
|
|
68078
|
-
// CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=
|
|
68202
|
+
// CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=0cd27751&
|
|
68079
68203
|
|
|
68080
68204
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=script&lang=js&
|
|
68081
68205
|
var src_tablevue_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; };
|
|
@@ -69140,6 +69264,7 @@ var src_tablevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
69140
69264
|
//
|
|
69141
69265
|
//
|
|
69142
69266
|
//
|
|
69267
|
+
//
|
|
69143
69268
|
|
|
69144
69269
|
|
|
69145
69270
|
|
|
@@ -69456,8 +69581,8 @@ var src_tablevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
69456
69581
|
|
|
69457
69582
|
var form_src_table_component = normalizeComponent(
|
|
69458
69583
|
packages_form_src_tablevue_type_script_lang_js_,
|
|
69459
|
-
|
|
69460
|
-
|
|
69584
|
+
tablevue_type_template_id_0cd27751_render,
|
|
69585
|
+
tablevue_type_template_id_0cd27751_staticRenderFns,
|
|
69461
69586
|
false,
|
|
69462
69587
|
null,
|
|
69463
69588
|
null,
|
|
@@ -71420,7 +71545,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
71420
71545
|
}
|
|
71421
71546
|
|
|
71422
71547
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
71423
|
-
version: '0.5.
|
|
71548
|
+
version: '0.5.37',
|
|
71424
71549
|
install: install,
|
|
71425
71550
|
Button: packages_button,
|
|
71426
71551
|
ButtonGroup: button_group,
|