eoss-mobiles 0.3.33 → 0.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/eoss-mobile.common.js +339 -127
- package/lib/flow.js +300 -97
- package/lib/form.js +33 -24
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +82 -15
- package/packages/flow/src/components/Opinion.vue +48 -17
- package/packages/flow/src/components/StartFlow.vue +131 -77
- package/packages/flow/src/components/TaskRead.vue +0 -1
- package/packages/flow/src/components/reset.vue +0 -2
- package/packages/flow/src/components/supervise.vue +4 -2
- package/packages/flow/src/components/taskUnionExamine.vue +0 -1
- package/packages/form/src/main.vue +1 -1
- package/src/index.js +1 -1
|
@@ -13003,8 +13003,8 @@ mainvue_type_template_id_81a61f1c_render._withStripped = true
|
|
|
13003
13003
|
|
|
13004
13004
|
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=81a61f1c
|
|
13005
13005
|
|
|
13006
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/StartFlow.vue?vue&type=template&id=
|
|
13007
|
-
var
|
|
13006
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/StartFlow.vue?vue&type=template&id=1e2dff79
|
|
13007
|
+
var StartFlowvue_type_template_id_1e2dff79_render = function () {
|
|
13008
13008
|
var _vm = this
|
|
13009
13009
|
var _h = _vm.$createElement
|
|
13010
13010
|
var _c = _vm._self._c || _h
|
|
@@ -13111,11 +13111,11 @@ var StartFlowvue_type_template_id_5879d66b_render = function () {
|
|
|
13111
13111
|
},
|
|
13112
13112
|
},
|
|
13113
13113
|
model: {
|
|
13114
|
-
value: _vm.form.
|
|
13114
|
+
value: _vm.form.nextNodeId,
|
|
13115
13115
|
callback: function ($$v) {
|
|
13116
|
-
_vm.$set(_vm.form, "
|
|
13116
|
+
_vm.$set(_vm.form, "nextNodeId", $$v)
|
|
13117
13117
|
},
|
|
13118
|
-
expression: "form.
|
|
13118
|
+
expression: "form.nextNodeId",
|
|
13119
13119
|
},
|
|
13120
13120
|
}),
|
|
13121
13121
|
],
|
|
@@ -13315,14 +13315,14 @@ var StartFlowvue_type_template_id_5879d66b_render = function () {
|
|
|
13315
13315
|
]),
|
|
13316
13316
|
])
|
|
13317
13317
|
}
|
|
13318
|
-
var
|
|
13319
|
-
|
|
13318
|
+
var StartFlowvue_type_template_id_1e2dff79_staticRenderFns = []
|
|
13319
|
+
StartFlowvue_type_template_id_1e2dff79_render._withStripped = true
|
|
13320
13320
|
|
|
13321
13321
|
|
|
13322
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=
|
|
13322
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=1e2dff79
|
|
13323
13323
|
|
|
13324
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=template&id=
|
|
13325
|
-
var
|
|
13324
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=template&id=405382b8
|
|
13325
|
+
var Opinionvue_type_template_id_405382b8_render = function () {
|
|
13326
13326
|
var _vm = this
|
|
13327
13327
|
var _h = _vm.$createElement
|
|
13328
13328
|
var _c = _vm._self._c || _h
|
|
@@ -13393,16 +13393,25 @@ var Opinionvue_type_template_id_4d744373_render = function () {
|
|
|
13393
13393
|
},
|
|
13394
13394
|
[
|
|
13395
13395
|
_c("em-input", {
|
|
13396
|
+
ref: "opinionInp",
|
|
13397
|
+
refInFor: true,
|
|
13396
13398
|
attrs: {
|
|
13397
13399
|
label: _vm.label,
|
|
13398
13400
|
placeholder: _vm.placeholder,
|
|
13401
|
+
autofocus:
|
|
13402
|
+
_vm.pendingItemHandleDescription &&
|
|
13403
|
+
_vm.showDescription,
|
|
13399
13404
|
type: "textarea",
|
|
13400
13405
|
rows: "3",
|
|
13401
13406
|
disabled: _vm.disabled || _vm.fixedDisabled,
|
|
13402
13407
|
required:
|
|
13403
13408
|
_vm.isOpinionRequired == 1 ? true : false,
|
|
13404
13409
|
},
|
|
13405
|
-
on: {
|
|
13410
|
+
on: {
|
|
13411
|
+
input: _vm.onInput,
|
|
13412
|
+
focus: _vm.handleFocus,
|
|
13413
|
+
blur: _vm.handleBlur,
|
|
13414
|
+
},
|
|
13406
13415
|
model: {
|
|
13407
13416
|
value: _vm.opinion,
|
|
13408
13417
|
callback: function ($$v) {
|
|
@@ -13452,15 +13461,23 @@ var Opinionvue_type_template_id_4d744373_render = function () {
|
|
|
13452
13461
|
},
|
|
13453
13462
|
[
|
|
13454
13463
|
_c("em-input", {
|
|
13464
|
+
ref: "opinionInp",
|
|
13455
13465
|
attrs: {
|
|
13456
13466
|
label: _vm.label,
|
|
13457
13467
|
placeholder: _vm.placeholder,
|
|
13458
13468
|
type: "textarea",
|
|
13459
13469
|
rows: "3",
|
|
13470
|
+
autofocus:
|
|
13471
|
+
_vm.pendingItemHandleDescription &&
|
|
13472
|
+
_vm.showDescription,
|
|
13460
13473
|
disabled: _vm.disabled || _vm.fixedDisabled,
|
|
13461
13474
|
required: _vm.isOpinionRequired == 1 ? true : false,
|
|
13462
13475
|
},
|
|
13463
|
-
on: {
|
|
13476
|
+
on: {
|
|
13477
|
+
focus: _vm.handleFocus,
|
|
13478
|
+
blur: _vm.handleBlur,
|
|
13479
|
+
input: _vm.onInput,
|
|
13480
|
+
},
|
|
13464
13481
|
model: {
|
|
13465
13482
|
value: _vm.opinion,
|
|
13466
13483
|
callback: function ($$v) {
|
|
@@ -13531,11 +13548,11 @@ var Opinionvue_type_template_id_4d744373_render = function () {
|
|
|
13531
13548
|
1
|
|
13532
13549
|
)
|
|
13533
13550
|
}
|
|
13534
|
-
var
|
|
13535
|
-
|
|
13551
|
+
var Opinionvue_type_template_id_405382b8_staticRenderFns = []
|
|
13552
|
+
Opinionvue_type_template_id_405382b8_render._withStripped = true
|
|
13536
13553
|
|
|
13537
13554
|
|
|
13538
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=
|
|
13555
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=template&id=405382b8
|
|
13539
13556
|
|
|
13540
13557
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Opinion.vue?vue&type=script&lang=js
|
|
13541
13558
|
//
|
|
@@ -13635,6 +13652,14 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13635
13652
|
//
|
|
13636
13653
|
//
|
|
13637
13654
|
//
|
|
13655
|
+
//
|
|
13656
|
+
//
|
|
13657
|
+
//
|
|
13658
|
+
//
|
|
13659
|
+
//
|
|
13660
|
+
//
|
|
13661
|
+
//
|
|
13662
|
+
//
|
|
13638
13663
|
|
|
13639
13664
|
|
|
13640
13665
|
|
|
@@ -13698,6 +13723,10 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13698
13723
|
oldOpinion: {
|
|
13699
13724
|
type: String,
|
|
13700
13725
|
default: ''
|
|
13726
|
+
},
|
|
13727
|
+
pendingItemHandleDescription: {
|
|
13728
|
+
type: String,
|
|
13729
|
+
default: ''
|
|
13701
13730
|
}
|
|
13702
13731
|
},
|
|
13703
13732
|
// components: {
|
|
@@ -13709,6 +13738,7 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13709
13738
|
newOpinion: '',
|
|
13710
13739
|
fixedDisabled: false,
|
|
13711
13740
|
showPicker: false,
|
|
13741
|
+
showDescription: true,
|
|
13712
13742
|
esignPath: '',
|
|
13713
13743
|
tabs: [{ id: 0, text: '键盘签批', type: 0 }, { id: 1, text: '手写签批', type: 1 }],
|
|
13714
13744
|
isImageOpinion: 0,
|
|
@@ -13753,7 +13783,6 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13753
13783
|
}
|
|
13754
13784
|
},
|
|
13755
13785
|
created: function created() {
|
|
13756
|
-
|
|
13757
13786
|
if (this.nodeFixedOpinionSelectList.length > 0) {
|
|
13758
13787
|
this.opinionList = this.nodeFixedOpinionSelectList;
|
|
13759
13788
|
this.fixedDisabled = true;
|
|
@@ -13763,6 +13792,24 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13763
13792
|
},
|
|
13764
13793
|
|
|
13765
13794
|
methods: {
|
|
13795
|
+
handleFocus: function handleFocus() {
|
|
13796
|
+
var _this2 = this;
|
|
13797
|
+
|
|
13798
|
+
if (this.showDescription && this.pendingItemHandleDescription) {
|
|
13799
|
+
this.$dialog.confirm({
|
|
13800
|
+
message: '\u786E\u5B9A\u586B\u5165<span style="color:red">' + this.pendingItemHandleDescription + '</span>\u8BF4\u660E\u5417\uFF1F'
|
|
13801
|
+
}).then(function () {
|
|
13802
|
+
_this2.opinion = _this2.pendingItemHandleDescription;
|
|
13803
|
+
_this2.$refs.opinionInp[0].$children[0].focus();
|
|
13804
|
+
}).catch(function () {
|
|
13805
|
+
// on cancel
|
|
13806
|
+
_this2.$refs.opinionInp[0].$children[0].focus();
|
|
13807
|
+
});
|
|
13808
|
+
}
|
|
13809
|
+
},
|
|
13810
|
+
handleBlur: function handleBlur() {
|
|
13811
|
+
this.showDescription = !this.showDescription;
|
|
13812
|
+
},
|
|
13766
13813
|
handleSave: function handleSave(info) {
|
|
13767
13814
|
var isImageOpinion = this.isImageOpinion;
|
|
13768
13815
|
|
|
@@ -13790,7 +13837,7 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13790
13837
|
|
|
13791
13838
|
// 获取常用意见列表
|
|
13792
13839
|
getOpinionList: function getOpinionList() {
|
|
13793
|
-
var
|
|
13840
|
+
var _this3 = this;
|
|
13794
13841
|
|
|
13795
13842
|
var _that = this;
|
|
13796
13843
|
utils_http({
|
|
@@ -13798,7 +13845,7 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13798
13845
|
params: { userId: _that.userId }
|
|
13799
13846
|
}).then(function (res) {
|
|
13800
13847
|
if (res.status == 'success') {
|
|
13801
|
-
|
|
13848
|
+
_this3.opinionList = res.data.list;
|
|
13802
13849
|
}
|
|
13803
13850
|
});
|
|
13804
13851
|
},
|
|
@@ -13839,8 +13886,8 @@ Opinionvue_type_template_id_4d744373_render._withStripped = true
|
|
|
13839
13886
|
|
|
13840
13887
|
var Opinion_component = normalizeComponent(
|
|
13841
13888
|
components_Opinionvue_type_script_lang_js,
|
|
13842
|
-
|
|
13843
|
-
|
|
13889
|
+
Opinionvue_type_template_id_405382b8_render,
|
|
13890
|
+
Opinionvue_type_template_id_405382b8_staticRenderFns,
|
|
13844
13891
|
false,
|
|
13845
13892
|
null,
|
|
13846
13893
|
null,
|
|
@@ -14888,6 +14935,7 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
14888
14935
|
showOpinion: true,
|
|
14889
14936
|
readOnlyNotificationType: '',
|
|
14890
14937
|
notificationMessageReadOnly: false,
|
|
14938
|
+
defaultNextNode: '',
|
|
14891
14939
|
isCustomUser: 1,
|
|
14892
14940
|
isCurrentNodeForbiddenChangeCandidate: 0,
|
|
14893
14941
|
form: {
|
|
@@ -15104,7 +15152,7 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15104
15152
|
format: false
|
|
15105
15153
|
}).then(function (res) {
|
|
15106
15154
|
_this2.$toast.clear();
|
|
15107
|
-
if (res.rCode == 0 || res.status ==
|
|
15155
|
+
if (res.rCode == 0 || res.status == 'success') {
|
|
15108
15156
|
_this2.$toast('操作成功');
|
|
15109
15157
|
if (_that.formType == 'freeStart' && !_that.isFreeStartFlow) {
|
|
15110
15158
|
_this2.$emit('closePop');
|
|
@@ -15183,11 +15231,26 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15183
15231
|
|
|
15184
15232
|
// 确认下一步操作
|
|
15185
15233
|
onConfirmNext: function onConfirmNext(val) {
|
|
15234
|
+
var _this3 = this;
|
|
15235
|
+
|
|
15186
15236
|
this.form.nextName = val.itemName;
|
|
15187
15237
|
this.nodeList = val.list;
|
|
15188
|
-
this.
|
|
15189
|
-
|
|
15190
|
-
|
|
15238
|
+
if (this.defaultNextNode && this.nodeList.filter(function (x) {
|
|
15239
|
+
return x.nodeId == _this3.defaultNextNode;
|
|
15240
|
+
}).length > 0) {
|
|
15241
|
+
var nodeInfo = this.nodeList.filter(function (x) {
|
|
15242
|
+
return x.nodeId == _this3.defaultNextNode;
|
|
15243
|
+
});
|
|
15244
|
+
this.form.nextNodeId = nodeInfo[0].nodeId;
|
|
15245
|
+
this.form.nextNodeName = nodeInfo[0].nodeName;
|
|
15246
|
+
nodeInfo[0].transactorInfos && (this.nextUserList = nodeInfo[0].transactorInfos);
|
|
15247
|
+
} else {
|
|
15248
|
+
this.form.nextNodeId = val.list[0].nodeId;
|
|
15249
|
+
this.form.nextNodeName = val.list[0].nodeName;
|
|
15250
|
+
val.list[0].transactorInfos && (this.nextUserList = val.list[0].transactorInfos);
|
|
15251
|
+
}
|
|
15252
|
+
|
|
15253
|
+
this.nextUserSelectList = [];
|
|
15191
15254
|
this.showNextList = false;
|
|
15192
15255
|
this.getPeopleObj(this.form.nextNodeId);
|
|
15193
15256
|
},
|
|
@@ -15197,6 +15260,8 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15197
15260
|
this.form.nextNodeId = val.nodeId;
|
|
15198
15261
|
this.form.nextNodeName = val.nodeName;
|
|
15199
15262
|
this.showNextNodeList = false;
|
|
15263
|
+
val.transactorInfos && (this.nextUserList = val.transactorInfos);
|
|
15264
|
+
this.nextUserSelectList = [];
|
|
15200
15265
|
this.getPeopleObj(this.form.nextNodeId);
|
|
15201
15266
|
},
|
|
15202
15267
|
|
|
@@ -15250,16 +15315,35 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15250
15315
|
that.isBanInputOpinion = 0;
|
|
15251
15316
|
}
|
|
15252
15317
|
that.isChooseNextNode = res.results.nodeExtr.isChooseNextNode;
|
|
15318
|
+
that.defaultNextNode = res.results.nodeExtr.defaultNextNode;
|
|
15253
15319
|
that.nodeList = res.results.nodeList[0].list;
|
|
15254
|
-
|
|
15255
|
-
|
|
15256
|
-
|
|
15257
|
-
|
|
15258
|
-
|
|
15259
|
-
that.nextUserList.map(function (x) {
|
|
15260
|
-
x.checked = false;
|
|
15320
|
+
if (res.results.nodeExtr.defaultNextNode && that.nextList[0].list.filter(function (x) {
|
|
15321
|
+
return x.nodeId == res.results.nodeExtr.defaultNextNode;
|
|
15322
|
+
}).length > 0) {
|
|
15323
|
+
var nodeInfo = that.nextList[0].list.filter(function (x) {
|
|
15324
|
+
return x.nodeId == res.results.nodeExtr.defaultNextNode;
|
|
15261
15325
|
});
|
|
15326
|
+
|
|
15327
|
+
that.form.nextNodeId = nodeInfo[0].nodeId;
|
|
15328
|
+
that.form.nextNodeName = nodeInfo[0].nodeName;
|
|
15329
|
+
nodeInfo[0].transactorInfos && (that.nextUserList = nodeInfo[0].transactorInfos);
|
|
15330
|
+
if (that.nextUserList) {
|
|
15331
|
+
that.nextUserList.map(function (x) {
|
|
15332
|
+
x.checked = false;
|
|
15333
|
+
});
|
|
15334
|
+
}
|
|
15335
|
+
} else {
|
|
15336
|
+
that.form.nextNodeId = that.nextList[0].list[0].nodeId;
|
|
15337
|
+
that.form.nextNodeName = that.nextList[0].list[0].nodeName;
|
|
15338
|
+
that.nextList[0].list[0].transactorInfos && (that.nextUserList = that.nextList[0].list[0].transactorInfos);
|
|
15339
|
+
if (that.nextUserList) {
|
|
15340
|
+
that.nextUserList.map(function (x) {
|
|
15341
|
+
x.checked = false;
|
|
15342
|
+
});
|
|
15343
|
+
}
|
|
15262
15344
|
}
|
|
15345
|
+
that.form.nextName = that.nextList[0].itemName;
|
|
15346
|
+
|
|
15263
15347
|
that.form.notificationMsg = res.results.notificationMsg;
|
|
15264
15348
|
that.form.nodeId = res.results.nodeId;
|
|
15265
15349
|
var defaultNotificationTypes = [];
|
|
@@ -15282,9 +15366,16 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15282
15366
|
|
|
15283
15367
|
// 获取节点信息(获取节点属性及办理人)
|
|
15284
15368
|
getPeopleObj: function getPeopleObj(res) {
|
|
15285
|
-
var
|
|
15369
|
+
var _this4 = this;
|
|
15286
15370
|
|
|
15287
15371
|
var _that = this;
|
|
15372
|
+
// this.$toast.loading({
|
|
15373
|
+
// message: '加载中...',
|
|
15374
|
+
// forbidClick: true,
|
|
15375
|
+
// loadingType: 'spinner',
|
|
15376
|
+
// overlay: true,
|
|
15377
|
+
// duration: 0
|
|
15378
|
+
// });
|
|
15288
15379
|
utils_http({
|
|
15289
15380
|
url: _that.apiBaseUrl ? _that.apiBaseUrl + api_getNodeInfo : api_getNodeInfo,
|
|
15290
15381
|
params: {
|
|
@@ -15296,36 +15387,37 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15296
15387
|
// }
|
|
15297
15388
|
}
|
|
15298
15389
|
}).then(function (res) {
|
|
15299
|
-
|
|
15390
|
+
_this4.$toast.clear();
|
|
15300
15391
|
if (res.rCode == 0) {
|
|
15301
15392
|
_that.isCustomUser = res.results.nodeExtr.isCustomUser;
|
|
15302
|
-
|
|
15303
|
-
_that.
|
|
15393
|
+
_that.peopleObj = res.results.nodeExtr;
|
|
15394
|
+
// _that.nextUserList = res.results.transactorInfos || [];
|
|
15395
|
+
_that.enableCustomLimitTimeSetting = _this4.peopleObj.enableCustomLimitTimeSetting == 1;
|
|
15304
15396
|
if (res.results.nodeExtr.userSelectionType) {
|
|
15305
|
-
|
|
15397
|
+
_this4.treeType = res.results.nodeExtr.userSelectionType;
|
|
15306
15398
|
if (res.results.nodeExtr) {
|
|
15307
15399
|
var idStr = '';
|
|
15308
|
-
if (res.results.nodeExtr.isDefSelectedObj == 1 &&
|
|
15309
|
-
|
|
15310
|
-
|
|
15311
|
-
idStr =
|
|
15400
|
+
if (res.results.nodeExtr.isDefSelectedObj == 1 && _this4.nextUserList.length > 0) {
|
|
15401
|
+
_this4.nextUserList[0].checked = true;
|
|
15402
|
+
_this4.nextUserSelectList = [_this4.nextUserList[0]];
|
|
15403
|
+
idStr = _this4.nextUserSelectList[0].showid;
|
|
15312
15404
|
}
|
|
15313
|
-
if (res.results.nodeExtr.isSelectedAllObj == 1 &&
|
|
15314
|
-
|
|
15405
|
+
if (res.results.nodeExtr.isSelectedAllObj == 1 && _this4.nextUserList.length > 0) {
|
|
15406
|
+
_this4.nextUserSelectList = [];
|
|
15315
15407
|
idStr = '';
|
|
15316
|
-
|
|
15408
|
+
_this4.nextUserList.map(function (x) {
|
|
15317
15409
|
x.checked = true;
|
|
15318
|
-
|
|
15410
|
+
_this4.nextUserSelectList.push(x);
|
|
15319
15411
|
idStr = idStr ? idStr + ',' + x.showid : idStr;
|
|
15320
15412
|
});
|
|
15321
15413
|
}
|
|
15322
|
-
|
|
15414
|
+
_this4.form.nextUserId = idStr;
|
|
15323
15415
|
}
|
|
15324
15416
|
// this.nextUserSelectList = list.filter(x => x.showname && x.showid);
|
|
15325
|
-
|
|
15417
|
+
_this4.getTreeChangeType();
|
|
15326
15418
|
}
|
|
15327
15419
|
} else {
|
|
15328
|
-
|
|
15420
|
+
_this4.$toast(res.message);
|
|
15329
15421
|
}
|
|
15330
15422
|
});
|
|
15331
15423
|
}
|
|
@@ -15343,8 +15435,8 @@ var StartFlowvue_type_script_lang_js_typeof = typeof Symbol === "function" && ty
|
|
|
15343
15435
|
|
|
15344
15436
|
var StartFlow_component = normalizeComponent(
|
|
15345
15437
|
components_StartFlowvue_type_script_lang_js,
|
|
15346
|
-
|
|
15347
|
-
|
|
15438
|
+
StartFlowvue_type_template_id_1e2dff79_render,
|
|
15439
|
+
StartFlowvue_type_template_id_1e2dff79_staticRenderFns,
|
|
15348
15440
|
false,
|
|
15349
15441
|
null,
|
|
15350
15442
|
null,
|
|
@@ -15353,8 +15445,8 @@ var StartFlow_component = normalizeComponent(
|
|
|
15353
15445
|
)
|
|
15354
15446
|
|
|
15355
15447
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
15356
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
15357
|
-
var
|
|
15448
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Handle.vue?vue&type=template&id=dea6aca8
|
|
15449
|
+
var Handlevue_type_template_id_dea6aca8_render = function () {
|
|
15358
15450
|
var _vm = this
|
|
15359
15451
|
var _h = _vm.$createElement
|
|
15360
15452
|
var _c = _vm._self._c || _h
|
|
@@ -15420,7 +15512,11 @@ var Handlevue_type_template_id_8f85c1c2_render = function () {
|
|
|
15420
15512
|
baseUrl: _vm.baseUrl,
|
|
15421
15513
|
isForceDisplayDefaultOptionForPrefix:
|
|
15422
15514
|
_vm.isForceDisplayDefaultOptionForPrefix,
|
|
15423
|
-
|
|
15515
|
+
pendingItemHandleDescription:
|
|
15516
|
+
_vm.pendingItemHandleDescription,
|
|
15517
|
+
placeholder:
|
|
15518
|
+
_vm.pendingItemHandleDescription ||
|
|
15519
|
+
_vm.opinionHandleExplainText,
|
|
15424
15520
|
nodeDefaultSubmitOpinion: _vm.nodeDefaultSubmitOpinion,
|
|
15425
15521
|
nodeFixedOpinionSelectList:
|
|
15426
15522
|
_vm.nodeFixedOpinionSelectList,
|
|
@@ -16237,8 +16333,52 @@ var Handlevue_type_template_id_8f85c1c2_render = function () {
|
|
|
16237
16333
|
attrs: {
|
|
16238
16334
|
value: "办理说明",
|
|
16239
16335
|
label: "办理说明",
|
|
16240
|
-
|
|
16241
|
-
|
|
16336
|
+
placeholder: "请输入办理说明",
|
|
16337
|
+
},
|
|
16338
|
+
model: {
|
|
16339
|
+
value: _vm.form.handleExplain,
|
|
16340
|
+
callback: function ($$v) {
|
|
16341
|
+
_vm.$set(
|
|
16342
|
+
_vm.form,
|
|
16343
|
+
"handleExplain",
|
|
16344
|
+
$$v
|
|
16345
|
+
)
|
|
16346
|
+
},
|
|
16347
|
+
expression:
|
|
16348
|
+
"form.handleExplain",
|
|
16349
|
+
},
|
|
16350
|
+
}),
|
|
16351
|
+
],
|
|
16352
|
+
1
|
|
16353
|
+
)
|
|
16354
|
+
: _vm._e(),
|
|
16355
|
+
_vm.currentNodeEnableItemHandleDescription &&
|
|
16356
|
+
_vm.nodeList.length != 0 &&
|
|
16357
|
+
_vm.isShowNode &&
|
|
16358
|
+
_vm.isNextUser
|
|
16359
|
+
? _c(
|
|
16360
|
+
"div",
|
|
16361
|
+
{ staticClass: "item" },
|
|
16362
|
+
[
|
|
16363
|
+
_c("van-field", {
|
|
16364
|
+
attrs: {
|
|
16365
|
+
value: "办理说明",
|
|
16366
|
+
label: "办理说明",
|
|
16367
|
+
placeholder: "请输入办理说明",
|
|
16368
|
+
},
|
|
16369
|
+
model: {
|
|
16370
|
+
value:
|
|
16371
|
+
_vm.form
|
|
16372
|
+
.nextItemHandleDescription,
|
|
16373
|
+
callback: function ($$v) {
|
|
16374
|
+
_vm.$set(
|
|
16375
|
+
_vm.form,
|
|
16376
|
+
"nextItemHandleDescription",
|
|
16377
|
+
$$v
|
|
16378
|
+
)
|
|
16379
|
+
},
|
|
16380
|
+
expression:
|
|
16381
|
+
"form.nextItemHandleDescription",
|
|
16242
16382
|
},
|
|
16243
16383
|
}),
|
|
16244
16384
|
],
|
|
@@ -16756,11 +16896,11 @@ var Handlevue_type_template_id_8f85c1c2_render = function () {
|
|
|
16756
16896
|
1
|
|
16757
16897
|
)
|
|
16758
16898
|
}
|
|
16759
|
-
var
|
|
16760
|
-
|
|
16899
|
+
var Handlevue_type_template_id_dea6aca8_staticRenderFns = []
|
|
16900
|
+
Handlevue_type_template_id_dea6aca8_render._withStripped = true
|
|
16761
16901
|
|
|
16762
16902
|
|
|
16763
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
16903
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=dea6aca8
|
|
16764
16904
|
|
|
16765
16905
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=template&id=46f10c43
|
|
16766
16906
|
var Rejectvue_type_template_id_46f10c43_render = function () {
|
|
@@ -18009,6 +18149,23 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18009
18149
|
//
|
|
18010
18150
|
//
|
|
18011
18151
|
//
|
|
18152
|
+
//
|
|
18153
|
+
//
|
|
18154
|
+
//
|
|
18155
|
+
//
|
|
18156
|
+
//
|
|
18157
|
+
//
|
|
18158
|
+
//
|
|
18159
|
+
//
|
|
18160
|
+
//
|
|
18161
|
+
//
|
|
18162
|
+
//
|
|
18163
|
+
//
|
|
18164
|
+
//
|
|
18165
|
+
//
|
|
18166
|
+
//
|
|
18167
|
+
//
|
|
18168
|
+
//
|
|
18012
18169
|
|
|
18013
18170
|
|
|
18014
18171
|
|
|
@@ -18067,6 +18224,10 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18067
18224
|
return _ref = {
|
|
18068
18225
|
AddSignList: [{ name: '前置加签', value: 'preAddSign' }, { name: '后置加签', value: 'postAddSign' }],
|
|
18069
18226
|
otherOrgDisabledObjId: [],
|
|
18227
|
+
currentNodeEnableItemHandleDescription: false,
|
|
18228
|
+
pendingItemHandleDescription: '',
|
|
18229
|
+
taskOperationShiftedNodeList: null,
|
|
18230
|
+
oldNextOperate: '',
|
|
18070
18231
|
processFormType: 'freeStart',
|
|
18071
18232
|
currentOrgDisabledObjId: [],
|
|
18072
18233
|
nextNodeDefault: 0,
|
|
@@ -18444,7 +18605,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18444
18605
|
delete this.form.nextOperate;
|
|
18445
18606
|
delete this.form.nextNodeId;
|
|
18446
18607
|
}
|
|
18447
|
-
if (this.form.nextOperate == 9) {
|
|
18608
|
+
if (this.form.nextOperate == 9 || this.oldNextOperate == 9) {
|
|
18448
18609
|
this.form.isReturnRejectNode = 1;
|
|
18449
18610
|
this.form.processDefinitionId = this.processObj.taskExamine.processDefinitionId;
|
|
18450
18611
|
}
|
|
@@ -18497,7 +18658,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18497
18658
|
_that.form.userId = _that.userId || util["a" /* default */].getStorage('userId');
|
|
18498
18659
|
// _that.form.userId = 'u3a0bc559d4cf4f6ea47106ed7e76cae6';
|
|
18499
18660
|
_that.form.mobileKey = util["a" /* default */].getStorage('deviceId') || '123';
|
|
18500
|
-
_that.form.nextNodeId = _that.form.nextOperate == 0 || _that.form.nextOperate == 1 ? _that.form.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode : '';
|
|
18661
|
+
_that.form.nextNodeId = _that.form.nextOperate == 0 || _that.form.nextOperate == 1 || _that.oldNextOperate === 0 || _that.oldNextOperate === 1 ? _that.form.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode : '';
|
|
18662
|
+
_that.form.nextOperate = _that.oldNextOperate !== '' ? _that.oldNextOperate : _that.form.nextOperate;
|
|
18501
18663
|
if (!_that.isCanPreAddSign || _that.form.isAddSign != '1') {
|
|
18502
18664
|
delete _that.form.addSignMode;
|
|
18503
18665
|
}
|
|
@@ -18507,6 +18669,9 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18507
18669
|
if (!this.isSpecial) {
|
|
18508
18670
|
delete _that.form.nextUserId;
|
|
18509
18671
|
}
|
|
18672
|
+
if (!_that.currentNodeEnableItemHandleDescription) {
|
|
18673
|
+
delete _that.form.nextItemHandleDescription;
|
|
18674
|
+
}
|
|
18510
18675
|
var formData = new FormData();
|
|
18511
18676
|
if (_that.form.isImageOpinion == 1) {
|
|
18512
18677
|
formData.append('file', _that.file);
|
|
@@ -18658,6 +18823,30 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18658
18823
|
return;
|
|
18659
18824
|
} else {}
|
|
18660
18825
|
}
|
|
18826
|
+
if (this.taskOperationShiftedNodeList && !val.isNextNode) {
|
|
18827
|
+
this.nodeList = this.nodeList.filter(function (x) {
|
|
18828
|
+
return _this8.taskOperationShiftedNodeList.indexOf(x.nodeId) == -1;
|
|
18829
|
+
});
|
|
18830
|
+
}
|
|
18831
|
+
if (val.isNextNode) {
|
|
18832
|
+
this.oldNextOperate = val.nextOperate;
|
|
18833
|
+
} else {
|
|
18834
|
+
this.oldNextOperate = '';
|
|
18835
|
+
}
|
|
18836
|
+
if (val.isNextNode) {
|
|
18837
|
+
this.nodeInfos = [];
|
|
18838
|
+
this.form.nextNodeId = val.key;
|
|
18839
|
+
this.form.nextNodeName = val.value;
|
|
18840
|
+
this.$toast.loading({
|
|
18841
|
+
message: '加载中...',
|
|
18842
|
+
forbidClick: true,
|
|
18843
|
+
loadingType: 'spinner',
|
|
18844
|
+
overlay: true,
|
|
18845
|
+
duration: 0
|
|
18846
|
+
});
|
|
18847
|
+
|
|
18848
|
+
this.getNodeObj(this.form.nextNodeId);
|
|
18849
|
+
}
|
|
18661
18850
|
if (this.nodeList && this.nodeList.length > 0) {
|
|
18662
18851
|
var defNode = this.nodeList.filter(function (i) {
|
|
18663
18852
|
return i.nodeId === _this8.defaultNextNode;
|
|
@@ -18677,6 +18866,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18677
18866
|
overlay: true,
|
|
18678
18867
|
duration: 0
|
|
18679
18868
|
});
|
|
18869
|
+
|
|
18680
18870
|
if (isDef !== true) this.getNodeObj(this.form.nextNodeId);
|
|
18681
18871
|
}
|
|
18682
18872
|
|
|
@@ -18800,10 +18990,20 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18800
18990
|
readOnlyNotificationType = _res$data.readOnlyNotificationType,
|
|
18801
18991
|
otherOrgName = _res$data.otherOrgName,
|
|
18802
18992
|
nextNodeCheckType = _res$data.nextNodeCheckType,
|
|
18993
|
+
pendingItemHandleDescription = _res$data.pendingItemHandleDescription,
|
|
18803
18994
|
defaultNotificationMessage = _res$data.defaultNotificationMessage,
|
|
18804
18995
|
defaultNotificationType = _res$data.defaultNotificationType,
|
|
18996
|
+
taskOperationShiftedNodeList = _res$data.taskOperationShiftedNodeList,
|
|
18805
18997
|
isCanPreAddSign = _res$data.isCanPreAddSign;
|
|
18806
18998
|
|
|
18999
|
+
if (taskOperationShiftedNodeList && taskOperationShiftedNodeList.length > 0) {
|
|
19000
|
+
that.taskOperationShiftedNodeList = [];
|
|
19001
|
+
taskOperationShiftedNodeList.map(function (x) {
|
|
19002
|
+
that.taskOperationShiftedNodeList.push(x.nodeId);
|
|
19003
|
+
that.taskOperations.push({ key: x.nodeId, value: x.nodeName, isNextNode: true, nextOperate: x.nextOperate });
|
|
19004
|
+
});
|
|
19005
|
+
}
|
|
19006
|
+
that.pendingItemHandleDescription = pendingItemHandleDescription;
|
|
18807
19007
|
nextNodeCheckType && (that.nextNodeCheckType = nextNodeCheckType);
|
|
18808
19008
|
that.customPresetHintMessage = customPresetHintMessage;
|
|
18809
19009
|
that.currentOrgName = currentOrgName;
|
|
@@ -18836,7 +19036,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18836
19036
|
}
|
|
18837
19037
|
that.isSpecial = res.data.isSpecial;
|
|
18838
19038
|
that.processObj = res.data;
|
|
18839
|
-
that.taskOperations = res.data.taskOperations;
|
|
19039
|
+
that.taskOperations = [].concat(res.data.taskOperations, that.taskOperations);
|
|
18840
19040
|
if (that.taskOperations && that.taskOperations.length > 0) {
|
|
18841
19041
|
var isSelected = false;
|
|
18842
19042
|
that.taskOperations.map(function (item) {
|
|
@@ -18906,7 +19106,11 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
18906
19106
|
}
|
|
18907
19107
|
that.tagKey = that.form.nextOperate;
|
|
18908
19108
|
}
|
|
18909
|
-
that.changeNextOperate({
|
|
19109
|
+
that.changeNextOperate({
|
|
19110
|
+
value: that.form.nextOperateName,
|
|
19111
|
+
key: that.form.nextOperate,
|
|
19112
|
+
taskNodeList: that.nodeList
|
|
19113
|
+
}, true);
|
|
18910
19114
|
if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
|
|
18911
19115
|
that.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
|
|
18912
19116
|
if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
|
|
@@ -19009,6 +19213,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
19009
19213
|
}).then(function (res) {
|
|
19010
19214
|
_this10.$toast.clear();
|
|
19011
19215
|
if (res.status == 'success') {
|
|
19216
|
+
_that.currentNodeEnableItemHandleDescription = res.data.nodeExtAttr.currentNodeEnableItemHandleDescription == 1;
|
|
19012
19217
|
_that.deptRoleCode = res.data.nodeExtAttr.deptRoleCode;
|
|
19013
19218
|
_that.enableCustomLimitTimeSetting = res.data.nodeExtAttr.enableCustomLimitTimeSetting == 1;
|
|
19014
19219
|
res.data.otherOrgDisabledObjId && (_this10.otherOrgDisabledObjId = res.data.otherOrgDisabledObjId.split(','));
|
|
@@ -19152,8 +19357,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
19152
19357
|
|
|
19153
19358
|
var Handle_component = normalizeComponent(
|
|
19154
19359
|
components_Handlevue_type_script_lang_js,
|
|
19155
|
-
|
|
19156
|
-
|
|
19360
|
+
Handlevue_type_template_id_dea6aca8_render,
|
|
19361
|
+
Handlevue_type_template_id_dea6aca8_staticRenderFns,
|
|
19157
19362
|
false,
|
|
19158
19363
|
null,
|
|
19159
19364
|
null,
|
|
@@ -19162,8 +19367,8 @@ var Handle_component = normalizeComponent(
|
|
|
19162
19367
|
)
|
|
19163
19368
|
|
|
19164
19369
|
/* harmony default export */ var Handle = (Handle_component.exports);
|
|
19165
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/TaskRead.vue?vue&type=template&id=
|
|
19166
|
-
var
|
|
19370
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/TaskRead.vue?vue&type=template&id=b0388a2a
|
|
19371
|
+
var TaskReadvue_type_template_id_b0388a2a_render = function () {
|
|
19167
19372
|
var _vm = this
|
|
19168
19373
|
var _h = _vm.$createElement
|
|
19169
19374
|
var _c = _vm._self._c || _h
|
|
@@ -19364,11 +19569,11 @@ var TaskReadvue_type_template_id_15ff6d1b_render = function () {
|
|
|
19364
19569
|
]),
|
|
19365
19570
|
])
|
|
19366
19571
|
}
|
|
19367
|
-
var
|
|
19368
|
-
|
|
19572
|
+
var TaskReadvue_type_template_id_b0388a2a_staticRenderFns = []
|
|
19573
|
+
TaskReadvue_type_template_id_b0388a2a_render._withStripped = true
|
|
19369
19574
|
|
|
19370
19575
|
|
|
19371
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=
|
|
19576
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=b0388a2a
|
|
19372
19577
|
|
|
19373
19578
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/TaskRead.vue?vue&type=script&lang=js
|
|
19374
19579
|
var TaskReadvue_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; };
|
|
@@ -19823,7 +20028,6 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
19823
20028
|
_this5.selectPersonValue = res.data.selectPersonValue;
|
|
19824
20029
|
_this5.isMultiple();
|
|
19825
20030
|
}
|
|
19826
|
-
console.log(res);
|
|
19827
20031
|
});
|
|
19828
20032
|
},
|
|
19829
20033
|
getProcessObjNew: function getProcessObjNew() {
|
|
@@ -20039,8 +20243,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
20039
20243
|
|
|
20040
20244
|
var TaskRead_component = normalizeComponent(
|
|
20041
20245
|
components_TaskReadvue_type_script_lang_js,
|
|
20042
|
-
|
|
20043
|
-
|
|
20246
|
+
TaskReadvue_type_template_id_b0388a2a_render,
|
|
20247
|
+
TaskReadvue_type_template_id_b0388a2a_staticRenderFns,
|
|
20044
20248
|
false,
|
|
20045
20249
|
null,
|
|
20046
20250
|
null,
|
|
@@ -20049,8 +20253,8 @@ var TaskRead_component = normalizeComponent(
|
|
|
20049
20253
|
)
|
|
20050
20254
|
|
|
20051
20255
|
/* harmony default export */ var TaskRead = (TaskRead_component.exports);
|
|
20052
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=
|
|
20053
|
-
var
|
|
20256
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=b05e7908
|
|
20257
|
+
var taskUnionExaminevue_type_template_id_b05e7908_render = function () {
|
|
20054
20258
|
var _vm = this
|
|
20055
20259
|
var _h = _vm.$createElement
|
|
20056
20260
|
var _c = _vm._self._c || _h
|
|
@@ -20209,11 +20413,11 @@ var taskUnionExaminevue_type_template_id_78d96d93_render = function () {
|
|
|
20209
20413
|
]),
|
|
20210
20414
|
])
|
|
20211
20415
|
}
|
|
20212
|
-
var
|
|
20213
|
-
|
|
20416
|
+
var taskUnionExaminevue_type_template_id_b05e7908_staticRenderFns = []
|
|
20417
|
+
taskUnionExaminevue_type_template_id_b05e7908_render._withStripped = true
|
|
20214
20418
|
|
|
20215
20419
|
|
|
20216
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=
|
|
20420
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=b05e7908
|
|
20217
20421
|
|
|
20218
20422
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/taskUnionExamine.vue?vue&type=script&lang=js
|
|
20219
20423
|
//
|
|
@@ -20668,7 +20872,6 @@ taskUnionExaminevue_type_template_id_78d96d93_render._withStripped = true
|
|
|
20668
20872
|
|
|
20669
20873
|
// 通知消息回调
|
|
20670
20874
|
onInputMsg: function onInputMsg(obj) {
|
|
20671
|
-
console.log(obj);
|
|
20672
20875
|
this.infoList.noticeType = JSON.parse(JSON.stringify(obj.notificationType));
|
|
20673
20876
|
this.infoList.noticeInfo = obj.notificationMsg;
|
|
20674
20877
|
},
|
|
@@ -20850,8 +21053,8 @@ taskUnionExaminevue_type_template_id_78d96d93_render._withStripped = true
|
|
|
20850
21053
|
|
|
20851
21054
|
var taskUnionExamine_component = normalizeComponent(
|
|
20852
21055
|
components_taskUnionExaminevue_type_script_lang_js,
|
|
20853
|
-
|
|
20854
|
-
|
|
21056
|
+
taskUnionExaminevue_type_template_id_b05e7908_render,
|
|
21057
|
+
taskUnionExaminevue_type_template_id_b05e7908_staticRenderFns,
|
|
20855
21058
|
false,
|
|
20856
21059
|
null,
|
|
20857
21060
|
null,
|
|
@@ -20860,8 +21063,8 @@ var taskUnionExamine_component = normalizeComponent(
|
|
|
20860
21063
|
)
|
|
20861
21064
|
|
|
20862
21065
|
/* harmony default export */ var components_taskUnionExamine = (taskUnionExamine_component.exports);
|
|
20863
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/supervise.vue?vue&type=template&id=
|
|
20864
|
-
var
|
|
21066
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/supervise.vue?vue&type=template&id=0c9c1b52
|
|
21067
|
+
var supervisevue_type_template_id_0c9c1b52_render = function () {
|
|
20865
21068
|
var _vm = this
|
|
20866
21069
|
var _h = _vm.$createElement
|
|
20867
21070
|
var _c = _vm._self._c || _h
|
|
@@ -20907,11 +21110,11 @@ var supervisevue_type_template_id_a0018e76_render = function () {
|
|
|
20907
21110
|
1
|
|
20908
21111
|
)
|
|
20909
21112
|
}
|
|
20910
|
-
var
|
|
20911
|
-
|
|
21113
|
+
var supervisevue_type_template_id_0c9c1b52_staticRenderFns = []
|
|
21114
|
+
supervisevue_type_template_id_0c9c1b52_render._withStripped = true
|
|
20912
21115
|
|
|
20913
21116
|
|
|
20914
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/supervise.vue?vue&type=template&id=
|
|
21117
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/supervise.vue?vue&type=template&id=0c9c1b52
|
|
20915
21118
|
|
|
20916
21119
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/supervise.vue?vue&type=script&lang=js
|
|
20917
21120
|
//
|
|
@@ -20956,7 +21159,8 @@ supervisevue_type_template_id_a0018e76_render._withStripped = true
|
|
|
20956
21159
|
components: { Message: Message },
|
|
20957
21160
|
props: {
|
|
20958
21161
|
baseUrl: String,
|
|
20959
|
-
businessId: String
|
|
21162
|
+
businessId: String,
|
|
21163
|
+
appId: { type: String, default: '' }
|
|
20960
21164
|
},
|
|
20961
21165
|
data: function data() {
|
|
20962
21166
|
return {
|
|
@@ -20992,7 +21196,8 @@ supervisevue_type_template_id_a0018e76_render._withStripped = true
|
|
|
20992
21196
|
}).join(','),
|
|
20993
21197
|
notificationType: Array.isArray(noticeType) ? noticeType.join(',') : noticeType,
|
|
20994
21198
|
notificationMessage: notificationMsg,
|
|
20995
|
-
businessId: this.businessId
|
|
21199
|
+
businessId: this.businessId,
|
|
21200
|
+
appId: this.appId
|
|
20996
21201
|
}
|
|
20997
21202
|
};
|
|
20998
21203
|
|
|
@@ -21062,8 +21267,8 @@ supervisevue_type_template_id_a0018e76_render._withStripped = true
|
|
|
21062
21267
|
|
|
21063
21268
|
var supervise_component = normalizeComponent(
|
|
21064
21269
|
components_supervisevue_type_script_lang_js,
|
|
21065
|
-
|
|
21066
|
-
|
|
21270
|
+
supervisevue_type_template_id_0c9c1b52_render,
|
|
21271
|
+
supervisevue_type_template_id_0c9c1b52_staticRenderFns,
|
|
21067
21272
|
false,
|
|
21068
21273
|
null,
|
|
21069
21274
|
null,
|
|
@@ -21072,8 +21277,8 @@ var supervise_component = normalizeComponent(
|
|
|
21072
21277
|
)
|
|
21073
21278
|
|
|
21074
21279
|
/* harmony default export */ var supervise = (supervise_component.exports);
|
|
21075
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/reset.vue?vue&type=template&id=
|
|
21076
|
-
var
|
|
21280
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/reset.vue?vue&type=template&id=f2a05600
|
|
21281
|
+
var resetvue_type_template_id_f2a05600_render = function () {
|
|
21077
21282
|
var _vm = this
|
|
21078
21283
|
var _h = _vm.$createElement
|
|
21079
21284
|
var _c = _vm._self._c || _h
|
|
@@ -21374,11 +21579,11 @@ var resetvue_type_template_id_302c5a84_render = function () {
|
|
|
21374
21579
|
]),
|
|
21375
21580
|
])
|
|
21376
21581
|
}
|
|
21377
|
-
var
|
|
21378
|
-
|
|
21582
|
+
var resetvue_type_template_id_f2a05600_staticRenderFns = []
|
|
21583
|
+
resetvue_type_template_id_f2a05600_render._withStripped = true
|
|
21379
21584
|
|
|
21380
21585
|
|
|
21381
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/reset.vue?vue&type=template&id=
|
|
21586
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/reset.vue?vue&type=template&id=f2a05600
|
|
21382
21587
|
|
|
21383
21588
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/reset.vue?vue&type=script&lang=js
|
|
21384
21589
|
var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
@@ -21732,7 +21937,6 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
|
|
|
21732
21937
|
});
|
|
21733
21938
|
//获取流程发起信息后去获取节点信息和办理人信息
|
|
21734
21939
|
Promise.all([this.getProcessObj(res)]).then(function () {
|
|
21735
|
-
console.log(res, _this3.form, 'asd');
|
|
21736
21940
|
_this3.getPeopleObj(_this3.form.nextNodeId);
|
|
21737
21941
|
});
|
|
21738
21942
|
},
|
|
@@ -21906,7 +22110,6 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
|
|
|
21906
22110
|
|
|
21907
22111
|
// 确认下一步操作
|
|
21908
22112
|
onConfirmNext: function onConfirmNext(val) {
|
|
21909
|
-
console.log(val, 'vaaav');
|
|
21910
22113
|
this.form.nextName = val.itemName;
|
|
21911
22114
|
this.nodeList = val.list;
|
|
21912
22115
|
this.form.nextNodeId = val.list[0].nodeId;
|
|
@@ -22083,8 +22286,8 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
|
|
|
22083
22286
|
|
|
22084
22287
|
var reset_component = normalizeComponent(
|
|
22085
22288
|
components_resetvue_type_script_lang_js,
|
|
22086
|
-
|
|
22087
|
-
|
|
22289
|
+
resetvue_type_template_id_f2a05600_render,
|
|
22290
|
+
resetvue_type_template_id_f2a05600_staticRenderFns,
|
|
22088
22291
|
false,
|
|
22089
22292
|
null,
|
|
22090
22293
|
null,
|
|
@@ -24740,8 +24943,8 @@ count_down_src_main.install = function (Vue) {
|
|
|
24740
24943
|
};
|
|
24741
24944
|
|
|
24742
24945
|
/* harmony default export */ var count_down = (count_down_src_main);
|
|
24743
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=
|
|
24744
|
-
var
|
|
24946
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=041f051e
|
|
24947
|
+
var mainvue_type_template_id_041f051e_render = function () {
|
|
24745
24948
|
var _vm = this
|
|
24746
24949
|
var _h = _vm.$createElement
|
|
24747
24950
|
var _c = _vm._self._c || _h
|
|
@@ -25641,30 +25844,39 @@ var mainvue_type_template_id_2c86be92_render = function () {
|
|
|
25641
25844
|
},
|
|
25642
25845
|
[_vm._v("提交")]
|
|
25643
25846
|
)
|
|
25644
|
-
: _vm.
|
|
25645
|
-
|
|
25646
|
-
|
|
25647
|
-
|
|
25847
|
+
: _vm._e(),
|
|
25848
|
+
_vm._l(_vm.btnList[0].contents, function (item) {
|
|
25849
|
+
return _c(
|
|
25850
|
+
"em-button",
|
|
25851
|
+
_vm._b(
|
|
25852
|
+
{
|
|
25853
|
+
directives: [
|
|
25648
25854
|
{
|
|
25649
|
-
|
|
25650
|
-
|
|
25651
|
-
|
|
25652
|
-
|
|
25653
|
-
: "button",
|
|
25654
|
-
},
|
|
25655
|
-
on: {
|
|
25656
|
-
click: function ($event) {
|
|
25657
|
-
_vm.handleClick(item)
|
|
25658
|
-
},
|
|
25659
|
-
},
|
|
25855
|
+
name: "show",
|
|
25856
|
+
rawName: "v-show",
|
|
25857
|
+
value: _vm.btnList.length != 0,
|
|
25858
|
+
expression: "btnList.length != 0",
|
|
25660
25859
|
},
|
|
25661
|
-
|
|
25662
|
-
|
|
25663
|
-
|
|
25664
|
-
|
|
25665
|
-
|
|
25666
|
-
|
|
25667
|
-
|
|
25860
|
+
],
|
|
25861
|
+
key: item.text,
|
|
25862
|
+
attrs: {
|
|
25863
|
+
"native-type": item.nativeType
|
|
25864
|
+
? item.nativeType
|
|
25865
|
+
: "button",
|
|
25866
|
+
},
|
|
25867
|
+
on: {
|
|
25868
|
+
click: function ($event) {
|
|
25869
|
+
_vm.handleClick(item)
|
|
25870
|
+
},
|
|
25871
|
+
},
|
|
25872
|
+
},
|
|
25873
|
+
"em-button",
|
|
25874
|
+
item,
|
|
25875
|
+
false
|
|
25876
|
+
),
|
|
25877
|
+
[_vm._v(_vm._s(item.text))]
|
|
25878
|
+
)
|
|
25879
|
+
}),
|
|
25668
25880
|
],
|
|
25669
25881
|
2
|
|
25670
25882
|
)
|
|
@@ -25672,11 +25884,11 @@ var mainvue_type_template_id_2c86be92_render = function () {
|
|
|
25672
25884
|
]
|
|
25673
25885
|
)
|
|
25674
25886
|
}
|
|
25675
|
-
var
|
|
25676
|
-
|
|
25887
|
+
var mainvue_type_template_id_041f051e_staticRenderFns = []
|
|
25888
|
+
mainvue_type_template_id_041f051e_render._withStripped = true
|
|
25677
25889
|
|
|
25678
25890
|
|
|
25679
|
-
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=
|
|
25891
|
+
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=041f051e
|
|
25680
25892
|
|
|
25681
25893
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=script&lang=js
|
|
25682
25894
|
//
|
|
@@ -26217,8 +26429,8 @@ mainvue_type_template_id_2c86be92_render._withStripped = true
|
|
|
26217
26429
|
|
|
26218
26430
|
var form_src_main_component = normalizeComponent(
|
|
26219
26431
|
packages_form_src_mainvue_type_script_lang_js,
|
|
26220
|
-
|
|
26221
|
-
|
|
26432
|
+
mainvue_type_template_id_041f051e_render,
|
|
26433
|
+
mainvue_type_template_id_041f051e_staticRenderFns,
|
|
26222
26434
|
false,
|
|
26223
26435
|
null,
|
|
26224
26436
|
null,
|
|
@@ -28230,7 +28442,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
28230
28442
|
}
|
|
28231
28443
|
|
|
28232
28444
|
/* harmony default export */ var src = __webpack_exports__["default"] = ({
|
|
28233
|
-
version: '0.3.
|
|
28445
|
+
version: '0.3.35',
|
|
28234
28446
|
install: install,
|
|
28235
28447
|
Button: packages_button,
|
|
28236
28448
|
ButtonGroup: button_group,
|