eoss-mobiles 0.2.93 → 0.2.95
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/checkbox.js +6 -4
- package/lib/eoss-mobile.common.js +80 -38
- package/lib/flow.js +63 -23
- package/lib/index.js +1 -1
- package/lib/theme-chalk/flow-btn.css +1 -1
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/checkbox/src/main.vue +14 -12
- package/packages/flow/src/components/Handle.vue +1 -1
- package/packages/flow/src/components/TaskRead.vue +35 -4
- package/packages/flow/src/main.vue +2 -1
- package/packages/theme-chalk/lib/flow-btn.css +1 -1
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/flow-btn.scss +9 -3
- package/packages/theme-chalk/src/flow.scss +4 -1
- package/src/index.js +1 -1
package/lib/checkbox.js
CHANGED
|
@@ -2048,7 +2048,7 @@ var http_request = function request(options) {
|
|
|
2048
2048
|
// ESM COMPAT FLAG
|
|
2049
2049
|
__webpack_require__.r(__webpack_exports__);
|
|
2050
2050
|
|
|
2051
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox/src/main.vue?vue&type=template&id=
|
|
2051
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox/src/main.vue?vue&type=template&id=031c5665&
|
|
2052
2052
|
var render = function () {
|
|
2053
2053
|
var _vm = this
|
|
2054
2054
|
var _h = _vm.$createElement
|
|
@@ -2156,7 +2156,7 @@ var staticRenderFns = []
|
|
|
2156
2156
|
render._withStripped = true
|
|
2157
2157
|
|
|
2158
2158
|
|
|
2159
|
-
// CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=
|
|
2159
|
+
// CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=031c5665&
|
|
2160
2160
|
|
|
2161
2161
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
2162
2162
|
var api = __webpack_require__(2);
|
|
@@ -2335,12 +2335,14 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2335
2335
|
handler: function handler(val) {
|
|
2336
2336
|
var _this2 = this;
|
|
2337
2337
|
|
|
2338
|
+
// if(val){
|
|
2338
2339
|
this.newData.map(function (item) {
|
|
2339
2340
|
item.name = _this2.allowHtml ? item[_this2.sysAppCode ? 'shortName' : _this2.labelKey] : item[_this2.sysAppCode ? 'shortName' : _this2.labelKey].replace(/<[^>]+>/g, '');
|
|
2340
|
-
item.value = item[_this2.sysAppCode ? 'cciValue' : _this2.
|
|
2341
|
+
item.value = item[_this2.sysAppCode ? 'cciValue' : _this2.valueKey];
|
|
2341
2342
|
|
|
2342
2343
|
item.disabled = val.indexOf(item.value) != -1;
|
|
2343
2344
|
});
|
|
2345
|
+
// }
|
|
2344
2346
|
},
|
|
2345
2347
|
|
|
2346
2348
|
deep: true,
|
|
@@ -2391,7 +2393,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
2391
2393
|
if (status == 'success' || rCode === 0 || status === true) {
|
|
2392
2394
|
[].concat(data || results).map(function (item) {
|
|
2393
2395
|
item.name = _this3.allowHtml ? item[sysAppCode ? 'shortName' : _this3.labelKey] : item[sysAppCode ? 'shortName' : _this3.labelKey].replace(/<[^>]+>/g, '');
|
|
2394
|
-
item.value = item[sysAppCode ? 'cciValue' : _this3.
|
|
2396
|
+
item.value = item[sysAppCode ? 'cciValue' : _this3.valueKey];
|
|
2395
2397
|
item.disabled = _this3.disabledValue.indexOf(item.value) != -1;
|
|
2396
2398
|
});
|
|
2397
2399
|
_this3.newData = data || results;
|
|
@@ -12698,8 +12698,8 @@ list_src_main.install = function (Vue) {
|
|
|
12698
12698
|
};
|
|
12699
12699
|
|
|
12700
12700
|
/* harmony default export */ var list = (list_src_main);
|
|
12701
|
-
// 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=
|
|
12702
|
-
var
|
|
12701
|
+
// 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=8558f576&
|
|
12702
|
+
var mainvue_type_template_id_8558f576_render = function () {
|
|
12703
12703
|
var _vm = this
|
|
12704
12704
|
var _h = _vm.$createElement
|
|
12705
12705
|
var _c = _vm._self._c || _h
|
|
@@ -12749,11 +12749,17 @@ var mainvue_type_template_id_7b5917b8_render = function () {
|
|
|
12749
12749
|
false
|
|
12750
12750
|
)
|
|
12751
12751
|
)
|
|
12752
|
-
: _vm.type === "taskRead"
|
|
12752
|
+
: _vm.type === "taskRead" || _vm.type === "transfer"
|
|
12753
12753
|
? _c(
|
|
12754
12754
|
"TaskRead",
|
|
12755
12755
|
_vm._b(
|
|
12756
|
-
{
|
|
12756
|
+
{
|
|
12757
|
+
attrs: {
|
|
12758
|
+
userId: _vm.userId,
|
|
12759
|
+
type: _vm.type,
|
|
12760
|
+
beforeSubmit: _vm.beforeSubmit,
|
|
12761
|
+
},
|
|
12762
|
+
},
|
|
12757
12763
|
"TaskRead",
|
|
12758
12764
|
_vm.$attrs,
|
|
12759
12765
|
false
|
|
@@ -12782,11 +12788,11 @@ var mainvue_type_template_id_7b5917b8_render = function () {
|
|
|
12782
12788
|
1
|
|
12783
12789
|
)
|
|
12784
12790
|
}
|
|
12785
|
-
var
|
|
12786
|
-
|
|
12791
|
+
var mainvue_type_template_id_8558f576_staticRenderFns = []
|
|
12792
|
+
mainvue_type_template_id_8558f576_render._withStripped = true
|
|
12787
12793
|
|
|
12788
12794
|
|
|
12789
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
12795
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=8558f576&
|
|
12790
12796
|
|
|
12791
12797
|
// 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=20f21730&
|
|
12792
12798
|
var StartFlowvue_type_template_id_20f21730_render = function () {
|
|
@@ -14292,8 +14298,8 @@ var StartFlow_component = normalizeComponent(
|
|
|
14292
14298
|
)
|
|
14293
14299
|
|
|
14294
14300
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
14295
|
-
// 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=
|
|
14296
|
-
var
|
|
14301
|
+
// 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=21e4c619&
|
|
14302
|
+
var Handlevue_type_template_id_21e4c619_render = function () {
|
|
14297
14303
|
var _vm = this
|
|
14298
14304
|
var _h = _vm.$createElement
|
|
14299
14305
|
var _c = _vm._self._c || _h
|
|
@@ -15378,11 +15384,11 @@ var Handlevue_type_template_id_77381012_render = function () {
|
|
|
15378
15384
|
1
|
|
15379
15385
|
)
|
|
15380
15386
|
}
|
|
15381
|
-
var
|
|
15382
|
-
|
|
15387
|
+
var Handlevue_type_template_id_21e4c619_staticRenderFns = []
|
|
15388
|
+
Handlevue_type_template_id_21e4c619_render._withStripped = true
|
|
15383
15389
|
|
|
15384
15390
|
|
|
15385
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
15391
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=21e4c619&
|
|
15386
15392
|
|
|
15387
15393
|
// 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=4fdaf365&
|
|
15388
15394
|
var Rejectvue_type_template_id_4fdaf365_render = function () {
|
|
@@ -16873,7 +16879,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
16873
16879
|
_that.form.userId = _that.userId || util["a" /* default */].getStorage('userId');
|
|
16874
16880
|
_that.form.mobileKey = util["a" /* default */].getStorage('deviceId') || '123';
|
|
16875
16881
|
_that.form.nextNodeId = _that.form.nextOperate == 0 || _that.form.nextOperate == 1 ? _that.form.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode : '';
|
|
16876
|
-
if (!_that.isCanPreAddSign) {
|
|
16882
|
+
if (!_that.isCanPreAddSign || _that.form.isAddSign != '1') {
|
|
16877
16883
|
delete _that.form.addSignMode;
|
|
16878
16884
|
}
|
|
16879
16885
|
var formData = new FormData();
|
|
@@ -17481,8 +17487,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
17481
17487
|
|
|
17482
17488
|
var Handle_component = normalizeComponent(
|
|
17483
17489
|
components_Handlevue_type_script_lang_js_,
|
|
17484
|
-
|
|
17485
|
-
|
|
17490
|
+
Handlevue_type_template_id_21e4c619_render,
|
|
17491
|
+
Handlevue_type_template_id_21e4c619_staticRenderFns,
|
|
17486
17492
|
false,
|
|
17487
17493
|
null,
|
|
17488
17494
|
null,
|
|
@@ -17491,15 +17497,15 @@ var Handle_component = normalizeComponent(
|
|
|
17491
17497
|
)
|
|
17492
17498
|
|
|
17493
17499
|
/* harmony default export */ var Handle = (Handle_component.exports);
|
|
17494
|
-
// 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=
|
|
17495
|
-
var
|
|
17500
|
+
// 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=479c783b&
|
|
17501
|
+
var TaskReadvue_type_template_id_479c783b_render = function () {
|
|
17496
17502
|
var _vm = this
|
|
17497
17503
|
var _h = _vm.$createElement
|
|
17498
17504
|
var _c = _vm._self._c || _h
|
|
17499
17505
|
return _c("div", { staticClass: "process-task" }, [
|
|
17500
17506
|
_c("div", { staticClass: "transfer-content" }, [
|
|
17501
17507
|
_c("div", { staticClass: "input-box" }, [
|
|
17502
|
-
_vm.
|
|
17508
|
+
_vm.type === "transfer"
|
|
17503
17509
|
? _c(
|
|
17504
17510
|
"div",
|
|
17505
17511
|
{ staticClass: "item" },
|
|
@@ -17530,7 +17536,7 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
17530
17536
|
[
|
|
17531
17537
|
_c("em-selector", {
|
|
17532
17538
|
attrs: {
|
|
17533
|
-
label: "
|
|
17539
|
+
label: "转办对象",
|
|
17534
17540
|
required: "",
|
|
17535
17541
|
multiple: _vm.multiple,
|
|
17536
17542
|
isAllCheck: _vm.isAllCheck,
|
|
@@ -17638,7 +17644,7 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
17638
17644
|
notificationMessageReadOnly: _vm.notificationMessageReadOnly,
|
|
17639
17645
|
defaultNotificationType: _vm.defaultNotificationType,
|
|
17640
17646
|
baseUrl: _vm.baseUrl,
|
|
17641
|
-
showMsg:
|
|
17647
|
+
showMsg: false,
|
|
17642
17648
|
},
|
|
17643
17649
|
on: { onInputMsg: _vm.onInputMsg },
|
|
17644
17650
|
}),
|
|
@@ -17666,11 +17672,11 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
17666
17672
|
]),
|
|
17667
17673
|
])
|
|
17668
17674
|
}
|
|
17669
|
-
var
|
|
17670
|
-
|
|
17675
|
+
var TaskReadvue_type_template_id_479c783b_staticRenderFns = []
|
|
17676
|
+
TaskReadvue_type_template_id_479c783b_render._withStripped = true
|
|
17671
17677
|
|
|
17672
17678
|
|
|
17673
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=
|
|
17679
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=479c783b&
|
|
17674
17680
|
|
|
17675
17681
|
// 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&
|
|
17676
17682
|
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; };
|
|
@@ -17920,11 +17926,15 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
17920
17926
|
choiceDeptId = _res$data.choiceDeptId,
|
|
17921
17927
|
choiceOrgId = _res$data.choiceOrgId,
|
|
17922
17928
|
nodeInfoMap = _res$data.nodeInfoMap,
|
|
17923
|
-
taskExamine = _res$data.taskExamine
|
|
17929
|
+
taskExamine = _res$data.taskExamine,
|
|
17930
|
+
readOnlyNotificationType = _res$data.readOnlyNotificationType,
|
|
17931
|
+
notificationMessageReadOnly = _res$data.notificationMessageReadOnly;
|
|
17924
17932
|
|
|
17925
17933
|
_this2.$toast.clear();
|
|
17926
17934
|
if (status == 'success') {
|
|
17927
17935
|
_this2.isMultipleTransfer(nodeInfoMap.nodeExtAttr.userSelectionType, choiceOrgId, choiceDeptId);
|
|
17936
|
+
_this2.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
|
|
17937
|
+
_this2.readOnlyNotificationType = readOnlyNotificationType;
|
|
17928
17938
|
_this2.nextNode.nodeName = taskExamine.nodeName;
|
|
17929
17939
|
_this2.transferInfo = taskExamine;
|
|
17930
17940
|
} else {
|
|
@@ -17940,6 +17950,35 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
17940
17950
|
}
|
|
17941
17951
|
});
|
|
17942
17952
|
},
|
|
17953
|
+
isMultipleTransfer: function isMultipleTransfer(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
17954
|
+
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
17955
|
+
this.multiple = true;
|
|
17956
|
+
} else {
|
|
17957
|
+
this.multiple = false;
|
|
17958
|
+
}
|
|
17959
|
+
if (val == 1 || val == 2 || val == 5) {
|
|
17960
|
+
this.params.pid = this.orgId;
|
|
17961
|
+
if (choiceOrgId) {
|
|
17962
|
+
this.params.pid = choiceOrgId;
|
|
17963
|
+
}
|
|
17964
|
+
}
|
|
17965
|
+
if (val == 5 || val == 6) {
|
|
17966
|
+
this.params.pid = this.orgId;
|
|
17967
|
+
this.params.deptId = this.orgId;
|
|
17968
|
+
if (choiceDeptId) {
|
|
17969
|
+
this.params.deptId = choiceDeptId;
|
|
17970
|
+
}
|
|
17971
|
+
if (choiceOrgId) {
|
|
17972
|
+
this.params.pid = choiceOrgId;
|
|
17973
|
+
}
|
|
17974
|
+
}
|
|
17975
|
+
if (val == 15 || val == 16) {
|
|
17976
|
+
this.params.pid = this.orgId;
|
|
17977
|
+
if (pOrgId) {
|
|
17978
|
+
this.params.pid = pOrgId;
|
|
17979
|
+
}
|
|
17980
|
+
}
|
|
17981
|
+
},
|
|
17943
17982
|
isMultiple: function isMultiple() {
|
|
17944
17983
|
var orgId = util["a" /* default */].getStorage('orgId') || this.orgId;
|
|
17945
17984
|
if (this.processObj.selectPersonValue == 1) {
|
|
@@ -18174,8 +18213,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
18174
18213
|
|
|
18175
18214
|
var TaskRead_component = normalizeComponent(
|
|
18176
18215
|
components_TaskReadvue_type_script_lang_js_,
|
|
18177
|
-
|
|
18178
|
-
|
|
18216
|
+
TaskReadvue_type_template_id_479c783b_render,
|
|
18217
|
+
TaskReadvue_type_template_id_479c783b_staticRenderFns,
|
|
18179
18218
|
false,
|
|
18180
18219
|
null,
|
|
18181
18220
|
null,
|
|
@@ -18966,6 +19005,7 @@ var taskUnionExamine_component = normalizeComponent(
|
|
|
18966
19005
|
//
|
|
18967
19006
|
//
|
|
18968
19007
|
//
|
|
19008
|
+
//
|
|
18969
19009
|
|
|
18970
19010
|
|
|
18971
19011
|
|
|
@@ -19012,8 +19052,8 @@ var taskUnionExamine_component = normalizeComponent(
|
|
|
19012
19052
|
|
|
19013
19053
|
var flow_src_main_component = normalizeComponent(
|
|
19014
19054
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
19015
|
-
|
|
19016
|
-
|
|
19055
|
+
mainvue_type_template_id_8558f576_render,
|
|
19056
|
+
mainvue_type_template_id_8558f576_staticRenderFns,
|
|
19017
19057
|
false,
|
|
19018
19058
|
null,
|
|
19019
19059
|
null,
|
|
@@ -20392,8 +20432,8 @@ popover_src_main.install = function (Vue) {
|
|
|
20392
20432
|
};
|
|
20393
20433
|
|
|
20394
20434
|
/* harmony default export */ var popover = (popover_src_main);
|
|
20395
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox/src/main.vue?vue&type=template&id=
|
|
20396
|
-
var
|
|
20435
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox/src/main.vue?vue&type=template&id=031c5665&
|
|
20436
|
+
var mainvue_type_template_id_031c5665_render = function () {
|
|
20397
20437
|
var _vm = this
|
|
20398
20438
|
var _h = _vm.$createElement
|
|
20399
20439
|
var _c = _vm._self._c || _h
|
|
@@ -20496,11 +20536,11 @@ var mainvue_type_template_id_510cbd18_render = function () {
|
|
|
20496
20536
|
1
|
|
20497
20537
|
)
|
|
20498
20538
|
}
|
|
20499
|
-
var
|
|
20500
|
-
|
|
20539
|
+
var mainvue_type_template_id_031c5665_staticRenderFns = []
|
|
20540
|
+
mainvue_type_template_id_031c5665_render._withStripped = true
|
|
20501
20541
|
|
|
20502
20542
|
|
|
20503
|
-
// CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=
|
|
20543
|
+
// CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=031c5665&
|
|
20504
20544
|
|
|
20505
20545
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox/src/main.vue?vue&type=script&lang=js&
|
|
20506
20546
|
var checkbox_src_mainvue_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; };
|
|
@@ -20670,12 +20710,14 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
20670
20710
|
handler: function handler(val) {
|
|
20671
20711
|
var _this2 = this;
|
|
20672
20712
|
|
|
20713
|
+
// if(val){
|
|
20673
20714
|
this.newData.map(function (item) {
|
|
20674
20715
|
item.name = _this2.allowHtml ? item[_this2.sysAppCode ? 'shortName' : _this2.labelKey] : item[_this2.sysAppCode ? 'shortName' : _this2.labelKey].replace(/<[^>]+>/g, '');
|
|
20675
|
-
item.value = item[_this2.sysAppCode ? 'cciValue' : _this2.
|
|
20716
|
+
item.value = item[_this2.sysAppCode ? 'cciValue' : _this2.valueKey];
|
|
20676
20717
|
|
|
20677
20718
|
item.disabled = val.indexOf(item.value) != -1;
|
|
20678
20719
|
});
|
|
20720
|
+
// }
|
|
20679
20721
|
},
|
|
20680
20722
|
|
|
20681
20723
|
deep: true,
|
|
@@ -20726,7 +20768,7 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
20726
20768
|
if (status == 'success' || rCode === 0 || status === true) {
|
|
20727
20769
|
[].concat(data || results).map(function (item) {
|
|
20728
20770
|
item.name = _this3.allowHtml ? item[sysAppCode ? 'shortName' : _this3.labelKey] : item[sysAppCode ? 'shortName' : _this3.labelKey].replace(/<[^>]+>/g, '');
|
|
20729
|
-
item.value = item[sysAppCode ? 'cciValue' : _this3.
|
|
20771
|
+
item.value = item[sysAppCode ? 'cciValue' : _this3.valueKey];
|
|
20730
20772
|
item.disabled = _this3.disabledValue.indexOf(item.value) != -1;
|
|
20731
20773
|
});
|
|
20732
20774
|
_this3.newData = data || results;
|
|
@@ -20751,8 +20793,8 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
|
|
|
20751
20793
|
|
|
20752
20794
|
var checkbox_src_main_component = normalizeComponent(
|
|
20753
20795
|
packages_checkbox_src_mainvue_type_script_lang_js_,
|
|
20754
|
-
|
|
20755
|
-
|
|
20796
|
+
mainvue_type_template_id_031c5665_render,
|
|
20797
|
+
mainvue_type_template_id_031c5665_staticRenderFns,
|
|
20756
20798
|
false,
|
|
20757
20799
|
null,
|
|
20758
20800
|
null,
|
|
@@ -24443,7 +24485,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
24443
24485
|
}
|
|
24444
24486
|
|
|
24445
24487
|
/* harmony default export */ var src = __webpack_exports__["default"] = ({
|
|
24446
|
-
version: '0.2.
|
|
24488
|
+
version: '0.2.95',
|
|
24447
24489
|
install: install,
|
|
24448
24490
|
Button: packages_button,
|
|
24449
24491
|
ButtonGroup: button_group,
|
package/lib/flow.js
CHANGED
|
@@ -2076,7 +2076,7 @@ module.exports = require("sm-crypto");
|
|
|
2076
2076
|
// ESM COMPAT FLAG
|
|
2077
2077
|
__webpack_require__.r(__webpack_exports__);
|
|
2078
2078
|
|
|
2079
|
-
// 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=
|
|
2079
|
+
// 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=8558f576&
|
|
2080
2080
|
var render = function () {
|
|
2081
2081
|
var _vm = this
|
|
2082
2082
|
var _h = _vm.$createElement
|
|
@@ -2127,11 +2127,17 @@ var render = function () {
|
|
|
2127
2127
|
false
|
|
2128
2128
|
)
|
|
2129
2129
|
)
|
|
2130
|
-
: _vm.type === "taskRead"
|
|
2130
|
+
: _vm.type === "taskRead" || _vm.type === "transfer"
|
|
2131
2131
|
? _c(
|
|
2132
2132
|
"TaskRead",
|
|
2133
2133
|
_vm._b(
|
|
2134
|
-
{
|
|
2134
|
+
{
|
|
2135
|
+
attrs: {
|
|
2136
|
+
userId: _vm.userId,
|
|
2137
|
+
type: _vm.type,
|
|
2138
|
+
beforeSubmit: _vm.beforeSubmit,
|
|
2139
|
+
},
|
|
2140
|
+
},
|
|
2135
2141
|
"TaskRead",
|
|
2136
2142
|
_vm.$attrs,
|
|
2137
2143
|
false
|
|
@@ -2164,7 +2170,7 @@ var staticRenderFns = []
|
|
|
2164
2170
|
render._withStripped = true
|
|
2165
2171
|
|
|
2166
2172
|
|
|
2167
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
2173
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=8558f576&
|
|
2168
2174
|
|
|
2169
2175
|
// 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=20f21730&
|
|
2170
2176
|
var StartFlowvue_type_template_id_20f21730_render = function () {
|
|
@@ -3685,8 +3691,8 @@ var StartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
3685
3691
|
)
|
|
3686
3692
|
|
|
3687
3693
|
/* harmony default export */ var StartFlow = (StartFlow_component.exports);
|
|
3688
|
-
// 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=
|
|
3689
|
-
var
|
|
3694
|
+
// 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=21e4c619&
|
|
3695
|
+
var Handlevue_type_template_id_21e4c619_render = function () {
|
|
3690
3696
|
var _vm = this
|
|
3691
3697
|
var _h = _vm.$createElement
|
|
3692
3698
|
var _c = _vm._self._c || _h
|
|
@@ -4771,11 +4777,11 @@ var Handlevue_type_template_id_77381012_render = function () {
|
|
|
4771
4777
|
1
|
|
4772
4778
|
)
|
|
4773
4779
|
}
|
|
4774
|
-
var
|
|
4775
|
-
|
|
4780
|
+
var Handlevue_type_template_id_21e4c619_staticRenderFns = []
|
|
4781
|
+
Handlevue_type_template_id_21e4c619_render._withStripped = true
|
|
4776
4782
|
|
|
4777
4783
|
|
|
4778
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=
|
|
4784
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=21e4c619&
|
|
4779
4785
|
|
|
4780
4786
|
// 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=4fdaf365&
|
|
4781
4787
|
var Rejectvue_type_template_id_4fdaf365_render = function () {
|
|
@@ -6266,7 +6272,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6266
6272
|
_that.form.userId = _that.userId || util["a" /* default */].getStorage('userId');
|
|
6267
6273
|
_that.form.mobileKey = util["a" /* default */].getStorage('deviceId') || '123';
|
|
6268
6274
|
_that.form.nextNodeId = _that.form.nextOperate == 0 || _that.form.nextOperate == 1 ? _that.form.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode : '';
|
|
6269
|
-
if (!_that.isCanPreAddSign) {
|
|
6275
|
+
if (!_that.isCanPreAddSign || _that.form.isAddSign != '1') {
|
|
6270
6276
|
delete _that.form.addSignMode;
|
|
6271
6277
|
}
|
|
6272
6278
|
var formData = new FormData();
|
|
@@ -6874,8 +6880,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
6874
6880
|
|
|
6875
6881
|
var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
6876
6882
|
components_Handlevue_type_script_lang_js_,
|
|
6877
|
-
|
|
6878
|
-
|
|
6883
|
+
Handlevue_type_template_id_21e4c619_render,
|
|
6884
|
+
Handlevue_type_template_id_21e4c619_staticRenderFns,
|
|
6879
6885
|
false,
|
|
6880
6886
|
null,
|
|
6881
6887
|
null,
|
|
@@ -6884,15 +6890,15 @@ var Handle_component = Object(componentNormalizer["a" /* default */])(
|
|
|
6884
6890
|
)
|
|
6885
6891
|
|
|
6886
6892
|
/* harmony default export */ var Handle = (Handle_component.exports);
|
|
6887
|
-
// 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=
|
|
6888
|
-
var
|
|
6893
|
+
// 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=479c783b&
|
|
6894
|
+
var TaskReadvue_type_template_id_479c783b_render = function () {
|
|
6889
6895
|
var _vm = this
|
|
6890
6896
|
var _h = _vm.$createElement
|
|
6891
6897
|
var _c = _vm._self._c || _h
|
|
6892
6898
|
return _c("div", { staticClass: "process-task" }, [
|
|
6893
6899
|
_c("div", { staticClass: "transfer-content" }, [
|
|
6894
6900
|
_c("div", { staticClass: "input-box" }, [
|
|
6895
|
-
_vm.
|
|
6901
|
+
_vm.type === "transfer"
|
|
6896
6902
|
? _c(
|
|
6897
6903
|
"div",
|
|
6898
6904
|
{ staticClass: "item" },
|
|
@@ -6923,7 +6929,7 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
6923
6929
|
[
|
|
6924
6930
|
_c("em-selector", {
|
|
6925
6931
|
attrs: {
|
|
6926
|
-
label: "
|
|
6932
|
+
label: "转办对象",
|
|
6927
6933
|
required: "",
|
|
6928
6934
|
multiple: _vm.multiple,
|
|
6929
6935
|
isAllCheck: _vm.isAllCheck,
|
|
@@ -7031,7 +7037,7 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
7031
7037
|
notificationMessageReadOnly: _vm.notificationMessageReadOnly,
|
|
7032
7038
|
defaultNotificationType: _vm.defaultNotificationType,
|
|
7033
7039
|
baseUrl: _vm.baseUrl,
|
|
7034
|
-
showMsg:
|
|
7040
|
+
showMsg: false,
|
|
7035
7041
|
},
|
|
7036
7042
|
on: { onInputMsg: _vm.onInputMsg },
|
|
7037
7043
|
}),
|
|
@@ -7059,11 +7065,11 @@ var TaskReadvue_type_template_id_f2952fd2_render = function () {
|
|
|
7059
7065
|
]),
|
|
7060
7066
|
])
|
|
7061
7067
|
}
|
|
7062
|
-
var
|
|
7063
|
-
|
|
7068
|
+
var TaskReadvue_type_template_id_479c783b_staticRenderFns = []
|
|
7069
|
+
TaskReadvue_type_template_id_479c783b_render._withStripped = true
|
|
7064
7070
|
|
|
7065
7071
|
|
|
7066
|
-
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=
|
|
7072
|
+
// CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=479c783b&
|
|
7067
7073
|
|
|
7068
7074
|
// 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&
|
|
7069
7075
|
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; };
|
|
@@ -7313,11 +7319,15 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7313
7319
|
choiceDeptId = _res$data.choiceDeptId,
|
|
7314
7320
|
choiceOrgId = _res$data.choiceOrgId,
|
|
7315
7321
|
nodeInfoMap = _res$data.nodeInfoMap,
|
|
7316
|
-
taskExamine = _res$data.taskExamine
|
|
7322
|
+
taskExamine = _res$data.taskExamine,
|
|
7323
|
+
readOnlyNotificationType = _res$data.readOnlyNotificationType,
|
|
7324
|
+
notificationMessageReadOnly = _res$data.notificationMessageReadOnly;
|
|
7317
7325
|
|
|
7318
7326
|
_this2.$toast.clear();
|
|
7319
7327
|
if (status == 'success') {
|
|
7320
7328
|
_this2.isMultipleTransfer(nodeInfoMap.nodeExtAttr.userSelectionType, choiceOrgId, choiceDeptId);
|
|
7329
|
+
_this2.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
|
|
7330
|
+
_this2.readOnlyNotificationType = readOnlyNotificationType;
|
|
7321
7331
|
_this2.nextNode.nodeName = taskExamine.nodeName;
|
|
7322
7332
|
_this2.transferInfo = taskExamine;
|
|
7323
7333
|
} else {
|
|
@@ -7333,6 +7343,35 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7333
7343
|
}
|
|
7334
7344
|
});
|
|
7335
7345
|
},
|
|
7346
|
+
isMultipleTransfer: function isMultipleTransfer(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
7347
|
+
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
7348
|
+
this.multiple = true;
|
|
7349
|
+
} else {
|
|
7350
|
+
this.multiple = false;
|
|
7351
|
+
}
|
|
7352
|
+
if (val == 1 || val == 2 || val == 5) {
|
|
7353
|
+
this.params.pid = this.orgId;
|
|
7354
|
+
if (choiceOrgId) {
|
|
7355
|
+
this.params.pid = choiceOrgId;
|
|
7356
|
+
}
|
|
7357
|
+
}
|
|
7358
|
+
if (val == 5 || val == 6) {
|
|
7359
|
+
this.params.pid = this.orgId;
|
|
7360
|
+
this.params.deptId = this.orgId;
|
|
7361
|
+
if (choiceDeptId) {
|
|
7362
|
+
this.params.deptId = choiceDeptId;
|
|
7363
|
+
}
|
|
7364
|
+
if (choiceOrgId) {
|
|
7365
|
+
this.params.pid = choiceOrgId;
|
|
7366
|
+
}
|
|
7367
|
+
}
|
|
7368
|
+
if (val == 15 || val == 16) {
|
|
7369
|
+
this.params.pid = this.orgId;
|
|
7370
|
+
if (pOrgId) {
|
|
7371
|
+
this.params.pid = pOrgId;
|
|
7372
|
+
}
|
|
7373
|
+
}
|
|
7374
|
+
},
|
|
7336
7375
|
isMultiple: function isMultiple() {
|
|
7337
7376
|
var orgId = util["a" /* default */].getStorage('orgId') || this.orgId;
|
|
7338
7377
|
if (this.processObj.selectPersonValue == 1) {
|
|
@@ -7567,8 +7606,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
7567
7606
|
|
|
7568
7607
|
var TaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
7569
7608
|
components_TaskReadvue_type_script_lang_js_,
|
|
7570
|
-
|
|
7571
|
-
|
|
7609
|
+
TaskReadvue_type_template_id_479c783b_render,
|
|
7610
|
+
TaskReadvue_type_template_id_479c783b_staticRenderFns,
|
|
7572
7611
|
false,
|
|
7573
7612
|
null,
|
|
7574
7613
|
null,
|
|
@@ -8359,6 +8398,7 @@ var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
|
|
|
8359
8398
|
//
|
|
8360
8399
|
//
|
|
8361
8400
|
//
|
|
8401
|
+
//
|
|
8362
8402
|
|
|
8363
8403
|
|
|
8364
8404
|
|