eoss-mobiles 0.2.91 → 0.2.93

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.
@@ -4493,8 +4493,8 @@ var selector_tree_component = normalizeComponent(
4493
4493
  )
4494
4494
 
4495
4495
  /* harmony default export */ var selector_tree = (selector_tree_component.exports);
4496
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/selector-field.vue?vue&type=template&id=4cf1dc33&
4497
- var selector_fieldvue_type_template_id_4cf1dc33_render = function () {
4496
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/selector-field.vue?vue&type=template&id=2643b418&
4497
+ var selector_fieldvue_type_template_id_2643b418_render = function () {
4498
4498
  var _vm = this
4499
4499
  var _h = _vm.$createElement
4500
4500
  var _c = _vm._self._c || _h
@@ -4539,15 +4539,7 @@ var selector_fieldvue_type_template_id_4cf1dc33_render = function () {
4539
4539
  [
4540
4540
  _c(
4541
4541
  "div",
4542
- {
4543
- staticStyle: { width: "100%" },
4544
- on: {
4545
- click: function ($event) {
4546
- $event.stopPropagation()
4547
- return _vm.handleClick($event)
4548
- },
4549
- },
4550
- },
4542
+ { staticStyle: { width: "100%" } },
4551
4543
  [
4552
4544
  _vm.newNextUserList.length > 0 && _vm.multiple
4553
4545
  ? _c(
@@ -4586,7 +4578,10 @@ var selector_fieldvue_type_template_id_4cf1dc33_render = function () {
4586
4578
  data: _vm.newNextUserList,
4587
4579
  direction: "horizontal",
4588
4580
  },
4589
- on: { change: _vm.handleChange },
4581
+ on: {
4582
+ click: _vm.handleClickRadio,
4583
+ change: _vm.handleChange,
4584
+ },
4590
4585
  model: {
4591
4586
  value: _vm.selectValue,
4592
4587
  callback: function ($$v) {
@@ -4668,11 +4663,11 @@ var selector_fieldvue_type_template_id_4cf1dc33_render = function () {
4668
4663
  1
4669
4664
  )
4670
4665
  }
4671
- var selector_fieldvue_type_template_id_4cf1dc33_staticRenderFns = []
4672
- selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4666
+ var selector_fieldvue_type_template_id_2643b418_staticRenderFns = []
4667
+ selector_fieldvue_type_template_id_2643b418_render._withStripped = true
4673
4668
 
4674
4669
 
4675
- // CONCATENATED MODULE: ./packages/selector/src/selector-field.vue?vue&type=template&id=4cf1dc33&
4670
+ // CONCATENATED MODULE: ./packages/selector/src/selector-field.vue?vue&type=template&id=2643b418&
4676
4671
 
4677
4672
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/selector-field.vue?vue&type=script&lang=js&
4678
4673
  //
@@ -4745,6 +4740,9 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4745
4740
  //
4746
4741
  //
4747
4742
  //
4743
+ //
4744
+ //
4745
+ //
4748
4746
 
4749
4747
  /* harmony default export */ var selector_fieldvue_type_script_lang_js_ = ({
4750
4748
  name: 'selectorField',
@@ -4752,7 +4750,8 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4752
4750
  return {
4753
4751
  newSelectList: [],
4754
4752
  newNextUserList: [],
4755
- selectValue: ''
4753
+ selectValue: '',
4754
+ openSelect: true
4756
4755
  };
4757
4756
  },
4758
4757
 
@@ -4824,7 +4823,9 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4824
4823
  }
4825
4824
  },
4826
4825
  methods: {
4827
- handleClick: function handleClick() {},
4826
+ handleClickRadio: function handleClickRadio(val) {
4827
+ this.openSelect = false;
4828
+ },
4828
4829
  getDefault: function getDefault() {
4829
4830
  var _this2 = this;
4830
4831
 
@@ -4860,6 +4861,7 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4860
4861
  },
4861
4862
  handleChange: function handleChange(val, info) {
4862
4863
  var _this = this;
4864
+ _this.openSelect = false;
4863
4865
  if (_this.multiple) {
4864
4866
  if (info.checked) {
4865
4867
  if (this.newSelectList.length > 0 && !this.multiple) {
@@ -4890,10 +4892,17 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4890
4892
  * @author liufan
4891
4893
  */
4892
4894
  clickTree: function clickTree() {
4895
+ var _this3 = this;
4896
+
4893
4897
  if (this.disabled === true) {
4894
4898
  return; // 表单禁用不显示弹窗
4895
4899
  }
4896
- this.$emit('click');
4900
+ setTimeout(function () {
4901
+ if (_this3.openSelect) {
4902
+ _this3.$emit('click');
4903
+ }
4904
+ _this3.openSelect = true;
4905
+ }, 30);
4897
4906
  },
4898
4907
 
4899
4908
  /**
@@ -4932,8 +4941,8 @@ selector_fieldvue_type_template_id_4cf1dc33_render._withStripped = true
4932
4941
 
4933
4942
  var selector_field_component = normalizeComponent(
4934
4943
  src_selector_fieldvue_type_script_lang_js_,
4935
- selector_fieldvue_type_template_id_4cf1dc33_render,
4936
- selector_fieldvue_type_template_id_4cf1dc33_staticRenderFns,
4944
+ selector_fieldvue_type_template_id_2643b418_render,
4945
+ selector_fieldvue_type_template_id_2643b418_staticRenderFns,
4937
4946
  false,
4938
4947
  null,
4939
4948
  null,
@@ -5536,8 +5545,8 @@ field_src_main.install = function (Vue) {
5536
5545
  };
5537
5546
 
5538
5547
  /* harmony default export */ var packages_field = (field_src_main);
5539
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio/src/main.vue?vue&type=template&id=526e450c&
5540
- var mainvue_type_template_id_526e450c_render = function () {
5548
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio/src/main.vue?vue&type=template&id=c09296a4&
5549
+ var mainvue_type_template_id_c09296a4_render = function () {
5541
5550
  var _vm = this
5542
5551
  var _h = _vm.$createElement
5543
5552
  var _c = _vm._self._c || _h
@@ -5576,6 +5585,11 @@ var mainvue_type_template_id_526e450c_render = function () {
5576
5585
  "checked-color": _vm.checkedColor || item.checkedColor,
5577
5586
  name: item[_vm.valueKey],
5578
5587
  },
5588
+ on: {
5589
+ click: function ($event) {
5590
+ _vm.handleClick($event, item)
5591
+ },
5592
+ },
5579
5593
  },
5580
5594
  "van-radio",
5581
5595
  _vm.exclAttribute({ data: item, attrs: "checkedColor" }),
@@ -5599,11 +5613,11 @@ var mainvue_type_template_id_526e450c_render = function () {
5599
5613
  1
5600
5614
  )
5601
5615
  }
5602
- var mainvue_type_template_id_526e450c_staticRenderFns = []
5603
- mainvue_type_template_id_526e450c_render._withStripped = true
5616
+ var mainvue_type_template_id_c09296a4_staticRenderFns = []
5617
+ mainvue_type_template_id_c09296a4_render._withStripped = true
5604
5618
 
5605
5619
 
5606
- // CONCATENATED MODULE: ./packages/radio/src/main.vue?vue&type=template&id=526e450c&
5620
+ // CONCATENATED MODULE: ./packages/radio/src/main.vue?vue&type=template&id=c09296a4&
5607
5621
 
5608
5622
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio/src/main.vue?vue&type=script&lang=js&
5609
5623
  var 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; };
@@ -5630,6 +5644,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
5630
5644
  //
5631
5645
  //
5632
5646
  //
5647
+ //
5633
5648
 
5634
5649
 
5635
5650
 
@@ -5738,6 +5753,9 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
5738
5753
  },
5739
5754
 
5740
5755
  methods: {
5756
+ handleClick: function handleClick(e, val) {
5757
+ this.$emit('click', val, e);
5758
+ },
5741
5759
  exclAttribute: function exclAttribute(_ref) {
5742
5760
  var data = _ref.data,
5743
5761
  attrs = _ref.attrs;
@@ -5803,8 +5821,8 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
5803
5821
 
5804
5822
  var radio_src_main_component = normalizeComponent(
5805
5823
  packages_radio_src_mainvue_type_script_lang_js_,
5806
- mainvue_type_template_id_526e450c_render,
5807
- mainvue_type_template_id_526e450c_staticRenderFns,
5824
+ mainvue_type_template_id_c09296a4_render,
5825
+ mainvue_type_template_id_c09296a4_staticRenderFns,
5808
5826
  false,
5809
5827
  null,
5810
5828
  null,
@@ -12770,8 +12788,8 @@ mainvue_type_template_id_7b5917b8_render._withStripped = true
12770
12788
 
12771
12789
  // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=7b5917b8&
12772
12790
 
12773
- // 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=d6e98734&
12774
- var StartFlowvue_type_template_id_d6e98734_render = function () {
12791
+ // 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
+ var StartFlowvue_type_template_id_20f21730_render = function () {
12775
12793
  var _vm = this
12776
12794
  var _h = _vm.$createElement
12777
12795
  var _c = _vm._self._c || _h
@@ -12928,6 +12946,8 @@ var StartFlowvue_type_template_id_d6e98734_render = function () {
12928
12946
  ref: "message",
12929
12947
  attrs: {
12930
12948
  code: "notification_type",
12949
+ readOnlyNotificationType: _vm.readOnlyNotificationType,
12950
+ notificationMessageReadOnly: _vm.notificationMessageReadOnly,
12931
12951
  defaultNotificationMsg: _vm.form.notificationMsg,
12932
12952
  baseUrl: _vm.baseUrl,
12933
12953
  defaultNotificationType: _vm.defaultNotificationType,
@@ -12960,11 +12980,11 @@ var StartFlowvue_type_template_id_d6e98734_render = function () {
12960
12980
  ]),
12961
12981
  ])
12962
12982
  }
12963
- var StartFlowvue_type_template_id_d6e98734_staticRenderFns = []
12964
- StartFlowvue_type_template_id_d6e98734_render._withStripped = true
12983
+ var StartFlowvue_type_template_id_20f21730_staticRenderFns = []
12984
+ StartFlowvue_type_template_id_20f21730_render._withStripped = true
12965
12985
 
12966
12986
 
12967
- // CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=d6e98734&
12987
+ // CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=20f21730&
12968
12988
 
12969
12989
  // 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=2dab6204&
12970
12990
  var Opinionvue_type_template_id_2dab6204_render = function () {
@@ -13479,8 +13499,8 @@ var Opinion_component = normalizeComponent(
13479
13499
  )
13480
13500
 
13481
13501
  /* harmony default export */ var Opinion = (Opinion_component.exports);
13482
- // 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/Message.vue?vue&type=template&id=f4fe15d6&
13483
- var Messagevue_type_template_id_f4fe15d6_render = function () {
13502
+ // 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/Message.vue?vue&type=template&id=434d110c&
13503
+ var Messagevue_type_template_id_434d110c_render = function () {
13484
13504
  var _vm = this
13485
13505
  var _h = _vm.$createElement
13486
13506
  var _c = _vm._self._c || _h
@@ -13505,6 +13525,7 @@ var Messagevue_type_template_id_f4fe15d6_render = function () {
13505
13525
  direction: "horizontal",
13506
13526
  sysAppCode: _vm.code,
13507
13527
  baseUrl: _vm.baseUrl,
13528
+ disabledValue: _vm.readOnlyNotificationType,
13508
13529
  labelKey: "shortName",
13509
13530
  valueKey: "cciValue",
13510
13531
  },
@@ -13538,6 +13559,7 @@ var Messagevue_type_template_id_f4fe15d6_render = function () {
13538
13559
  _c("em-input", {
13539
13560
  attrs: {
13540
13561
  rows: "3",
13562
+ readonly: _vm.notificationMessageReadOnly,
13541
13563
  autosize: "",
13542
13564
  type: "textarea",
13543
13565
  placeholder: "请输入留言",
@@ -13565,11 +13587,11 @@ var Messagevue_type_template_id_f4fe15d6_render = function () {
13565
13587
  1
13566
13588
  )
13567
13589
  }
13568
- var Messagevue_type_template_id_f4fe15d6_staticRenderFns = []
13569
- Messagevue_type_template_id_f4fe15d6_render._withStripped = true
13590
+ var Messagevue_type_template_id_434d110c_staticRenderFns = []
13591
+ Messagevue_type_template_id_434d110c_render._withStripped = true
13570
13592
 
13571
13593
 
13572
- // CONCATENATED MODULE: ./packages/flow/src/components/Message.vue?vue&type=template&id=f4fe15d6&
13594
+ // CONCATENATED MODULE: ./packages/flow/src/components/Message.vue?vue&type=template&id=434d110c&
13573
13595
 
13574
13596
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Message.vue?vue&type=script&lang=js&
13575
13597
  //
@@ -13609,12 +13631,22 @@ Messagevue_type_template_id_f4fe15d6_render._withStripped = true
13609
13631
  //
13610
13632
  //
13611
13633
  //
13634
+ //
13635
+ //
13612
13636
 
13613
13637
  /* harmony default export */ var Messagevue_type_script_lang_js_ = ({
13614
13638
  name: 'Message',
13615
13639
  inheritAttrs: false,
13616
13640
  props: {
13617
13641
  type: String,
13642
+ notificationMessageReadOnly: {
13643
+ type: Boolean,
13644
+ default: false
13645
+ },
13646
+ readOnlyNotificationType: {
13647
+ type: String,
13648
+ default: ''
13649
+ },
13618
13650
  code: {
13619
13651
  type: String,
13620
13652
  default: "notification_type" // 代码表默认参数
@@ -13689,8 +13721,8 @@ Messagevue_type_template_id_f4fe15d6_render._withStripped = true
13689
13721
 
13690
13722
  var Message_component = normalizeComponent(
13691
13723
  components_Messagevue_type_script_lang_js_,
13692
- Messagevue_type_template_id_f4fe15d6_render,
13693
- Messagevue_type_template_id_f4fe15d6_staticRenderFns,
13724
+ Messagevue_type_template_id_434d110c_render,
13725
+ Messagevue_type_template_id_434d110c_staticRenderFns,
13694
13726
  false,
13695
13727
  null,
13696
13728
  null,
@@ -13856,6 +13888,8 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
13856
13888
  data: function data() {
13857
13889
  return {
13858
13890
  showOpinion: true,
13891
+ readOnlyNotificationType: '',
13892
+ notificationMessageReadOnly: false,
13859
13893
  form: {
13860
13894
  nextNodeId: undefined, // 流程节点id
13861
13895
  nextNodeName: undefined, // 流程节点名称
@@ -14019,9 +14053,9 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
14019
14053
  utils_http({
14020
14054
  url: _that.apiBaseUrl ? _that.apiBaseUrl + registerNew : registerNew,
14021
14055
  type: 'get',
14022
- params: { params: info }
14023
- // format: false
14024
- }).then(function (res) {
14056
+ params: { params: info
14057
+ // format: false
14058
+ } }).then(function (res) {
14025
14059
  _this2.$toast.clear();
14026
14060
  if (res.rCode == 0) {
14027
14061
  _this2.$toast('操作成功');
@@ -14126,8 +14160,11 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
14126
14160
  return new Promise(function (resolve, reiect) {
14127
14161
  utils_http({
14128
14162
  url: that.apiBaseUrl ? that.apiBaseUrl + toStartFlow : toStartFlow,
14129
- params: { params: StartFlowvue_type_script_lang_js_extends({}, res, { userId: that.userId || util["a" /* default */].getStorage('userId')
14130
- }) }
14163
+ params: {
14164
+ params: StartFlowvue_type_script_lang_js_extends({}, res, {
14165
+ userId: that.userId || util["a" /* default */].getStorage('userId')
14166
+ })
14167
+ }
14131
14168
  }).then(function (res) {
14132
14169
  if (res.rCode == 0) {
14133
14170
  res.results.nodeExtr.submitTipsMsg && external_eoss_mobile_vant_["Dialog"].confirm({
@@ -14139,6 +14176,10 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
14139
14176
  that.goBack();
14140
14177
  // on cancel
14141
14178
  });
14179
+ if (res.results.extendData) {
14180
+ that.notificationMessageReadOnly = res.results.extendData.notificationMessageReadOnly == 'true';
14181
+ that.readOnlyNotificationType = res.results.extendData.readOnlyNotificationType;
14182
+ }
14142
14183
  that.processObj = res.results;
14143
14184
  that.nextList = res.results.nodeList;
14144
14185
  that.isOpinionRequired = res.results.nodeExtr.isOpinionRequired;
@@ -14241,8 +14282,8 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
14241
14282
 
14242
14283
  var StartFlow_component = normalizeComponent(
14243
14284
  components_StartFlowvue_type_script_lang_js_,
14244
- StartFlowvue_type_template_id_d6e98734_render,
14245
- StartFlowvue_type_template_id_d6e98734_staticRenderFns,
14285
+ StartFlowvue_type_template_id_20f21730_render,
14286
+ StartFlowvue_type_template_id_20f21730_staticRenderFns,
14246
14287
  false,
14247
14288
  null,
14248
14289
  null,
@@ -14251,8 +14292,8 @@ var StartFlow_component = normalizeComponent(
14251
14292
  )
14252
14293
 
14253
14294
  /* harmony default export */ var StartFlow = (StartFlow_component.exports);
14254
- // 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=82b3c6de&
14255
- var Handlevue_type_template_id_82b3c6de_render = function () {
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=77381012&
14296
+ var Handlevue_type_template_id_77381012_render = function () {
14256
14297
  var _vm = this
14257
14298
  var _h = _vm.$createElement
14258
14299
  var _c = _vm._self._c || _h
@@ -15251,6 +15292,10 @@ var Handlevue_type_template_id_82b3c6de_render = function () {
15251
15292
  attrs: {
15252
15293
  code: "notification_type",
15253
15294
  baseUrl: _vm.baseUrl,
15295
+ readOnlyNotificationType:
15296
+ _vm.readOnlyNotificationType,
15297
+ notificationMessageReadOnly:
15298
+ _vm.notificationMessageReadOnly,
15254
15299
  defaultNotificationType:
15255
15300
  _vm.defaultNotificationType,
15256
15301
  defaultNotificationMsg:
@@ -15333,14 +15378,14 @@ var Handlevue_type_template_id_82b3c6de_render = function () {
15333
15378
  1
15334
15379
  )
15335
15380
  }
15336
- var Handlevue_type_template_id_82b3c6de_staticRenderFns = []
15337
- Handlevue_type_template_id_82b3c6de_render._withStripped = true
15381
+ var Handlevue_type_template_id_77381012_staticRenderFns = []
15382
+ Handlevue_type_template_id_77381012_render._withStripped = true
15338
15383
 
15339
15384
 
15340
- // CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=82b3c6de&
15385
+ // CONCATENATED MODULE: ./packages/flow/src/components/Handle.vue?vue&type=template&id=77381012&
15341
15386
 
15342
- // 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=0b9b17d6&
15343
- var Rejectvue_type_template_id_0b9b17d6_render = function () {
15387
+ // 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
+ var Rejectvue_type_template_id_4fdaf365_render = function () {
15344
15389
  var _vm = this
15345
15390
  var _h = _vm.$createElement
15346
15391
  var _c = _vm._self._c || _h
@@ -15408,6 +15453,8 @@ var Rejectvue_type_template_id_0b9b17d6_render = function () {
15408
15453
  attrs: {
15409
15454
  code: "notification_type",
15410
15455
  baseUrl: _vm.baseUrl,
15456
+ readOnlyNotificationType: _vm.readOnlyNotificationType,
15457
+ notificationMessageReadOnly: _vm.notificationMessageReadOnly,
15411
15458
  defaultNotificationType: _vm.defaultNotificationType,
15412
15459
  defaultNotificationMsg: _vm.form.notificationMsg,
15413
15460
  type: _vm.type,
@@ -15439,11 +15486,11 @@ var Rejectvue_type_template_id_0b9b17d6_render = function () {
15439
15486
  ]),
15440
15487
  ])
15441
15488
  }
15442
- var Rejectvue_type_template_id_0b9b17d6_staticRenderFns = []
15443
- Rejectvue_type_template_id_0b9b17d6_render._withStripped = true
15489
+ var Rejectvue_type_template_id_4fdaf365_staticRenderFns = []
15490
+ Rejectvue_type_template_id_4fdaf365_render._withStripped = true
15444
15491
 
15445
15492
 
15446
- // CONCATENATED MODULE: ./packages/flow/src/components/Reject.vue?vue&type=template&id=0b9b17d6&
15493
+ // CONCATENATED MODULE: ./packages/flow/src/components/Reject.vue?vue&type=template&id=4fdaf365&
15447
15494
 
15448
15495
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/components/Reject.vue?vue&type=script&lang=js&
15449
15496
  var Rejectvue_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; };
@@ -15492,6 +15539,8 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
15492
15539
  //
15493
15540
  //
15494
15541
  //
15542
+ //
15543
+ //
15495
15544
 
15496
15545
 
15497
15546
 
@@ -15520,6 +15569,8 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
15520
15569
  showMsg: false, // 判断是否显示系统消息
15521
15570
  opinionHandleExplainText: undefined,
15522
15571
  showOpinion: false, // 常用意见弹框
15572
+ readOnlyNotificationType: '',
15573
+ notificationMessageReadOnly: false,
15523
15574
  form: {
15524
15575
  opinion: undefined, // 审批意见
15525
15576
  notificationMsg: undefined, //系统消息
@@ -15660,10 +15711,14 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
15660
15711
  rejectTaskNodes = _res$data.rejectTaskNodes,
15661
15712
  taskExamine = _res$data.taskExamine,
15662
15713
  nodeInfoMap = _res$data.nodeInfoMap,
15714
+ notificationMessageReadOnly = _res$data.notificationMessageReadOnly,
15715
+ readOnlyNotificationType = _res$data.readOnlyNotificationType,
15663
15716
  defaultNotificationMessage = _res$data.defaultNotificationMessage,
15664
15717
  defaultNotificationType = _res$data.defaultNotificationType;
15665
15718
 
15666
15719
  _this2.$toast.clear();
15720
+ _this2.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
15721
+ _this2.readOnlyNotificationType = readOnlyNotificationType;
15667
15722
  _this2.isHiddenOftenOpinion = nodeInfoMap.nodeExtAttr.isHiddenOftenOpinion;
15668
15723
  _this2.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
15669
15724
  _this2.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
@@ -15713,8 +15768,8 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
15713
15768
 
15714
15769
  var Reject_component = normalizeComponent(
15715
15770
  components_Rejectvue_type_script_lang_js_,
15716
- Rejectvue_type_template_id_0b9b17d6_render,
15717
- Rejectvue_type_template_id_0b9b17d6_staticRenderFns,
15771
+ Rejectvue_type_template_id_4fdaf365_render,
15772
+ Rejectvue_type_template_id_4fdaf365_staticRenderFns,
15718
15773
  false,
15719
15774
  null,
15720
15775
  null,
@@ -16442,6 +16497,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
16442
16497
  //
16443
16498
  //
16444
16499
  //
16500
+ //
16501
+ //
16445
16502
 
16446
16503
 
16447
16504
 
@@ -16491,6 +16548,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
16491
16548
  return _ref = {
16492
16549
  AddSignList: [{ name: '前置加签', value: 'preAddSign' }, { name: '后置加签', value: 'postAddSign' }],
16493
16550
  nextNodeDefault: 0,
16551
+ readOnlyNotificationType: '',
16552
+ notificationMessageReadOnly: false,
16494
16553
  isCanPreAddSign: false,
16495
16554
  showAppUnit: false, // 弹窗单位
16496
16555
  handleFlow: true,
@@ -16916,41 +16975,42 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
16916
16975
  this.form.nextOperate = val.key;
16917
16976
  this.form.nextOperateName = val.value;
16918
16977
  this.nodeList = val.taskNodeList;
16919
- if (val.key == -1) {
16920
- this.form.isSerialSubmit = 1;
16921
- return;
16922
- } else if (val.key == 0) {
16923
- this.isNextUser = true;
16924
- this.isShowNode = true;
16925
- } else if (val.key == 1) {
16926
- this.isNextUser = true;
16927
- this.isShowNode = true;
16928
- } else if (val.key == 2 && this.isSpecial) {
16929
- this.form.isReturnSubmitter = 1;
16930
- return;
16931
- } else if (val.key == 3) {
16932
- this.form.isUndertakeReply = 1;
16933
- return;
16934
- } else if (val.key == 4) {
16935
- this.form.isTakeAdviceReply = 1;
16936
- return;
16937
- } else if (val.key == 5) {
16938
- this.form.isUndertakeEnd = 1;
16939
- return;
16940
- } else if (val.key == 6) {
16941
- this.form.isTakeAdviceEnd = 1;
16942
- return;
16943
- } else if (val.key == 7) {
16944
- this.form.isReadDealReply = 1;
16945
- return;
16946
- } else if (val.key == 8) {
16947
- this.form.isReadDealEnd = 1;
16948
- return;
16949
- } else if (val.key == 9) {
16950
- this.form.isReturnRejectNode = 1;
16951
- return;
16952
- } else {}
16953
-
16978
+ if (this.isSpecial) {
16979
+ if (val.key == -1) {
16980
+ this.form.isSerialSubmit = 1;
16981
+ return;
16982
+ } else if (val.key == 0) {
16983
+ this.isNextUser = true;
16984
+ this.isShowNode = true;
16985
+ } else if (val.key == 1) {
16986
+ this.isNextUser = true;
16987
+ this.isShowNode = true;
16988
+ } else if (val.key == 2) {
16989
+ this.form.isReturnSubmitter = 1;
16990
+ return;
16991
+ } else if (val.key == 3) {
16992
+ this.form.isUndertakeReply = 1;
16993
+ return;
16994
+ } else if (val.key == 4) {
16995
+ this.form.isTakeAdviceReply = 1;
16996
+ return;
16997
+ } else if (val.key == 5) {
16998
+ this.form.isUndertakeEnd = 1;
16999
+ return;
17000
+ } else if (val.key == 6) {
17001
+ this.form.isTakeAdviceEnd = 1;
17002
+ return;
17003
+ } else if (val.key == 7) {
17004
+ this.form.isReadDealReply = 1;
17005
+ return;
17006
+ } else if (val.key == 8) {
17007
+ this.form.isReadDealEnd = 1;
17008
+ return;
17009
+ } else if (val.key == 9) {
17010
+ this.form.isReturnRejectNode = 1;
17011
+ return;
17012
+ } else {}
17013
+ }
16954
17014
  if (this.nodeList) {
16955
17015
  this.form.nextNodeId = this.nodeList[this.nextNodeDefault].nodeId;
16956
17016
  this.form.nextNodeName = this.nodeList[this.nextNodeDefault].nodeName;
@@ -17075,12 +17135,16 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
17075
17135
  pOrgId = _res$data.pOrgId,
17076
17136
  taskExamine = _res$data.taskExamine,
17077
17137
  currentOrgName = _res$data.currentOrgName,
17138
+ notificationMessageReadOnly = _res$data.notificationMessageReadOnly,
17139
+ readOnlyNotificationType = _res$data.readOnlyNotificationType,
17078
17140
  otherOrgName = _res$data.otherOrgName,
17079
17141
  defaultNotificationMessage = _res$data.defaultNotificationMessage,
17080
17142
  defaultNotificationType = _res$data.defaultNotificationType,
17081
17143
  isCanPreAddSign = _res$data.isCanPreAddSign;
17082
17144
 
17083
17145
  that.currentOrgName = currentOrgName;
17146
+ that.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
17147
+ that.readOnlyNotificationType = readOnlyNotificationType;
17084
17148
  that.isCanPreAddSign = isCanPreAddSign;
17085
17149
  that.otherOrgName = otherOrgName;
17086
17150
  that.taskExamineInfo = taskExamine;
@@ -17417,8 +17481,8 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
17417
17481
 
17418
17482
  var Handle_component = normalizeComponent(
17419
17483
  components_Handlevue_type_script_lang_js_,
17420
- Handlevue_type_template_id_82b3c6de_render,
17421
- Handlevue_type_template_id_82b3c6de_staticRenderFns,
17484
+ Handlevue_type_template_id_77381012_render,
17485
+ Handlevue_type_template_id_77381012_staticRenderFns,
17422
17486
  false,
17423
17487
  null,
17424
17488
  null,
@@ -17427,8 +17491,8 @@ var Handle_component = normalizeComponent(
17427
17491
  )
17428
17492
 
17429
17493
  /* harmony default export */ var Handle = (Handle_component.exports);
17430
- // 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=05a99589&
17431
- var TaskReadvue_type_template_id_05a99589_render = function () {
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=f2952fd2&
17495
+ var TaskReadvue_type_template_id_f2952fd2_render = function () {
17432
17496
  var _vm = this
17433
17497
  var _h = _vm.$createElement
17434
17498
  var _c = _vm._self._c || _h
@@ -17570,9 +17634,11 @@ var TaskReadvue_type_template_id_05a99589_render = function () {
17570
17634
  ref: "message",
17571
17635
  attrs: {
17572
17636
  code: "notification_type",
17637
+ readOnlyNotificationType: _vm.readOnlyNotificationType,
17638
+ notificationMessageReadOnly: _vm.notificationMessageReadOnly,
17573
17639
  defaultNotificationType: _vm.defaultNotificationType,
17574
17640
  baseUrl: _vm.baseUrl,
17575
- showMsg: false,
17641
+ showMsg: true,
17576
17642
  },
17577
17643
  on: { onInputMsg: _vm.onInputMsg },
17578
17644
  }),
@@ -17600,11 +17666,11 @@ var TaskReadvue_type_template_id_05a99589_render = function () {
17600
17666
  ]),
17601
17667
  ])
17602
17668
  }
17603
- var TaskReadvue_type_template_id_05a99589_staticRenderFns = []
17604
- TaskReadvue_type_template_id_05a99589_render._withStripped = true
17669
+ var TaskReadvue_type_template_id_f2952fd2_staticRenderFns = []
17670
+ TaskReadvue_type_template_id_f2952fd2_render._withStripped = true
17605
17671
 
17606
17672
 
17607
- // CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=05a99589&
17673
+ // CONCATENATED MODULE: ./packages/flow/src/components/TaskRead.vue?vue&type=template&id=f2952fd2&
17608
17674
 
17609
17675
  // 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&
17610
17676
  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; };
@@ -17691,6 +17757,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
17691
17757
  //
17692
17758
  //
17693
17759
  //
17760
+ //
17761
+ //
17694
17762
 
17695
17763
 
17696
17764
 
@@ -17700,6 +17768,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
17700
17768
  data: function data() {
17701
17769
  return {
17702
17770
  nextNode: {},
17771
+ readOnlyNotificationType: '',
17772
+ notificationMessageReadOnly: false,
17703
17773
  dataJson: {
17704
17774
  isCdjxjTaskHandle: undefined
17705
17775
  },
@@ -17918,6 +17988,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
17918
17988
  if (res.status == 'success') {
17919
17989
  _this3.processObj = res.data;
17920
17990
  _this3.notificationMsgType = _this3.isMultiple();
17991
+ _this3.notificationMessageReadOnly = res.data.notificationMessageReadOnly == 'true';
17992
+ _this3.readOnlyNotificationType = res.data.readOnlyNotificationType;
17921
17993
  // this.taskExamine = res.data.taskExamine;
17922
17994
  // console.log(this.taskExamine, 'taskExaminetaskExaminetaskExamine');
17923
17995
  } else {
@@ -18102,8 +18174,8 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
18102
18174
 
18103
18175
  var TaskRead_component = normalizeComponent(
18104
18176
  components_TaskReadvue_type_script_lang_js_,
18105
- TaskReadvue_type_template_id_05a99589_render,
18106
- TaskReadvue_type_template_id_05a99589_staticRenderFns,
18177
+ TaskReadvue_type_template_id_f2952fd2_render,
18178
+ TaskReadvue_type_template_id_f2952fd2_staticRenderFns,
18107
18179
  false,
18108
18180
  null,
18109
18181
  null,
@@ -18112,8 +18184,8 @@ var TaskRead_component = normalizeComponent(
18112
18184
  )
18113
18185
 
18114
18186
  /* harmony default export */ var TaskRead = (TaskRead_component.exports);
18115
- // 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=3865cb4e&
18116
- var taskUnionExaminevue_type_template_id_3865cb4e_render = function () {
18187
+ // 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=0caaa8c0&
18188
+ var taskUnionExaminevue_type_template_id_0caaa8c0_render = function () {
18117
18189
  var _vm = this
18118
18190
  var _h = _vm.$createElement
18119
18191
  var _c = _vm._self._c || _h
@@ -18231,6 +18303,8 @@ var taskUnionExaminevue_type_template_id_3865cb4e_render = function () {
18231
18303
  attrs: {
18232
18304
  code: "notification_type",
18233
18305
  baseUrl: _vm.baseUrl,
18306
+ readOnlyNotificationType: _vm.readOnlyNotificationType,
18307
+ notificationMessageReadOnly: _vm.notificationMessageReadOnly,
18234
18308
  defaultNotificationType: _vm.infoList.noticeType,
18235
18309
  defaultNotificationMsg: _vm.infoList.noticeInfo,
18236
18310
  },
@@ -18261,11 +18335,11 @@ var taskUnionExaminevue_type_template_id_3865cb4e_render = function () {
18261
18335
  ]),
18262
18336
  ])
18263
18337
  }
18264
- var taskUnionExaminevue_type_template_id_3865cb4e_staticRenderFns = []
18265
- taskUnionExaminevue_type_template_id_3865cb4e_render._withStripped = true
18338
+ var taskUnionExaminevue_type_template_id_0caaa8c0_staticRenderFns = []
18339
+ taskUnionExaminevue_type_template_id_0caaa8c0_render._withStripped = true
18266
18340
 
18267
18341
 
18268
- // CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=3865cb4e&
18342
+ // CONCATENATED MODULE: ./packages/flow/src/components/taskUnionExamine.vue?vue&type=template&id=0caaa8c0&
18269
18343
 
18270
18344
  // 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&
18271
18345
  //
@@ -18395,6 +18469,8 @@ taskUnionExaminevue_type_template_id_3865cb4e_render._withStripped = true
18395
18469
  return {
18396
18470
  opinion: '', //办理意见
18397
18471
  isImageOpinion: 0,
18472
+ readOnlyNotificationType: '',
18473
+ notificationMessageReadOnly: false,
18398
18474
  file: '',
18399
18475
  infoList: {
18400
18476
  nextOtherOrgObj: [],
@@ -18608,6 +18684,8 @@ taskUnionExaminevue_type_template_id_3865cb4e_render._withStripped = true
18608
18684
  choiceDeptId = _res$data2.choiceDeptId,
18609
18685
  choiceOrgId = _res$data2.choiceOrgId,
18610
18686
  taskExamine = _res$data2.taskExamine,
18687
+ notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
18688
+ readOnlyNotificationType = _res$data2.readOnlyNotificationType,
18611
18689
  unionDispatchOrgName = _res$data2.unionDispatchOrgName,
18612
18690
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
18613
18691
  orgNames = _res$data2.orgNames,
@@ -18617,6 +18695,8 @@ taskUnionExaminevue_type_template_id_3865cb4e_render._withStripped = true
18617
18695
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
18618
18696
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
18619
18697
 
18698
+ _this5.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
18699
+ _this5.readOnlyNotificationType = readOnlyNotificationType;
18620
18700
  _this5.isSinglePage = taskExamine.isSinglePage;
18621
18701
  _this5.isSubFlow = taskExamine.isSubFlow;
18622
18702
  _this5.opinion = taskExamine.opinion;
@@ -18838,8 +18918,8 @@ taskUnionExaminevue_type_template_id_3865cb4e_render._withStripped = true
18838
18918
 
18839
18919
  var taskUnionExamine_component = normalizeComponent(
18840
18920
  components_taskUnionExaminevue_type_script_lang_js_,
18841
- taskUnionExaminevue_type_template_id_3865cb4e_render,
18842
- taskUnionExaminevue_type_template_id_3865cb4e_staticRenderFns,
18921
+ taskUnionExaminevue_type_template_id_0caaa8c0_render,
18922
+ taskUnionExaminevue_type_template_id_0caaa8c0_staticRenderFns,
18843
18923
  false,
18844
18924
  null,
18845
18925
  null,
@@ -20312,8 +20392,8 @@ popover_src_main.install = function (Vue) {
20312
20392
  };
20313
20393
 
20314
20394
  /* harmony default export */ var popover = (popover_src_main);
20315
- // 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=95bbce2e&
20316
- var mainvue_type_template_id_95bbce2e_render = function () {
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=510cbd18&
20396
+ var mainvue_type_template_id_510cbd18_render = function () {
20317
20397
  var _vm = this
20318
20398
  var _h = _vm.$createElement
20319
20399
  var _c = _vm._self._c || _h
@@ -20416,11 +20496,11 @@ var mainvue_type_template_id_95bbce2e_render = function () {
20416
20496
  1
20417
20497
  )
20418
20498
  }
20419
- var mainvue_type_template_id_95bbce2e_staticRenderFns = []
20420
- mainvue_type_template_id_95bbce2e_render._withStripped = true
20499
+ var mainvue_type_template_id_510cbd18_staticRenderFns = []
20500
+ mainvue_type_template_id_510cbd18_render._withStripped = true
20421
20501
 
20422
20502
 
20423
- // CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=95bbce2e&
20503
+ // CONCATENATED MODULE: ./packages/checkbox/src/main.vue?vue&type=template&id=510cbd18&
20424
20504
 
20425
20505
  // 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&
20426
20506
  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; };
@@ -20507,6 +20587,10 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
20507
20587
  type: String,
20508
20588
  default: 'round'
20509
20589
  },
20590
+ disabledValue: {
20591
+ type: String,
20592
+ default: ''
20593
+ },
20510
20594
  iconSize: {
20511
20595
  type: [String, Number],
20512
20596
  default: '20px'
@@ -20579,6 +20663,21 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
20579
20663
  this.newData = val;
20580
20664
  },
20581
20665
 
20666
+ deep: true,
20667
+ immediate: true
20668
+ },
20669
+ disabledValue: {
20670
+ handler: function handler(val) {
20671
+ var _this2 = this;
20672
+
20673
+ this.newData.map(function (item) {
20674
+ 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.value];
20676
+
20677
+ item.disabled = val.indexOf(item.value) != -1;
20678
+ });
20679
+ },
20680
+
20582
20681
  deep: true,
20583
20682
  immediate: true
20584
20683
  }
@@ -20603,7 +20702,7 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
20603
20702
  this.$refs.checkboxGroup.toggleAll(val);
20604
20703
  },
20605
20704
  getSysCode: function getSysCode() {
20606
- var _this2 = this;
20705
+ var _this3 = this;
20607
20706
 
20608
20707
  var url = this.url,
20609
20708
  method = this.method,
@@ -20626,15 +20725,16 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
20626
20725
 
20627
20726
  if (status == 'success' || rCode === 0 || status === true) {
20628
20727
  [].concat(data || results).map(function (item) {
20629
- item.name = _this2.allowHtml ? item[sysAppCode ? 'shortName' : _this2.labelKey] : item[sysAppCode ? 'shortName' : _this2.labelKey].replace(/<[^>]+>/g, '');
20630
- item.value = item[sysAppCode ? 'cciValue' : _this2.value];
20728
+ item.name = _this3.allowHtml ? item[sysAppCode ? 'shortName' : _this3.labelKey] : item[sysAppCode ? 'shortName' : _this3.labelKey].replace(/<[^>]+>/g, '');
20729
+ item.value = item[sysAppCode ? 'cciValue' : _this3.value];
20730
+ item.disabled = _this3.disabledValue.indexOf(item.value) != -1;
20631
20731
  });
20632
- _this2.newData = data || results;
20732
+ _this3.newData = data || results;
20633
20733
  } else {
20634
- _this2.$toast(message);
20734
+ _this3.$toast(message);
20635
20735
  }
20636
20736
  }).catch(function (err) {
20637
- _this2.$toast(err.message);
20737
+ _this3.$toast(err.message);
20638
20738
  });
20639
20739
  }
20640
20740
  }
@@ -20651,8 +20751,8 @@ var checkbox_src_mainvue_type_script_lang_js_extends = Object.assign || function
20651
20751
 
20652
20752
  var checkbox_src_main_component = normalizeComponent(
20653
20753
  packages_checkbox_src_mainvue_type_script_lang_js_,
20654
- mainvue_type_template_id_95bbce2e_render,
20655
- mainvue_type_template_id_95bbce2e_staticRenderFns,
20754
+ mainvue_type_template_id_510cbd18_render,
20755
+ mainvue_type_template_id_510cbd18_staticRenderFns,
20656
20756
  false,
20657
20757
  null,
20658
20758
  null,
@@ -24343,7 +24443,7 @@ if (typeof window !== 'undefined' && window.Vue) {
24343
24443
  }
24344
24444
 
24345
24445
  /* harmony default export */ var src = __webpack_exports__["default"] = ({
24346
- version: '0.2.91',
24446
+ version: '0.2.93',
24347
24447
  install: install,
24348
24448
  Button: packages_button,
24349
24449
  ButtonGroup: button_group,