eoss-ui 0.6.78 → 0.6.80
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-ui.common.js +289 -68
- package/lib/flow.js +283 -62
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/main.vue +65 -28
- package/packages/flow/src/processForm.vue +39 -2
- package/packages/flow/src/processReject.vue +2 -1
- package/packages/flow/src/reset.vue +12 -0
- package/src/index.js +1 -1
package/lib/flow.js
CHANGED
|
@@ -4469,7 +4469,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4469
4469
|
// ESM COMPAT FLAG
|
|
4470
4470
|
__webpack_require__.r(__webpack_exports__);
|
|
4471
4471
|
|
|
4472
|
-
// 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=
|
|
4472
|
+
// 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=4ea6a802&
|
|
4473
4473
|
var render = function () {
|
|
4474
4474
|
var _vm = this
|
|
4475
4475
|
var _h = _vm.$createElement
|
|
@@ -4483,7 +4483,7 @@ var render = function () {
|
|
|
4483
4483
|
style: _vm.styles,
|
|
4484
4484
|
},
|
|
4485
4485
|
[
|
|
4486
|
-
_vm.showCirculate
|
|
4486
|
+
_vm.showCirculate && _vm.newTypeCode != "fenyue"
|
|
4487
4487
|
? _c(
|
|
4488
4488
|
"div",
|
|
4489
4489
|
{
|
|
@@ -5022,7 +5022,9 @@ var render = function () {
|
|
|
5022
5022
|
},
|
|
5023
5023
|
},
|
|
5024
5024
|
[
|
|
5025
|
-
_vm.isFlow &&
|
|
5025
|
+
_vm.isFlow &&
|
|
5026
|
+
_vm.nodeInfo.option.length > 0 &&
|
|
5027
|
+
!_vm.flowListDisabled
|
|
5026
5028
|
? _c(
|
|
5027
5029
|
"el-form-item",
|
|
5028
5030
|
{
|
|
@@ -5083,9 +5085,7 @@ var render = function () {
|
|
|
5083
5085
|
key: items.id,
|
|
5084
5086
|
attrs: {
|
|
5085
5087
|
label: items.name,
|
|
5086
|
-
disabled:
|
|
5087
|
-
_vm.flowListDisabled ||
|
|
5088
|
-
items.disabled,
|
|
5088
|
+
disabled: items.disabled,
|
|
5089
5089
|
value: items.processDefId,
|
|
5090
5090
|
},
|
|
5091
5091
|
})
|
|
@@ -7285,7 +7285,7 @@ var staticRenderFns = []
|
|
|
7285
7285
|
render._withStripped = true
|
|
7286
7286
|
|
|
7287
7287
|
|
|
7288
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
7288
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=4ea6a802&
|
|
7289
7289
|
|
|
7290
7290
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
7291
7291
|
var regenerator_ = __webpack_require__(4);
|
|
@@ -8338,8 +8338,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
|
|
|
8338
8338
|
)
|
|
8339
8339
|
|
|
8340
8340
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
8341
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
8342
|
-
var
|
|
8341
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=7d7a1c8e&
|
|
8342
|
+
var processFormvue_type_template_id_7d7a1c8e_render = function () {
|
|
8343
8343
|
var _vm = this
|
|
8344
8344
|
var _h = _vm.$createElement
|
|
8345
8345
|
var _c = _vm._self._c || _h
|
|
@@ -8386,6 +8386,14 @@ var processFormvue_type_template_id_972ab99a_render = function () {
|
|
|
8386
8386
|
_c(
|
|
8387
8387
|
"el-form-item",
|
|
8388
8388
|
{
|
|
8389
|
+
directives: [
|
|
8390
|
+
{
|
|
8391
|
+
name: "show",
|
|
8392
|
+
rawName: "v-show",
|
|
8393
|
+
value: _vm.showBtn,
|
|
8394
|
+
expression: "showBtn",
|
|
8395
|
+
},
|
|
8396
|
+
],
|
|
8389
8397
|
attrs: {
|
|
8390
8398
|
prop: "nodeName",
|
|
8391
8399
|
label: "当前节点",
|
|
@@ -8798,7 +8806,17 @@ var processFormvue_type_template_id_972ab99a_render = function () {
|
|
|
8798
8806
|
: _vm._e(),
|
|
8799
8807
|
_c(
|
|
8800
8808
|
"el-form-item",
|
|
8801
|
-
{
|
|
8809
|
+
{
|
|
8810
|
+
directives: [
|
|
8811
|
+
{
|
|
8812
|
+
name: "show",
|
|
8813
|
+
rawName: "v-show",
|
|
8814
|
+
value: _vm.showBtn,
|
|
8815
|
+
expression: "showBtn",
|
|
8816
|
+
},
|
|
8817
|
+
],
|
|
8818
|
+
attrs: { prop: "noticeType", label: "通知方式" },
|
|
8819
|
+
},
|
|
8802
8820
|
[
|
|
8803
8821
|
_c(
|
|
8804
8822
|
"el-checkbox-group",
|
|
@@ -8846,8 +8864,8 @@ var processFormvue_type_template_id_972ab99a_render = function () {
|
|
|
8846
8864
|
{
|
|
8847
8865
|
name: "show",
|
|
8848
8866
|
rawName: "v-show",
|
|
8849
|
-
value: _vm.nextNode.noticeType.length != 0,
|
|
8850
|
-
expression: "nextNode.noticeType.length != 0",
|
|
8867
|
+
value: _vm.nextNode.noticeType.length != 0 && _vm.showBtn,
|
|
8868
|
+
expression: "nextNode.noticeType.length != 0 && showBtn",
|
|
8851
8869
|
},
|
|
8852
8870
|
],
|
|
8853
8871
|
attrs: { prop: "nextNode", label: "通知消息" },
|
|
@@ -8981,15 +8999,107 @@ var processFormvue_type_template_id_972ab99a_render = function () {
|
|
|
8981
8999
|
],
|
|
8982
9000
|
1
|
|
8983
9001
|
),
|
|
9002
|
+
!_vm.showBtn
|
|
9003
|
+
? _c("div", { staticStyle: { padding: "5px", background: "#fff" } }, [
|
|
9004
|
+
_c(
|
|
9005
|
+
"div",
|
|
9006
|
+
{
|
|
9007
|
+
staticClass: "news",
|
|
9008
|
+
on: {
|
|
9009
|
+
click: function ($event) {
|
|
9010
|
+
_vm.showNews = !_vm.showNews
|
|
9011
|
+
},
|
|
9012
|
+
},
|
|
9013
|
+
},
|
|
9014
|
+
[
|
|
9015
|
+
_c("span", { staticClass: "news-item" }, [_vm._v("消息通知")]),
|
|
9016
|
+
_c("span", { class: _vm.showNews ? "show" : "sj" }),
|
|
9017
|
+
]
|
|
9018
|
+
),
|
|
9019
|
+
_vm.showNews
|
|
9020
|
+
? _c(
|
|
9021
|
+
"div",
|
|
9022
|
+
{ ref: "messagebox", staticStyle: { transition: "1s" } },
|
|
9023
|
+
[
|
|
9024
|
+
_c(
|
|
9025
|
+
"el-checkbox-group",
|
|
9026
|
+
{
|
|
9027
|
+
model: {
|
|
9028
|
+
value: _vm.nextNode.noticeType,
|
|
9029
|
+
callback: function ($$v) {
|
|
9030
|
+
_vm.$set(_vm.nextNode, "noticeType", $$v)
|
|
9031
|
+
},
|
|
9032
|
+
expression: "nextNode.noticeType",
|
|
9033
|
+
},
|
|
9034
|
+
},
|
|
9035
|
+
_vm._l(_vm.nextNode.noticeList, function (item) {
|
|
9036
|
+
return _c(
|
|
9037
|
+
"el-checkbox",
|
|
9038
|
+
{
|
|
9039
|
+
key: item.cciValue,
|
|
9040
|
+
attrs: {
|
|
9041
|
+
label: item.cciValue,
|
|
9042
|
+
disabled: _vm.readOnlyNotificationType
|
|
9043
|
+
? _vm.readOnlyNotificationType.indexOf(
|
|
9044
|
+
item.cciValue
|
|
9045
|
+
) != -1
|
|
9046
|
+
: false,
|
|
9047
|
+
},
|
|
9048
|
+
},
|
|
9049
|
+
[
|
|
9050
|
+
_vm._v(
|
|
9051
|
+
"\n " +
|
|
9052
|
+
_vm._s(item.shortName) +
|
|
9053
|
+
"\n "
|
|
9054
|
+
),
|
|
9055
|
+
]
|
|
9056
|
+
)
|
|
9057
|
+
}),
|
|
9058
|
+
1
|
|
9059
|
+
),
|
|
9060
|
+
_c("es-input", {
|
|
9061
|
+
directives: [
|
|
9062
|
+
{
|
|
9063
|
+
name: "show",
|
|
9064
|
+
rawName: "v-show",
|
|
9065
|
+
value: _vm.showNews,
|
|
9066
|
+
expression: "showNews",
|
|
9067
|
+
},
|
|
9068
|
+
],
|
|
9069
|
+
staticStyle: {
|
|
9070
|
+
"border-color": "#ccc",
|
|
9071
|
+
padding: "5px",
|
|
9072
|
+
"border-radius": "5px",
|
|
9073
|
+
"font-size": "13px",
|
|
9074
|
+
},
|
|
9075
|
+
attrs: {
|
|
9076
|
+
autosize: "",
|
|
9077
|
+
type: "textarea",
|
|
9078
|
+
readonly: _vm.notificationMessageReadOnly,
|
|
9079
|
+
},
|
|
9080
|
+
model: {
|
|
9081
|
+
value: _vm.nextNode.noticeInfo,
|
|
9082
|
+
callback: function ($$v) {
|
|
9083
|
+
_vm.$set(_vm.nextNode, "noticeInfo", $$v)
|
|
9084
|
+
},
|
|
9085
|
+
expression: "nextNode.noticeInfo",
|
|
9086
|
+
},
|
|
9087
|
+
}),
|
|
9088
|
+
],
|
|
9089
|
+
1
|
|
9090
|
+
)
|
|
9091
|
+
: _vm._e(),
|
|
9092
|
+
])
|
|
9093
|
+
: _vm._e(),
|
|
8984
9094
|
],
|
|
8985
9095
|
1
|
|
8986
9096
|
)
|
|
8987
9097
|
}
|
|
8988
|
-
var
|
|
8989
|
-
|
|
9098
|
+
var processFormvue_type_template_id_7d7a1c8e_staticRenderFns = []
|
|
9099
|
+
processFormvue_type_template_id_7d7a1c8e_render._withStripped = true
|
|
8990
9100
|
|
|
8991
9101
|
|
|
8992
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
9102
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=7d7a1c8e&
|
|
8993
9103
|
|
|
8994
9104
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=49031d93&
|
|
8995
9105
|
var selectUservue_type_template_id_49031d93_render = function () {
|
|
@@ -10785,6 +10895,42 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10785
10895
|
//
|
|
10786
10896
|
//
|
|
10787
10897
|
//
|
|
10898
|
+
//
|
|
10899
|
+
//
|
|
10900
|
+
//
|
|
10901
|
+
//
|
|
10902
|
+
//
|
|
10903
|
+
//
|
|
10904
|
+
//
|
|
10905
|
+
//
|
|
10906
|
+
//
|
|
10907
|
+
//
|
|
10908
|
+
//
|
|
10909
|
+
//
|
|
10910
|
+
//
|
|
10911
|
+
//
|
|
10912
|
+
//
|
|
10913
|
+
//
|
|
10914
|
+
//
|
|
10915
|
+
//
|
|
10916
|
+
//
|
|
10917
|
+
//
|
|
10918
|
+
//
|
|
10919
|
+
//
|
|
10920
|
+
//
|
|
10921
|
+
//
|
|
10922
|
+
//
|
|
10923
|
+
//
|
|
10924
|
+
//
|
|
10925
|
+
//
|
|
10926
|
+
//
|
|
10927
|
+
//
|
|
10928
|
+
//
|
|
10929
|
+
//
|
|
10930
|
+
//
|
|
10931
|
+
//
|
|
10932
|
+
//
|
|
10933
|
+
//
|
|
10788
10934
|
|
|
10789
10935
|
|
|
10790
10936
|
|
|
@@ -10850,6 +10996,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10850
10996
|
customPresetHintMessage: '', //流程预设标题
|
|
10851
10997
|
nextNodeCheckType: 'select',
|
|
10852
10998
|
nextOperateCheckType: 'select',
|
|
10999
|
+
showNews: false, // 是否展示通知信息
|
|
10853
11000
|
notificationMessageReadOnly: false,
|
|
10854
11001
|
readOnlyNotificationType: '',
|
|
10855
11002
|
show: true,
|
|
@@ -11572,8 +11719,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
11572
11719
|
|
|
11573
11720
|
var processForm_component = Object(componentNormalizer["a" /* default */])(
|
|
11574
11721
|
src_processFormvue_type_script_lang_js_,
|
|
11575
|
-
|
|
11576
|
-
|
|
11722
|
+
processFormvue_type_template_id_7d7a1c8e_render,
|
|
11723
|
+
processFormvue_type_template_id_7d7a1c8e_staticRenderFns,
|
|
11577
11724
|
false,
|
|
11578
11725
|
null,
|
|
11579
11726
|
null,
|
|
@@ -12461,8 +12608,8 @@ var TimeLimit_component = Object(componentNormalizer["a" /* default */])(
|
|
|
12461
12608
|
)
|
|
12462
12609
|
|
|
12463
12610
|
/* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
|
|
12464
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=
|
|
12465
|
-
var
|
|
12611
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=9cd54606&
|
|
12612
|
+
var processRejectvue_type_template_id_9cd54606_render = function () {
|
|
12466
12613
|
var _vm = this
|
|
12467
12614
|
var _h = _vm.$createElement
|
|
12468
12615
|
var _c = _vm._self._c || _h
|
|
@@ -12490,7 +12637,11 @@ var processRejectvue_type_template_id_67bb0710_render = function () {
|
|
|
12490
12637
|
{
|
|
12491
12638
|
ref: "nextNode",
|
|
12492
12639
|
staticClass: "demo-dynamic",
|
|
12493
|
-
attrs: {
|
|
12640
|
+
attrs: {
|
|
12641
|
+
model: _vm.nextNode,
|
|
12642
|
+
"label-width": "100px",
|
|
12643
|
+
"label-align": "left",
|
|
12644
|
+
},
|
|
12494
12645
|
},
|
|
12495
12646
|
[
|
|
12496
12647
|
_c(
|
|
@@ -12683,11 +12834,11 @@ var processRejectvue_type_template_id_67bb0710_render = function () {
|
|
|
12683
12834
|
1
|
|
12684
12835
|
)
|
|
12685
12836
|
}
|
|
12686
|
-
var
|
|
12687
|
-
|
|
12837
|
+
var processRejectvue_type_template_id_9cd54606_staticRenderFns = []
|
|
12838
|
+
processRejectvue_type_template_id_9cd54606_render._withStripped = true
|
|
12688
12839
|
|
|
12689
12840
|
|
|
12690
|
-
// CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=
|
|
12841
|
+
// CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=9cd54606&
|
|
12691
12842
|
|
|
12692
12843
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=script&lang=js&
|
|
12693
12844
|
//
|
|
@@ -12775,6 +12926,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
|
|
|
12775
12926
|
//
|
|
12776
12927
|
//
|
|
12777
12928
|
//
|
|
12929
|
+
//
|
|
12778
12930
|
|
|
12779
12931
|
|
|
12780
12932
|
|
|
@@ -12993,8 +13145,8 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
|
|
|
12993
13145
|
|
|
12994
13146
|
var processReject_component = Object(componentNormalizer["a" /* default */])(
|
|
12995
13147
|
src_processRejectvue_type_script_lang_js_,
|
|
12996
|
-
|
|
12997
|
-
|
|
13148
|
+
processRejectvue_type_template_id_9cd54606_render,
|
|
13149
|
+
processRejectvue_type_template_id_9cd54606_staticRenderFns,
|
|
12998
13150
|
false,
|
|
12999
13151
|
null,
|
|
13000
13152
|
null,
|
|
@@ -14154,8 +14306,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
|
|
|
14154
14306
|
)
|
|
14155
14307
|
|
|
14156
14308
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
14157
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=
|
|
14158
|
-
var
|
|
14309
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=73aacad2&
|
|
14310
|
+
var resetvue_type_template_id_73aacad2_render = function () {
|
|
14159
14311
|
var _vm = this
|
|
14160
14312
|
var _h = _vm.$createElement
|
|
14161
14313
|
var _c = _vm._self._c || _h
|
|
@@ -14257,27 +14409,48 @@ var resetvue_type_template_id_803e1634_render = function () {
|
|
|
14257
14409
|
},
|
|
14258
14410
|
},
|
|
14259
14411
|
[
|
|
14260
|
-
|
|
14261
|
-
|
|
14262
|
-
|
|
14263
|
-
|
|
14264
|
-
|
|
14265
|
-
|
|
14266
|
-
|
|
14267
|
-
|
|
14268
|
-
|
|
14412
|
+
_vm.nextNodeCheckType == "select"
|
|
14413
|
+
? _c(
|
|
14414
|
+
"el-select",
|
|
14415
|
+
{
|
|
14416
|
+
attrs: { placeholder: "请选择下步节点" },
|
|
14417
|
+
on: { change: _vm.changeSel },
|
|
14418
|
+
model: {
|
|
14419
|
+
value: _vm.nextNode.nextNode,
|
|
14420
|
+
callback: function ($$v) {
|
|
14421
|
+
_vm.$set(_vm.nextNode, "nextNode", $$v)
|
|
14422
|
+
},
|
|
14423
|
+
expression: "nextNode.nextNode",
|
|
14424
|
+
},
|
|
14425
|
+
},
|
|
14426
|
+
_vm._l(_vm.nextNode.nodeInfo, function (items) {
|
|
14427
|
+
return _c("el-option", {
|
|
14428
|
+
key: items.nodeId,
|
|
14429
|
+
attrs: {
|
|
14430
|
+
label: items.nodeName,
|
|
14431
|
+
value: items.nodeId,
|
|
14432
|
+
},
|
|
14433
|
+
})
|
|
14434
|
+
}),
|
|
14435
|
+
1
|
|
14436
|
+
)
|
|
14437
|
+
: _vm.nextNodeCheckType == "radio"
|
|
14438
|
+
? _c("es-radio-group", {
|
|
14439
|
+
attrs: {
|
|
14440
|
+
data: _vm.nextNode.nodeInfo,
|
|
14441
|
+
"value-key": "nodeId",
|
|
14442
|
+
"label-key": "nodeName",
|
|
14443
|
+
},
|
|
14444
|
+
on: { change: _vm.changeSel },
|
|
14445
|
+
model: {
|
|
14446
|
+
value: _vm.nextNode.nextNode,
|
|
14447
|
+
callback: function ($$v) {
|
|
14448
|
+
_vm.$set(_vm.nextNode, "nextNode", $$v)
|
|
14449
|
+
},
|
|
14450
|
+
expression: "nextNode.nextNode",
|
|
14269
14451
|
},
|
|
14270
|
-
expression: "nextNode.nextNode",
|
|
14271
|
-
},
|
|
14272
|
-
},
|
|
14273
|
-
_vm._l(_vm.nextNode.nodeInfo, function (items) {
|
|
14274
|
-
return _c("el-option", {
|
|
14275
|
-
key: items.nodeId,
|
|
14276
|
-
attrs: { label: items.nodeName, value: items.nodeId },
|
|
14277
14452
|
})
|
|
14278
|
-
|
|
14279
|
-
1
|
|
14280
|
-
),
|
|
14453
|
+
: _vm._e(),
|
|
14281
14454
|
],
|
|
14282
14455
|
1
|
|
14283
14456
|
),
|
|
@@ -14581,11 +14754,11 @@ var resetvue_type_template_id_803e1634_render = function () {
|
|
|
14581
14754
|
1
|
|
14582
14755
|
)
|
|
14583
14756
|
}
|
|
14584
|
-
var
|
|
14585
|
-
|
|
14757
|
+
var resetvue_type_template_id_73aacad2_staticRenderFns = []
|
|
14758
|
+
resetvue_type_template_id_73aacad2_render._withStripped = true
|
|
14586
14759
|
|
|
14587
14760
|
|
|
14588
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
14761
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=73aacad2&
|
|
14589
14762
|
|
|
14590
14763
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
|
|
14591
14764
|
var resetvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -14804,6 +14977,15 @@ var resetvue_type_script_lang_js_components;
|
|
|
14804
14977
|
//
|
|
14805
14978
|
//
|
|
14806
14979
|
//
|
|
14980
|
+
//
|
|
14981
|
+
//
|
|
14982
|
+
//
|
|
14983
|
+
//
|
|
14984
|
+
//
|
|
14985
|
+
//
|
|
14986
|
+
//
|
|
14987
|
+
//
|
|
14988
|
+
//
|
|
14807
14989
|
|
|
14808
14990
|
|
|
14809
14991
|
|
|
@@ -14833,6 +15015,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
14833
15015
|
loading: false,
|
|
14834
15016
|
isCustomUser: 0,
|
|
14835
15017
|
selectUser: false,
|
|
15018
|
+
nextNodeCheckType: 'select',
|
|
14836
15019
|
multiple: false,
|
|
14837
15020
|
showNoticeType: false,
|
|
14838
15021
|
readMultiple: true,
|
|
@@ -15370,6 +15553,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
15370
15553
|
data = res.data;
|
|
15371
15554
|
|
|
15372
15555
|
if (status == 'success') {
|
|
15556
|
+
data.nextNodeCheckType && (_this7.nextNodeCheckType = data.nextNodeCheckType);
|
|
15373
15557
|
_this7.pendtitle = data.pendtitle || data.taskExamine.businessName;
|
|
15374
15558
|
_this7.customPresetHintMessage = data.customPresetHintMessage;
|
|
15375
15559
|
_this7.readOnlyNotificationType = data.readOnlyNotificationType;
|
|
@@ -15451,8 +15635,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
15451
15635
|
|
|
15452
15636
|
var reset_component = Object(componentNormalizer["a" /* default */])(
|
|
15453
15637
|
src_resetvue_type_script_lang_js_,
|
|
15454
|
-
|
|
15455
|
-
|
|
15638
|
+
resetvue_type_template_id_73aacad2_render,
|
|
15639
|
+
resetvue_type_template_id_73aacad2_staticRenderFns,
|
|
15456
15640
|
false,
|
|
15457
15641
|
null,
|
|
15458
15642
|
null,
|
|
@@ -23092,6 +23276,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
23092
23276
|
//
|
|
23093
23277
|
//
|
|
23094
23278
|
//
|
|
23279
|
+
//
|
|
23280
|
+
//
|
|
23281
|
+
//
|
|
23282
|
+
//
|
|
23283
|
+
//
|
|
23284
|
+
//
|
|
23285
|
+
//
|
|
23286
|
+
//
|
|
23095
23287
|
|
|
23096
23288
|
|
|
23097
23289
|
|
|
@@ -24470,6 +24662,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
24470
24662
|
selecNext: function selecNext(val, type, isDef) {
|
|
24471
24663
|
var _this26 = this;
|
|
24472
24664
|
|
|
24665
|
+
console.log(val, 'valvalval');
|
|
24666
|
+
var isNextNode = false;
|
|
24667
|
+
if (type) {
|
|
24668
|
+
isNextNode = this.operationList.filter(function (x) {
|
|
24669
|
+
return x.key == val;
|
|
24670
|
+
})[0].isNextNode;
|
|
24671
|
+
}
|
|
24473
24672
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
24474
24673
|
if (this.multiple) {
|
|
24475
24674
|
this.nextNode.nextUserId = [];
|
|
@@ -24480,7 +24679,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
24480
24679
|
this.selectUserList = [];
|
|
24481
24680
|
this.radioList = [];
|
|
24482
24681
|
|
|
24483
|
-
if (type) {
|
|
24682
|
+
if (type && !isNextNode) {
|
|
24683
|
+
console.log('不是下一步节点');
|
|
24484
24684
|
this.isNextUser = false;
|
|
24485
24685
|
this.isShowNode = false;
|
|
24486
24686
|
this.isMainSubProcess = false;
|
|
@@ -24497,12 +24697,30 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
24497
24697
|
this.nextNode.isReturnRejectNode = 0;
|
|
24498
24698
|
this.nextNode.isSerialSubmit = 0;
|
|
24499
24699
|
this.nodeInfos = [];
|
|
24700
|
+
var newOperationList = [];
|
|
24701
|
+
// this.operationList.map(x => {
|
|
24702
|
+
|
|
24703
|
+
// })
|
|
24500
24704
|
this.operationList.forEach(function (item) {
|
|
24501
24705
|
if (item.key === val) {
|
|
24502
24706
|
if (!item.taskNodeList) {
|
|
24503
24707
|
_this26.nodeInfos = [];
|
|
24504
24708
|
} else {
|
|
24505
|
-
|
|
24709
|
+
if (isDef) {
|
|
24710
|
+
item.taskNodeList.map(function (x) {
|
|
24711
|
+
if (x.nodeName == '编号') {
|
|
24712
|
+
_this26.operationList.push({
|
|
24713
|
+
key: x.nodeId,
|
|
24714
|
+
value: x.nodeName,
|
|
24715
|
+
isNextNode: true
|
|
24716
|
+
});
|
|
24717
|
+
}
|
|
24718
|
+
});
|
|
24719
|
+
}
|
|
24720
|
+
|
|
24721
|
+
_this26.nodeInfos = item.taskNodeList.filter(function (x) {
|
|
24722
|
+
return x.nodeName != '编号';
|
|
24723
|
+
});
|
|
24506
24724
|
}
|
|
24507
24725
|
return;
|
|
24508
24726
|
}
|
|
@@ -24520,7 +24738,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
24520
24738
|
this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
|
|
24521
24739
|
}
|
|
24522
24740
|
}
|
|
24523
|
-
|
|
24741
|
+
if (isNextNode) {
|
|
24742
|
+
this.nodeInfos = [];
|
|
24743
|
+
this.nextNode.nextNodeId = val;
|
|
24744
|
+
}
|
|
24524
24745
|
if (val === 9) {
|
|
24525
24746
|
this.isReject = true;
|
|
24526
24747
|
} else {
|
|
@@ -25080,14 +25301,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
25080
25301
|
subProcess: function subProcess(val, type) {
|
|
25081
25302
|
var _this31 = this;
|
|
25082
25303
|
|
|
25083
|
-
if (this.isFlow && this.nodeInfo.nextNode && this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
25084
|
-
if (this.directCreateCircularReadWhenFlowStarted) {
|
|
25085
|
-
this.$refs.flowCirculate.subMit();
|
|
25086
|
-
} else {
|
|
25087
|
-
this.$refs.processFormIndex.subProcess('nextNode');
|
|
25088
|
-
}
|
|
25089
|
-
return;
|
|
25090
|
-
}
|
|
25091
25304
|
return this.$refs['nextNode'].validate(function (valid) {
|
|
25092
25305
|
if (valid) {
|
|
25093
25306
|
if (_this31.isSubmitButtonShowAgreeAndDisagree == 1) {
|
|
@@ -25181,6 +25394,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
25181
25394
|
sendData: function sendData(freetype) {
|
|
25182
25395
|
var _this33 = this;
|
|
25183
25396
|
|
|
25397
|
+
if (this.isFlow && this.nodeInfo.nextNode && this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
25398
|
+
if (this.directCreateCircularReadWhenFlowStarted) {
|
|
25399
|
+
this.$refs.flowCirculate.subMit();
|
|
25400
|
+
} else {
|
|
25401
|
+
this.$refs.processFormIndex.subProcess('nextNode');
|
|
25402
|
+
}
|
|
25403
|
+
return;
|
|
25404
|
+
}
|
|
25184
25405
|
this.$refs['nextNode'].validate(function () {
|
|
25185
25406
|
var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
|
|
25186
25407
|
var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap, currentNodeEnableItemHandleDescription;
|