eoss-mobiles 0.1.16 → 0.1.18
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 +32 -15
- package/lib/flow.js +31 -14
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +25 -7
- package/src/index.js +1 -1
|
@@ -10588,8 +10588,8 @@ var StartFlow_component = normalizeComponent(
|
|
|
10588
10588
|
)
|
|
10589
10589
|
|
|
10590
10590
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
10591
|
-
// 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=
|
|
10592
|
-
var
|
|
10591
|
+
// 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=41e4d514&
|
|
10592
|
+
var Handlevue_type_template_id_41e4d514_render = function () {
|
|
10593
10593
|
var _vm = this
|
|
10594
10594
|
var _h = _vm.$createElement
|
|
10595
10595
|
var _c = _vm._self._c || _h
|
|
@@ -11518,11 +11518,11 @@ var Handlevue_type_template_id_45be8739_render = function () {
|
|
|
11518
11518
|
1
|
|
11519
11519
|
)
|
|
11520
11520
|
}
|
|
11521
|
-
var
|
|
11522
|
-
|
|
11521
|
+
var Handlevue_type_template_id_41e4d514_staticRenderFns = []
|
|
11522
|
+
Handlevue_type_template_id_41e4d514_render._withStripped = true
|
|
11523
11523
|
|
|
11524
11524
|
|
|
11525
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
11525
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=41e4d514&
|
|
11526
11526
|
|
|
11527
11527
|
// 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=04b5d77e&
|
|
11528
11528
|
var Rejectvue_type_template_id_04b5d77e_render = function () {
|
|
@@ -12627,6 +12627,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
12627
12627
|
isCustomUser: 0, //是否可选中办理人
|
|
12628
12628
|
choiceOrgId: '',
|
|
12629
12629
|
choiceDeptId: '',
|
|
12630
|
+
taskExamineInfo: {},
|
|
12630
12631
|
pOrgId: ''
|
|
12631
12632
|
};
|
|
12632
12633
|
},
|
|
@@ -12759,6 +12760,22 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
12759
12760
|
duration: 0
|
|
12760
12761
|
});
|
|
12761
12762
|
var _that = this;
|
|
12763
|
+
var isEndUserTask = this.isEndUserTask,
|
|
12764
|
+
choiceOrgId = this.choiceOrgId,
|
|
12765
|
+
choiceDeptId = this.choiceDeptId,
|
|
12766
|
+
pOrgId = this.pOrgId,
|
|
12767
|
+
taskExamineInfo = this.taskExamineInfo;
|
|
12768
|
+
|
|
12769
|
+
_that.form.isEndUserTask = isEndUserTask;
|
|
12770
|
+
_that.form.choiceOrgId = choiceOrgId;
|
|
12771
|
+
_that.form.choiceDeptId = choiceDeptId;
|
|
12772
|
+
_that.form.pOrgId = pOrgId;
|
|
12773
|
+
_that.form.processType = taskExamineInfo.processType;
|
|
12774
|
+
_that.form.businessId = taskExamineInfo.businessId;
|
|
12775
|
+
_that.form.appId = taskExamineInfo.appId;
|
|
12776
|
+
_that.form.processDefinitionId = taskExamineInfo.processDefinitionId;
|
|
12777
|
+
_that.form.isSubFlow = taskExamineInfo.isSubFlow;
|
|
12778
|
+
_that.form.nodeId = taskExamineInfo.nodeId;
|
|
12762
12779
|
utils_http({
|
|
12763
12780
|
url: _that.baseUrl ? _that.baseUrl + taskHandleHtml : taskHandleHtml,
|
|
12764
12781
|
params: Handlevue_type_script_lang_js_extends({
|
|
@@ -12890,7 +12907,6 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
12890
12907
|
// 获取发起流程信息
|
|
12891
12908
|
getProcessObjNew: function getProcessObjNew() {
|
|
12892
12909
|
var that = this;
|
|
12893
|
-
console.log('获取流程');
|
|
12894
12910
|
return new Promise(function (resolve, reiect) {
|
|
12895
12911
|
utils_http({
|
|
12896
12912
|
url: that.baseUrl ? that.baseUrl + api_getHandleInfoHtml : api_getHandleInfoHtml,
|
|
@@ -12904,13 +12920,14 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
12904
12920
|
nodeInfoMap = _res$data.nodeInfoMap,
|
|
12905
12921
|
choiceOrgId = _res$data.choiceOrgId,
|
|
12906
12922
|
choiceDeptId = _res$data.choiceDeptId,
|
|
12923
|
+
isEndUserTask = _res$data.isEndUserTask,
|
|
12907
12924
|
pOrgId = _res$data.pOrgId,
|
|
12925
|
+
taskExamine = _res$data.taskExamine,
|
|
12908
12926
|
defaultNotificationMessage = _res$data.defaultNotificationMessage,
|
|
12909
12927
|
defaultNotificationType = _res$data.defaultNotificationType;
|
|
12910
12928
|
|
|
12911
12929
|
if (status == 'success') {
|
|
12912
|
-
|
|
12913
|
-
|
|
12930
|
+
that.taskExamineInfo = taskExamine;
|
|
12914
12931
|
that.form.notificationMsg = defaultNotificationMessage;
|
|
12915
12932
|
that.defaultNotificationType = defaultNotificationType.split(',');
|
|
12916
12933
|
that.isCanAddSign = res.data.isCanAddSign;
|
|
@@ -12997,11 +13014,11 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
12997
13014
|
that.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
|
|
12998
13015
|
that.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
|
|
12999
13016
|
that.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
|
|
13000
|
-
that.choiceOrgId = choiceOrgId;
|
|
13001
|
-
that.choiceDeptId = choiceDeptId;
|
|
13002
|
-
that.pOrgId = pOrgId;
|
|
13003
13017
|
}
|
|
13004
|
-
|
|
13018
|
+
that.choiceOrgId = choiceOrgId;
|
|
13019
|
+
that.choiceDeptId = choiceDeptId;
|
|
13020
|
+
that.pOrgId = pOrgId;
|
|
13021
|
+
that.isEndUserTask = isEndUserTask;
|
|
13005
13022
|
if (!that.isOpinionRequired) {
|
|
13006
13023
|
that.isOpinionRequired = 0;
|
|
13007
13024
|
}
|
|
@@ -13182,8 +13199,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
13182
13199
|
|
|
13183
13200
|
var Handle_component = normalizeComponent(
|
|
13184
13201
|
components_Handlevue_type_script_lang_js_,
|
|
13185
|
-
|
|
13186
|
-
|
|
13202
|
+
Handlevue_type_template_id_41e4d514_render,
|
|
13203
|
+
Handlevue_type_template_id_41e4d514_staticRenderFns,
|
|
13187
13204
|
false,
|
|
13188
13205
|
null,
|
|
13189
13206
|
null,
|
|
@@ -15793,7 +15810,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
15793
15810
|
}
|
|
15794
15811
|
|
|
15795
15812
|
/* harmony default export */ var src = __webpack_exports__["default"] = ({
|
|
15796
|
-
version: '0.1.
|
|
15813
|
+
version: '0.1.18',
|
|
15797
15814
|
install: install,
|
|
15798
15815
|
Button: packages_button,
|
|
15799
15816
|
ButtonGroup: button_group,
|
package/lib/flow.js
CHANGED
|
@@ -3092,8 +3092,8 @@ var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3092
3092
|
)
|
|
3093
3093
|
|
|
3094
3094
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
3095
|
-
// 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=
|
|
3096
|
-
var
|
|
3095
|
+
// 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=41e4d514&
|
|
3096
|
+
var Handlevue_type_template_id_41e4d514_render = function () {
|
|
3097
3097
|
var _vm = this
|
|
3098
3098
|
var _h = _vm.$createElement
|
|
3099
3099
|
var _c = _vm._self._c || _h
|
|
@@ -4022,11 +4022,11 @@ var Handlevue_type_template_id_45be8739_render = function () {
|
|
|
4022
4022
|
1
|
|
4023
4023
|
)
|
|
4024
4024
|
}
|
|
4025
|
-
var
|
|
4026
|
-
|
|
4025
|
+
var Handlevue_type_template_id_41e4d514_staticRenderFns = []
|
|
4026
|
+
Handlevue_type_template_id_41e4d514_render._withStripped = true
|
|
4027
4027
|
|
|
4028
4028
|
|
|
4029
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
4029
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=41e4d514&
|
|
4030
4030
|
|
|
4031
4031
|
// 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=04b5d77e&
|
|
4032
4032
|
var Rejectvue_type_template_id_04b5d77e_render = function () {
|
|
@@ -5134,6 +5134,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5134
5134
|
isCustomUser: 0, //是否可选中办理人
|
|
5135
5135
|
choiceOrgId: '',
|
|
5136
5136
|
choiceDeptId: '',
|
|
5137
|
+
taskExamineInfo: {},
|
|
5137
5138
|
pOrgId: ''
|
|
5138
5139
|
};
|
|
5139
5140
|
},
|
|
@@ -5266,6 +5267,22 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5266
5267
|
duration: 0
|
|
5267
5268
|
});
|
|
5268
5269
|
var _that = this;
|
|
5270
|
+
var isEndUserTask = this.isEndUserTask,
|
|
5271
|
+
choiceOrgId = this.choiceOrgId,
|
|
5272
|
+
choiceDeptId = this.choiceDeptId,
|
|
5273
|
+
pOrgId = this.pOrgId,
|
|
5274
|
+
taskExamineInfo = this.taskExamineInfo;
|
|
5275
|
+
|
|
5276
|
+
_that.form.isEndUserTask = isEndUserTask;
|
|
5277
|
+
_that.form.choiceOrgId = choiceOrgId;
|
|
5278
|
+
_that.form.choiceDeptId = choiceDeptId;
|
|
5279
|
+
_that.form.pOrgId = pOrgId;
|
|
5280
|
+
_that.form.processType = taskExamineInfo.processType;
|
|
5281
|
+
_that.form.businessId = taskExamineInfo.businessId;
|
|
5282
|
+
_that.form.appId = taskExamineInfo.appId;
|
|
5283
|
+
_that.form.processDefinitionId = taskExamineInfo.processDefinitionId;
|
|
5284
|
+
_that.form.isSubFlow = taskExamineInfo.isSubFlow;
|
|
5285
|
+
_that.form.nodeId = taskExamineInfo.nodeId;
|
|
5269
5286
|
Object(http["a" /* default */])({
|
|
5270
5287
|
url: _that.baseUrl ? _that.baseUrl + api["j" /* taskHandleHtml */] : api["j" /* taskHandleHtml */],
|
|
5271
5288
|
params: Handlevue_type_script_lang_js_extends({
|
|
@@ -5397,7 +5414,6 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5397
5414
|
// 获取发起流程信息
|
|
5398
5415
|
getProcessObjNew: function getProcessObjNew() {
|
|
5399
5416
|
var that = this;
|
|
5400
|
-
console.log('获取流程');
|
|
5401
5417
|
return new Promise(function (resolve, reiect) {
|
|
5402
5418
|
Object(http["a" /* default */])({
|
|
5403
5419
|
url: that.baseUrl ? that.baseUrl + api["d" /* getHandleInfoHtml */] : api["d" /* getHandleInfoHtml */],
|
|
@@ -5411,13 +5427,14 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5411
5427
|
nodeInfoMap = _res$data.nodeInfoMap,
|
|
5412
5428
|
choiceOrgId = _res$data.choiceOrgId,
|
|
5413
5429
|
choiceDeptId = _res$data.choiceDeptId,
|
|
5430
|
+
isEndUserTask = _res$data.isEndUserTask,
|
|
5414
5431
|
pOrgId = _res$data.pOrgId,
|
|
5432
|
+
taskExamine = _res$data.taskExamine,
|
|
5415
5433
|
defaultNotificationMessage = _res$data.defaultNotificationMessage,
|
|
5416
5434
|
defaultNotificationType = _res$data.defaultNotificationType;
|
|
5417
5435
|
|
|
5418
5436
|
if (status == 'success') {
|
|
5419
|
-
|
|
5420
|
-
|
|
5437
|
+
that.taskExamineInfo = taskExamine;
|
|
5421
5438
|
that.form.notificationMsg = defaultNotificationMessage;
|
|
5422
5439
|
that.defaultNotificationType = defaultNotificationType.split(',');
|
|
5423
5440
|
that.isCanAddSign = res.data.isCanAddSign;
|
|
@@ -5504,11 +5521,11 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5504
5521
|
that.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
|
|
5505
5522
|
that.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
|
|
5506
5523
|
that.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
|
|
5507
|
-
that.choiceOrgId = choiceOrgId;
|
|
5508
|
-
that.choiceDeptId = choiceDeptId;
|
|
5509
|
-
that.pOrgId = pOrgId;
|
|
5510
5524
|
}
|
|
5511
|
-
|
|
5525
|
+
that.choiceOrgId = choiceOrgId;
|
|
5526
|
+
that.choiceDeptId = choiceDeptId;
|
|
5527
|
+
that.pOrgId = pOrgId;
|
|
5528
|
+
that.isEndUserTask = isEndUserTask;
|
|
5512
5529
|
if (!that.isOpinionRequired) {
|
|
5513
5530
|
that.isOpinionRequired = 0;
|
|
5514
5531
|
}
|
|
@@ -5689,8 +5706,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
5689
5706
|
|
|
5690
5707
|
var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
5691
5708
|
components_Handlevue_type_script_lang_js_,
|
|
5692
|
-
|
|
5693
|
-
|
|
5709
|
+
Handlevue_type_template_id_41e4d514_render,
|
|
5710
|
+
Handlevue_type_template_id_41e4d514_staticRenderFns,
|
|
5694
5711
|
false,
|
|
5695
5712
|
null,
|
|
5696
5713
|
null,
|