eoss-ui 0.7.87 → 0.7.89

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.
@@ -10202,8 +10202,8 @@ childrenvue_type_template_id_271bb842_render._withStripped = true
10202
10202
 
10203
10203
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=271bb842&
10204
10204
 
10205
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=8d40b3a8&
10206
- var columnvue_type_template_id_8d40b3a8_render = function () {
10205
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=466ae6f8&
10206
+ var columnvue_type_template_id_466ae6f8_render = function () {
10207
10207
  var _vm = this
10208
10208
  var _h = _vm.$createElement
10209
10209
  var _c = _vm._self._c || _h
@@ -11013,11 +11013,11 @@ var columnvue_type_template_id_8d40b3a8_render = function () {
11013
11013
  2
11014
11014
  )
11015
11015
  }
11016
- var columnvue_type_template_id_8d40b3a8_staticRenderFns = []
11017
- columnvue_type_template_id_8d40b3a8_render._withStripped = true
11016
+ var columnvue_type_template_id_466ae6f8_staticRenderFns = []
11017
+ columnvue_type_template_id_466ae6f8_render._withStripped = true
11018
11018
 
11019
11019
 
11020
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=8d40b3a8&
11020
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=466ae6f8&
11021
11021
 
11022
11022
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=script&lang=js&
11023
11023
 
@@ -11668,6 +11668,7 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11668
11668
  },
11669
11669
  isForm: function isForm() {
11670
11670
  var type = this.type ? this.type.toLowerCase() : '';
11671
+ console.log('type', type);
11671
11672
  var flag = this.form && ['input', 'text', 'textarea', 'checkbox', 'radio', 'select', 'handle', 'date', 'year', 'month', 'date', 'dates', 'week', 'datetime', 'datetimerange', 'daterange', 'monthrange', 'quarter', 'halfyear', 'switch', 'selector', 'ganged', 'number'].indexOf(type) > -1 || ['space', 'slot', 'component'].indexOf(type) > -1;
11672
11673
  return flag;
11673
11674
  },
@@ -11791,6 +11792,7 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11791
11792
  return Array.isArray(types) ? types.includes(type) : type == types;
11792
11793
  },
11793
11794
  getOptions: function getOptions(config) {
11795
+ console.log('getOptions config', config);
11794
11796
  var option = config && config[this.field || this.prop];
11795
11797
  return option && (typeof option === 'undefined' ? 'undefined' : columnvue_type_script_lang_js_typeof(option)) == 'object' ? columnvue_type_script_lang_js_extends({}, this.formOption, option) : this.formOption;
11796
11798
  },
@@ -11809,10 +11811,15 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11809
11811
  var field = this.field || this.prop;
11810
11812
  var data = this.option;
11811
11813
  var str = '';
11812
- if (utils_util.isObject(rows[field])) {
11813
- str = rows[field][this.labelKey] || rows[field]['name'] || rows[field]['label'] || rows[field]['shortName'];
11814
- } else if (Array.isArray(rows[field])) {
11815
- var vals = rows[field].map(function (item) {
11814
+ console.log('rows[field]', rows[field]);
11815
+ var column = rows[field] ? JSON.parse(JSON.stringify(rows[field])) : '';
11816
+ if (column.includes(',')) {
11817
+ column = column.split(',');
11818
+ }
11819
+ if (utils_util.isObject(column)) {
11820
+ str = column[this.labelKey] || column['name'] || column['label'] || column['shortName'];
11821
+ } else if (Array.isArray(column)) {
11822
+ var vals = column.map(function (item) {
11816
11823
  if (utils_util.isObject(item)) {
11817
11824
  return item[_this2.labelKey] || item['name'] || item['label'] || item['shortName'];
11818
11825
  } else {
@@ -11822,21 +11829,21 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11822
11829
  return item;
11823
11830
  }
11824
11831
  });
11825
- str = vals.join(this.symbol ? this.symbol : '-');
11832
+ str = vals.join(this.symbol ? this.symbol : ',');
11826
11833
  } else {
11827
11834
  if (this.valueToString) {
11828
- var _vals = rows[field].split(',').map(function (item) {
11835
+ var _vals = column.split(',').map(function (item) {
11829
11836
  if (data && data.length && utils_util.isObject(data[0])) {
11830
11837
  return _this2.getLabel(data, item);
11831
11838
  }
11832
11839
  return item;
11833
11840
  });
11834
- str = _vals.join(this.symbol ? this.symbol : '-');
11841
+ str = _vals.join(this.symbol ? this.symbol : ',');
11835
11842
  } else {
11836
11843
  if (data && data.length && utils_util.isObject(data[0])) {
11837
- str = this.getLabel(data, rows[field]);
11844
+ str = this.getLabel(data, column);
11838
11845
  } else {
11839
- str = rows[field];
11846
+ str = column;
11840
11847
  }
11841
11848
  }
11842
11849
  }
@@ -11957,8 +11964,8 @@ function columnvue_type_script_lang_js_asyncToGenerator(fn) { return function ()
11957
11964
 
11958
11965
  var column_component = normalizeComponent(
11959
11966
  src_columnvue_type_script_lang_js_,
11960
- columnvue_type_template_id_8d40b3a8_render,
11961
- columnvue_type_template_id_8d40b3a8_staticRenderFns,
11967
+ columnvue_type_template_id_466ae6f8_render,
11968
+ columnvue_type_template_id_466ae6f8_staticRenderFns,
11962
11969
  false,
11963
11970
  null,
11964
11971
  null,
@@ -11966,7 +11973,7 @@ var column_component = normalizeComponent(
11966
11973
 
11967
11974
  )
11968
11975
 
11969
- /* harmony default export */ var column = (column_component.exports);
11976
+ /* harmony default export */ var src_column = (column_component.exports);
11970
11977
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=script&lang=js&
11971
11978
  //
11972
11979
  //
@@ -11992,7 +11999,7 @@ var column_component = normalizeComponent(
11992
11999
  /* harmony default export */ var childrenvue_type_script_lang_js_ = ({
11993
12000
  name: 'Children',
11994
12001
  components: {
11995
- column: column
12002
+ column: src_column
11996
12003
  },
11997
12004
  props: {
11998
12005
  dragSort: Boolean,
@@ -28270,8 +28277,8 @@ form_src_main.install = function (Vue) {
28270
28277
  };
28271
28278
 
28272
28279
  /* harmony default export */ var packages_form = (form_src_main);
28273
- // 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=2e509c0a&
28274
- var mainvue_type_template_id_2e509c0a_render = function () {
28280
+ // 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=533c9d4c&
28281
+ var mainvue_type_template_id_533c9d4c_render = function () {
28275
28282
  var _vm = this
28276
28283
  var _h = _vm.$createElement
28277
28284
  var _c = _vm._self._c || _h
@@ -31288,11 +31295,11 @@ var mainvue_type_template_id_2e509c0a_render = function () {
31288
31295
  )
31289
31296
  : _vm._e()
31290
31297
  }
31291
- var mainvue_type_template_id_2e509c0a_staticRenderFns = []
31292
- mainvue_type_template_id_2e509c0a_render._withStripped = true
31298
+ var mainvue_type_template_id_533c9d4c_staticRenderFns = []
31299
+ mainvue_type_template_id_533c9d4c_render._withStripped = true
31293
31300
 
31294
31301
 
31295
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=2e509c0a&
31302
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=533c9d4c&
31296
31303
 
31297
31304
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=7b4f1542&
31298
31305
  var CommonOpinionsvue_type_template_id_7b4f1542_render = function () {
@@ -49951,11 +49958,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
49951
49958
  });
49952
49959
  },
49953
49960
 
49954
- /**
49955
- * saveInfo
49956
- * @desc:暂存
49957
- * @author liufan
49958
- * @date 2022年9月9日
49961
+ /**
49962
+ * saveInfo
49963
+ * @desc:暂存
49964
+ * @author liufan
49965
+ * @date 2022年9月9日
49959
49966
  **/
49960
49967
  saveInfo: function saveInfo(type, btn) {
49961
49968
  var _this13 = this;
@@ -50017,11 +50024,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50017
50024
  });
50018
50025
  },
50019
50026
 
50020
- /**
50021
- * rejectBtn
50022
- * @desc:点击驳回
50023
- * @author liufan
50024
- * @date 2022年5月25日
50027
+ /**
50028
+ * rejectBtn
50029
+ * @desc:点击驳回
50030
+ * @author liufan
50031
+ * @date 2022年5月25日
50025
50032
  **/
50026
50033
  rejectBtn: function rejectBtn() {
50027
50034
  var _this15 = this;
@@ -50039,11 +50046,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50039
50046
  }
50040
50047
  },
50041
50048
 
50042
- /**
50043
- * taskReadBtn
50044
- * @desc:点击分阅
50045
- * @author liufan
50046
- * @date 2022年5月25日
50049
+ /**
50050
+ * taskReadBtn
50051
+ * @desc:点击分阅
50052
+ * @author liufan
50053
+ * @date 2022年5月25日
50047
50054
  **/
50048
50055
  taskReadBtn: function taskReadBtn() {
50049
50056
  var _this16 = this;
@@ -50062,11 +50069,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50062
50069
  }
50063
50070
  },
50064
50071
 
50065
- /**
50066
- * getFind
50067
- * @desc:获取通知方式
50068
- * @author liufan
50069
- * @date 2022年5月25日
50072
+ /**
50073
+ * getFind
50074
+ * @desc:获取通知方式
50075
+ * @author liufan
50076
+ * @date 2022年5月25日
50070
50077
  **/
50071
50078
  getFind: function getFind() {
50072
50079
  var _this17 = this;
@@ -50132,12 +50139,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50132
50139
  });
50133
50140
  },
50134
50141
 
50135
- /**
50136
- * endFlows
50137
- * @desc:直接办结
50138
- * @author liufan
50139
- * @param {Object} res 直接办结数据
50140
- * @date 2022年5月25日
50142
+ /**
50143
+ * endFlows
50144
+ * @desc:直接办结
50145
+ * @author liufan
50146
+ * @param {Object} res 直接办结数据
50147
+ * @date 2022年5月25日
50141
50148
  **/
50142
50149
  endFlows: function endFlows(res) {
50143
50150
  var _this19 = this;
@@ -50192,12 +50199,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50192
50199
  }).catch(function (e) {});
50193
50200
  },
50194
50201
 
50195
- /**
50196
- * goView
50197
- * @desc:更多流程按钮操作
50198
- * @author liufan
50199
- * @param {Object} res 当前点击操作按钮数据
50200
- * @date 2022年5月25日
50202
+ /**
50203
+ * goView
50204
+ * @desc:更多流程按钮操作
50205
+ * @author liufan
50206
+ * @param {Object} res 当前点击操作按钮数据
50207
+ * @date 2022年5月25日
50201
50208
  **/
50202
50209
  goView: function goView(res) {
50203
50210
  // 驳回并办结:rejectAndEndHtml
@@ -50284,11 +50291,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50284
50291
  // isCanStartSubFlow
50285
50292
  },
50286
50293
 
50287
- /**
50288
- * toTakeAdvice
50289
- * @desc:征求意见
50290
- * @author liufan
50291
- * @date 2022年9月29日
50294
+ /**
50295
+ * toTakeAdvice
50296
+ * @desc:征求意见
50297
+ * @author liufan
50298
+ * @date 2022年9月29日
50292
50299
  **/
50293
50300
  toTakeAdvice: function toTakeAdvice(res) {
50294
50301
  var _this21 = this;
@@ -50332,11 +50339,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50332
50339
  });
50333
50340
  },
50334
50341
 
50335
- /**
50336
- * toStartDraf
50337
- * @desc: 稿件递送、联合审核、复核
50338
- * @author liufan
50339
- * @date 2022年9月29日
50342
+ /**
50343
+ * toStartDraf
50344
+ * @desc: 稿件递送、联合审核、复核
50345
+ * @author liufan
50346
+ * @date 2022年9月29日
50340
50347
  **/
50341
50348
  toStartDraf: function toStartDraf(res) {
50342
50349
  var _this23 = this;
@@ -50350,11 +50357,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50350
50357
  }
50351
50358
  },
50352
50359
 
50353
- /**
50354
- * toSendMsg
50355
- * @desc:核稿通知
50356
- * @author liufan
50357
- * @date 2022年9月29日
50360
+ /**
50361
+ * toSendMsg
50362
+ * @desc:核稿通知
50363
+ * @author liufan
50364
+ * @date 2022年9月29日
50358
50365
  **/
50359
50366
  toSendMsg: function toSendMsg(res) {
50360
50367
  var _this24 = this;
@@ -50368,11 +50375,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50368
50375
  }
50369
50376
  },
50370
50377
 
50371
- /**
50372
- * toTaskReadAndEnd
50373
- * @desc:分阅并办结
50374
- * @author liufan
50375
- * @date 2022年9月29日
50378
+ /**
50379
+ * toTaskReadAndEnd
50380
+ * @desc:分阅并办结
50381
+ * @author liufan
50382
+ * @date 2022年9月29日
50376
50383
  **/
50377
50384
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
50378
50385
  var _this25 = this;
@@ -50390,11 +50397,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50390
50397
  }
50391
50398
  },
50392
50399
 
50393
- /**
50394
- * rejectAndEnd
50395
- * @desc:驳回并办结
50396
- * @author liufan
50397
- * @date 2022年9月29日
50400
+ /**
50401
+ * rejectAndEnd
50402
+ * @desc:驳回并办结
50403
+ * @author liufan
50404
+ * @date 2022年9月29日
50398
50405
  **/
50399
50406
  rejectAndEnd: function rejectAndEnd(res) {
50400
50407
  var _this26 = this;
@@ -50450,11 +50457,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50450
50457
  });
50451
50458
  },
50452
50459
 
50453
- /**
50454
- * toTransfer
50455
- * @desc:转办
50456
- * @author liufan
50457
- * @date 2022年9月29日
50460
+ /**
50461
+ * toTransfer
50462
+ * @desc:转办
50463
+ * @author liufan
50464
+ * @date 2022年9月29日
50458
50465
  **/
50459
50466
  toTransfer: function toTransfer(res) {
50460
50467
  var _this28 = this;
@@ -50473,11 +50480,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50473
50480
  this.nextNode.customLimitTime = val;
50474
50481
  },
50475
50482
 
50476
- /**
50477
- * getNodeInfo
50478
- * @desc:获取节点信息
50479
- * @author liufan
50480
- * @date 2022年5月25日
50483
+ /**
50484
+ * getNodeInfo
50485
+ * @desc:获取节点信息
50486
+ * @author liufan
50487
+ * @date 2022年5月25日
50481
50488
  **/
50482
50489
  getNodeInfo: function getNodeInfo() {
50483
50490
  var _this29 = this;
@@ -50503,6 +50510,9 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50503
50510
  if (_this29.enableCustomLimitTimeSetting && data.nodeMoreInfo.defaultCustomLimitDays) {
50504
50511
  _this29.nextNode.customLimitTime = _this29.nextNode.customLimitTimeText = data.nodeMoreInfo.defaultCustomLimitDays + '';
50505
50512
  }
50513
+ if (data.nodeMoreInfo.chooseCurrentOrgUserCandidateNeedForbiddenSubDept === true) {
50514
+ _this29.params.only_filid = true;
50515
+ }
50506
50516
  data.otherOrgDisabledObjId && (_this29.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
50507
50517
  data.currentOrgDisabledObjId && (_this29.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
50508
50518
  if (data != null) {
@@ -50585,12 +50595,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50585
50595
  });
50586
50596
  },
50587
50597
 
50588
- /**
50589
- * selecNext
50590
- * @desc:下步节点变化时更新数据
50591
- * @author liufan
50592
- * @param {String} val 当前选中值
50593
- * @date 2022年5月25日
50598
+ /**
50599
+ * selecNext
50600
+ * @desc:下步节点变化时更新数据
50601
+ * @author liufan
50602
+ * @param {String} val 当前选中值
50603
+ * @date 2022年5月25日
50594
50604
  **/
50595
50605
  selecNext: function selecNext(val, type, isDef) {
50596
50606
  var _this30 = this;
@@ -50722,11 +50732,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50722
50732
  this.getNodeInfo();
50723
50733
  },
50724
50734
 
50725
- /**
50726
- * isMultiple
50727
- * @desc:是否多选
50728
- * @author liufan
50729
- * @date 2022年9月13日
50735
+ /**
50736
+ * isMultiple
50737
+ * @desc:是否多选
50738
+ * @author liufan
50739
+ * @date 2022年9月13日
50730
50740
  **/
50731
50741
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
50732
50742
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -50758,11 +50768,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
50758
50768
  }
50759
50769
  },
50760
50770
 
50761
- /**
50762
- * getHedInfo
50763
- * @desc:获取审核页面数据
50764
- * @author liufan
50765
- * @date 2022年5月25日
50771
+ /**
50772
+ * getHedInfo
50773
+ * @desc:获取审核页面数据
50774
+ * @author liufan
50775
+ * @date 2022年5月25日
50766
50776
  **/
50767
50777
  getHedInfo: function getHedInfo() {
50768
50778
  var _this31 = this;
@@ -51072,13 +51082,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51072
51082
  });
51073
51083
  },
51074
51084
 
51075
- /**
51076
- * closeProcess
51077
- * @desc:关闭弹窗
51078
- * @author liufan
51079
- * @param {boolean} val 当前是否办理流程
51080
- * @param {String} type 当前点击的弹窗类型
51081
- * @date 2022年5月25日
51085
+ /**
51086
+ * closeProcess
51087
+ * @desc:关闭弹窗
51088
+ * @author liufan
51089
+ * @param {boolean} val 当前是否办理流程
51090
+ * @param {String} type 当前点击的弹窗类型
51091
+ * @date 2022年5月25日
51082
51092
  **/
51083
51093
  closeProcess: function closeProcess(val, type, closeParent) {
51084
51094
  if (this.closeParent && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
@@ -51098,23 +51108,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51098
51108
  }
51099
51109
  },
51100
51110
 
51101
- /**
51102
- * selectChange
51103
- * @desc:常用语选择
51104
- * @author liufan
51105
- * @param {String} val 选中值
51106
- * @date 2022年5月25日
51111
+ /**
51112
+ * selectChange
51113
+ * @desc:常用语选择
51114
+ * @author liufan
51115
+ * @param {String} val 选中值
51116
+ * @date 2022年5月25日
51107
51117
  **/
51108
51118
  selectChange: function selectChange(val) {
51109
51119
  this.value = val;
51110
51120
  },
51111
51121
 
51112
- /**
51113
- * upDate
51114
- * @desc:修改常用语
51115
- * @author liufan
51116
- * @param {Object} val 修改值
51117
- * @date 2022年5月25日
51122
+ /**
51123
+ * upDate
51124
+ * @desc:修改常用语
51125
+ * @author liufan
51126
+ * @param {Object} val 修改值
51127
+ * @date 2022年5月25日
51118
51128
  **/
51119
51129
  upDate: function upDate(val) {
51120
51130
  this.FormData.id = val.id;
@@ -51122,11 +51132,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51122
51132
  },
51123
51133
 
51124
51134
 
51125
- /**
51126
- * getProcess
51127
- * @desc:获取选择流程
51128
- * @author liufan
51129
- * @date 2022年5月25日
51135
+ /**
51136
+ * getProcess
51137
+ * @desc:获取选择流程
51138
+ * @author liufan
51139
+ * @date 2022年5月25日
51130
51140
  **/
51131
51141
  getProcess: function getProcess(val) {
51132
51142
  var _this32 = this;
@@ -51186,11 +51196,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51186
51196
  });
51187
51197
  },
51188
51198
 
51189
- /**
51190
- * getPendedhistoryList
51191
- * @desc:获取流程列表
51192
- * @author liufan
51193
- * @date 2022年5月25日
51199
+ /**
51200
+ * getPendedhistoryList
51201
+ * @desc:获取流程列表
51202
+ * @author liufan
51203
+ * @date 2022年5月25日
51194
51204
  **/
51195
51205
  getPendedhistoryList: function getPendedhistoryList() {
51196
51206
  var _this33 = this;
@@ -51261,12 +51271,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51261
51271
  beforeSubProcess: function beforeSubProcess() {},
51262
51272
 
51263
51273
  // 提交流程
51264
- /**
51265
- * subProcess
51266
- * @desc:提交流程
51267
- * @author liufan
51268
- * @param {String} formName 当前form表单ref值
51269
- * @date 2022年5月25日
51274
+ /**
51275
+ * subProcess
51276
+ * @desc:提交流程
51277
+ * @author liufan
51278
+ * @param {String} formName 当前form表单ref值
51279
+ * @date 2022年5月25日
51270
51280
  **/
51271
51281
  subProcess: function subProcess(val, type) {
51272
51282
  var _this35 = this;
@@ -51745,8 +51755,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
51745
51755
 
51746
51756
  var flow_src_main_component = normalizeComponent(
51747
51757
  packages_flow_src_mainvue_type_script_lang_js_,
51748
- mainvue_type_template_id_2e509c0a_render,
51749
- mainvue_type_template_id_2e509c0a_staticRenderFns,
51758
+ mainvue_type_template_id_533c9d4c_render,
51759
+ mainvue_type_template_id_533c9d4c_staticRenderFns,
51750
51760
  false,
51751
51761
  null,
51752
51762
  null,
@@ -56656,8 +56666,8 @@ handle_user_src_main.install = function (Vue) {
56656
56666
  };
56657
56667
 
56658
56668
  /* harmony default export */ var handle_user = (handle_user_src_main);
56659
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=793406e8&
56660
- var mainvue_type_template_id_793406e8_render = function () {
56669
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=1e8e12d8&
56670
+ var mainvue_type_template_id_1e8e12d8_render = function () {
56661
56671
  var _vm = this
56662
56672
  var _h = _vm.$createElement
56663
56673
  var _c = _vm._self._c || _h
@@ -56787,7 +56797,13 @@ var mainvue_type_template_id_793406e8_render = function () {
56787
56797
  on: {
56788
56798
  click: function ($event) {
56789
56799
  $event.stopPropagation()
56790
- _vm.handleSelect({ node: ele })
56800
+ _vm.handleSelect(
56801
+ Object.assign(
56802
+ {},
56803
+ { node: ele },
56804
+ item
56805
+ )
56806
+ )
56791
56807
  },
56792
56808
  },
56793
56809
  },
@@ -56904,11 +56920,11 @@ var mainvue_type_template_id_793406e8_render = function () {
56904
56920
  2
56905
56921
  )
56906
56922
  }
56907
- var mainvue_type_template_id_793406e8_staticRenderFns = []
56908
- mainvue_type_template_id_793406e8_render._withStripped = true
56923
+ var mainvue_type_template_id_1e8e12d8_staticRenderFns = []
56924
+ mainvue_type_template_id_1e8e12d8_render._withStripped = true
56909
56925
 
56910
56926
 
56911
- // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=793406e8&
56927
+ // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=1e8e12d8&
56912
56928
 
56913
56929
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=script&lang=js&
56914
56930
  var handler_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; };
@@ -57273,6 +57289,7 @@ var _props;
57273
57289
  handleSelect: function handleSelect(res) {
57274
57290
  var node = res.node;
57275
57291
 
57292
+ this.$emit('click', res);
57276
57293
  if (node.extendData && node.extendData.businessStatus == 0) {
57277
57294
  this.$alert(node.extendData.businessWarnMsg ? node.extendData.businessWarnMsg : '此模块还在开发中', '提示', {
57278
57295
  type: 'warning'
@@ -57367,8 +57384,8 @@ var _props;
57367
57384
 
57368
57385
  var handler_src_main_component = normalizeComponent(
57369
57386
  packages_handler_src_mainvue_type_script_lang_js_,
57370
- mainvue_type_template_id_793406e8_render,
57371
- mainvue_type_template_id_793406e8_staticRenderFns,
57387
+ mainvue_type_template_id_1e8e12d8_render,
57388
+ mainvue_type_template_id_1e8e12d8_staticRenderFns,
57372
57389
  false,
57373
57390
  null,
57374
57391
  null,
@@ -62845,8 +62862,8 @@ login_src_main.install = function (Vue) {
62845
62862
  };
62846
62863
 
62847
62864
  /* harmony default export */ var login = (login_src_main);
62848
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=48272c28&
62849
- var mainvue_type_template_id_48272c28_render = function () {
62865
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=d38ebb62&
62866
+ var mainvue_type_template_id_d38ebb62_render = function () {
62850
62867
  var _vm = this
62851
62868
  var _h = _vm.$createElement
62852
62869
  var _c = _vm._self._c || _h
@@ -62915,6 +62932,9 @@ var mainvue_type_template_id_48272c28_render = function () {
62915
62932
  on: {
62916
62933
  "chang-layout": _vm.changLayout,
62917
62934
  "bus-emit": _vm.busEmit,
62935
+ getOriginParentMenu: function ($event) {
62936
+ _vm.$emit("getOriginParentMenu", $event)
62937
+ },
62918
62938
  },
62919
62939
  },
62920
62940
  "main-default",
@@ -62989,11 +63009,11 @@ var mainvue_type_template_id_48272c28_render = function () {
62989
63009
  )
62990
63010
  : _vm._e()
62991
63011
  }
62992
- var mainvue_type_template_id_48272c28_staticRenderFns = []
62993
- mainvue_type_template_id_48272c28_render._withStripped = true
63012
+ var mainvue_type_template_id_d38ebb62_staticRenderFns = []
63013
+ mainvue_type_template_id_d38ebb62_render._withStripped = true
62994
63014
 
62995
63015
 
62996
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=48272c28&
63016
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=d38ebb62&
62997
63017
 
62998
63018
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=3a1d1142&scoped=true&
62999
63019
  var simplicityvue_type_template_id_3a1d1142_scoped_true_render = function () {
@@ -77066,8 +77086,8 @@ var simplicityTop_component = normalizeComponent(
77066
77086
  )
77067
77087
 
77068
77088
  /* harmony default export */ var simplicityTop = (simplicityTop_component.exports);
77069
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=0c452dea&
77070
- var defaultvue_type_template_id_0c452dea_render = function () {
77089
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=b6763862&
77090
+ var defaultvue_type_template_id_b6763862_render = function () {
77071
77091
  var _vm = this
77072
77092
  var _h = _vm.$createElement
77073
77093
  var _c = _vm._self._c || _h
@@ -77618,11 +77638,11 @@ var defaultvue_type_template_id_0c452dea_render = function () {
77618
77638
  1
77619
77639
  )
77620
77640
  }
77621
- var defaultvue_type_template_id_0c452dea_staticRenderFns = []
77622
- defaultvue_type_template_id_0c452dea_render._withStripped = true
77641
+ var defaultvue_type_template_id_b6763862_staticRenderFns = []
77642
+ defaultvue_type_template_id_b6763862_render._withStripped = true
77623
77643
 
77624
77644
 
77625
- // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=0c452dea&
77645
+ // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=b6763862&
77626
77646
 
77627
77647
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=4160a4c1&
77628
77648
  var userinfovue_type_template_id_4160a4c1_render = function () {
@@ -79622,12 +79642,12 @@ var log = utils_util.getParams('console');
79622
79642
  this.isLoadHomePage = false;
79623
79643
  }
79624
79644
  this.isHeader = params.header;
79625
-
79626
79645
  this.doorIndex = sessionStorage.getItem('doorIndex');
79627
79646
  },
79628
79647
  mounted: function mounted() {
79629
79648
  this.handleListener();
79630
79649
  utils_util.win.addEventListener('popstate', this.stateHandle, false);
79650
+ // this.
79631
79651
  },
79632
79652
 
79633
79653
  methods: {
@@ -80213,6 +80233,7 @@ var log = utils_util.getParams('console');
80213
80233
  } else {
80214
80234
  this.menu = res[0].children;
80215
80235
  this.title = res[0].text;
80236
+ this.$emit('getOriginParentMenu', { title: res[0].text, id: res[0].id });
80216
80237
  }
80217
80238
  if (!this.isDefault || this.isDefault && !this.homePage) {
80218
80239
  this.active = this.getFirst(this.menu[0]).id;
@@ -80706,7 +80727,7 @@ var log = utils_util.getParams('console');
80706
80727
  var _this9 = this;
80707
80728
 
80708
80729
  this.navIds = this.getId(this.menus, page);
80709
- console.log(page);
80730
+ console.log('handleJump page ', page);
80710
80731
  var prevPage = sessionStorage.getItem('jump');
80711
80732
  sessionStorage.setItem('jump', page);
80712
80733
  if (res) {
@@ -81064,8 +81085,8 @@ var log = utils_util.getParams('console');
81064
81085
 
81065
81086
  var default_component = normalizeComponent(
81066
81087
  src_defaultvue_type_script_lang_js_,
81067
- defaultvue_type_template_id_0c452dea_render,
81068
- defaultvue_type_template_id_0c452dea_staticRenderFns,
81088
+ defaultvue_type_template_id_b6763862_render,
81089
+ defaultvue_type_template_id_b6763862_staticRenderFns,
81069
81090
  false,
81070
81091
  null,
81071
81092
  null,
@@ -81154,6 +81175,7 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81154
81175
  //
81155
81176
  //
81156
81177
  //
81178
+ //
81157
81179
 
81158
81180
 
81159
81181
 
@@ -81720,8 +81742,8 @@ function main_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys)
81720
81742
 
81721
81743
  var main_src_main_component = normalizeComponent(
81722
81744
  packages_main_src_mainvue_type_script_lang_js_,
81723
- mainvue_type_template_id_48272c28_render,
81724
- mainvue_type_template_id_48272c28_staticRenderFns,
81745
+ mainvue_type_template_id_d38ebb62_render,
81746
+ mainvue_type_template_id_d38ebb62_staticRenderFns,
81725
81747
  false,
81726
81748
  null,
81727
81749
  null,
@@ -85406,7 +85428,7 @@ function select_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, key
85406
85428
  },
85407
85429
  symbol: {
85408
85430
  type: String,
85409
- default: ''
85431
+ default: ','
85410
85432
  },
85411
85433
  plain: Boolean,
85412
85434
  where: Object,
@@ -85875,8 +85897,12 @@ function select_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, key
85875
85897
  if (!this.hide) {
85876
85898
  if (this.readonly) {
85877
85899
  var dom = [];
85878
- if (Array.isArray(this.models)) {
85879
- dom = this.models.map(function (item) {
85900
+ var models = JSON.parse(JSON.stringify(this.models));
85901
+ if (models.includes(',')) {
85902
+ models = models.split(',');
85903
+ }
85904
+ if (Array.isArray(models)) {
85905
+ dom = models.map(function (item) {
85880
85906
  if (utils_util.isObject(item)) {
85881
85907
  if (!item[_this8.label] && !item.label) {
85882
85908
  return _this8.getLabel(value[_this8.valKey], data);
@@ -85885,15 +85911,16 @@ function select_src_mainvue_type_script_lang_js_objectWithoutProperties(obj, key
85885
85911
  }
85886
85912
  return _this8.getLabel(item, _this8.results);
85887
85913
  });
85888
- } else if (utils_util.isObject(this.models)) {
85889
- if (!this.models[this.label] && !this.models.label) {
85890
- dom = [this.getLabel(this.models[this.valKey], this.results)];
85914
+ } else if (utils_util.isObject(models)) {
85915
+ if (!models[this.label] && !models.label) {
85916
+ dom = [this.getLabel(models[this.valKey], this.results)];
85891
85917
  } else {
85892
- dom = [this.models[this.label] || this.models.label];
85918
+ dom = [models[this.label] || models.label];
85893
85919
  }
85894
85920
  } else {
85895
- dom = [this.getLabel(this.models, this.results)];
85921
+ dom = [this.getLabel(models, this.results)];
85896
85922
  }
85923
+ console.log('dom', dom);
85897
85924
  return h('div', {
85898
85925
  class: [{
85899
85926
  'es-plain': this.plain,
@@ -102438,7 +102465,7 @@ if (typeof window !== 'undefined' && window.Vue) {
102438
102465
  }
102439
102466
 
102440
102467
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
102441
- version: '0.7.87',
102468
+ version: '0.7.89',
102442
102469
  install: install,
102443
102470
  Button: packages_button,
102444
102471
  ButtonGroup: button_group,