eoss-ui 0.4.87 → 0.4.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.
@@ -5355,8 +5355,8 @@ clients_src_main.install = function (Vue) {
5355
5355
  };
5356
5356
 
5357
5357
  /* harmony default export */ var clients = (clients_src_main);
5358
- // 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/main.vue?vue&type=template&id=5ae5ffe4&
5359
- var mainvue_type_template_id_5ae5ffe4_render = function () {
5358
+ // 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/main.vue?vue&type=template&id=8d31e592&
5359
+ var mainvue_type_template_id_8d31e592_render = function () {
5360
5360
  var _vm = this
5361
5361
  var _h = _vm.$createElement
5362
5362
  var _c = _vm._self._c || _h
@@ -5691,11 +5691,11 @@ var mainvue_type_template_id_5ae5ffe4_render = function () {
5691
5691
  1
5692
5692
  )
5693
5693
  }
5694
- var mainvue_type_template_id_5ae5ffe4_staticRenderFns = []
5695
- mainvue_type_template_id_5ae5ffe4_render._withStripped = true
5694
+ var mainvue_type_template_id_8d31e592_staticRenderFns = []
5695
+ mainvue_type_template_id_8d31e592_render._withStripped = true
5696
5696
 
5697
5697
 
5698
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=5ae5ffe4&
5698
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=8d31e592&
5699
5699
 
5700
5700
  // 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/children.vue?vue&type=template&id=796433ee&
5701
5701
  var childrenvue_type_template_id_796433ee_render = function () {
@@ -8422,7 +8422,12 @@ var mainvue_type_script_lang_js_components;
8422
8422
 
8423
8423
  theads: {
8424
8424
  get: function get() {
8425
- return typeof this.thead === 'string' ? this.theadData : this.thead;
8425
+ if (typeof this.thead === 'string') {
8426
+ this.theadData.length && this.setMinWidth(this.theadData);
8427
+ return this.theadData;
8428
+ }
8429
+ this.setMinWidth(this.thead);
8430
+ return this.thead;
8426
8431
  },
8427
8432
  set: function set(val) {
8428
8433
  return val;
@@ -8557,6 +8562,7 @@ var mainvue_type_script_lang_js_components;
8557
8562
  this.getOptions(this.thead);
8558
8563
  }
8559
8564
  this.immediate && this.getTableData();
8565
+ this.chekOpenTotalArea();
8560
8566
  },
8561
8567
  mounted: function mounted() {
8562
8568
  this.datas.length && this.checkSelect(this.checked);
@@ -8579,54 +8585,64 @@ var mainvue_type_script_lang_js_components;
8579
8585
  }
8580
8586
  return false;
8581
8587
  },
8582
- getOptions: function getOptions(res) {
8588
+ setMinWidth: function setMinWidth(obj) {
8583
8589
  var _this2 = this;
8584
8590
 
8585
- res.forEach(function (item) {
8586
- if ((!item.childHead || !item.childHead.length) && (!item.children || !item.children.length) && !item.width && !item.minWidth && item.title) {
8591
+ obj.forEach(function (item) {
8592
+ if (item.childHead && item.childHead.length) {
8593
+ _this2.setMinWidth(item.childHead);
8594
+ } else if (item.children && item.children.length) {
8595
+ _this2.setMinWidth(item.children);
8596
+ } else if (!item.width && !item.minWidth && item.title) {
8587
8597
  var width = item.title.length * 14 + 20;
8588
8598
  if (width > 80) {
8589
8599
  _this2.$set(item, 'minWidth', width);
8590
8600
  }
8591
8601
  }
8602
+ });
8603
+ },
8604
+ getOptions: function getOptions(res) {
8605
+ var _this3 = this;
8606
+
8607
+ res.forEach(function (item) {
8592
8608
  if (item.sysCode || item.url) {
8593
8609
  var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
8594
- var key = _this2.getRequestKey({
8595
- method: _this2.method,
8610
+ var key = _this3.getRequestKey({
8611
+ method: _this3.method,
8596
8612
  url: item.sysCode ? api["u" /* findSysCode */] : item.url,
8597
8613
  params: params,
8598
8614
  data: {}
8599
8615
  });
8600
- if (!_this2.requests.includes(key)) {
8616
+ if (!_this3.requests.includes(key)) {
8601
8617
  utils_util["a" /* default */].ajax({
8602
8618
  url: item.sysCode ? api["u" /* findSysCode */] : item.url,
8603
- method: _this2.method,
8619
+ method: _this3.method,
8604
8620
  params: params,
8605
8621
  data: params
8606
8622
  }).then(function (res) {
8607
8623
  if (res.rCode === 0) {
8608
8624
  if (item.type == 'ganged') {
8609
- _this2.$set(_this2.options, item.field || item.prop, [JSON.parse(JSON.stringify(res.results))]);
8625
+ _this3.$set(_this3.options, item.field || item.prop, [JSON.parse(JSON.stringify(res.results))]);
8610
8626
  } else {
8611
- _this2.$set(_this2.options, item.field || item.prop, JSON.parse(JSON.stringify(res.results)));
8627
+ _this3.$set(_this3.options, item.field || item.prop, JSON.parse(JSON.stringify(res.results)));
8612
8628
  }
8613
- _this2.requests.push(key);
8629
+ _this3.requests.push(key);
8614
8630
  } else {
8615
8631
  var msg = res.msg || '系统错误,请联系管理员!';
8616
- _this2.$message.error(msg);
8632
+ _this3.$message.error(msg);
8617
8633
  }
8618
8634
  }).catch(function (err) {
8619
8635
  if (err.message && err.message !== 'canceled') {
8620
- _this2.$message.error(err.message);
8636
+ _this3.$message.error(err.message);
8621
8637
  }
8622
8638
  });
8623
8639
  }
8624
8640
  } else {
8625
8641
  if (item.childHead && item.childHead.length) {
8626
- _this2.getOptions(item.childHead);
8642
+ _this3.getOptions(item.childHead);
8627
8643
  }
8628
8644
  if (item.children && item.children.length) {
8629
- _this2.getOptions(item.children);
8645
+ _this3.getOptions(item.children);
8630
8646
  }
8631
8647
  }
8632
8648
  });
@@ -8635,7 +8651,7 @@ var mainvue_type_script_lang_js_components;
8635
8651
  return utils_util["a" /* default */].getObjectType(item) === 'object';
8636
8652
  },
8637
8653
  chekOpenTotalArea: function chekOpenTotalArea() {
8638
- var _this3 = this;
8654
+ var _this4 = this;
8639
8655
 
8640
8656
  if (this.total || this.showSummary) {
8641
8657
  this.showTotal = true;
@@ -8644,7 +8660,7 @@ var mainvue_type_script_lang_js_components;
8644
8660
  var arr = JSON.parse(JSON.stringify(this.theads));
8645
8661
  arr.forEach(function (item) {
8646
8662
  if (item.total) {
8647
- _this3.showTotal = true;
8663
+ _this4.showTotal = true;
8648
8664
  }
8649
8665
  });
8650
8666
  },
@@ -8677,27 +8693,27 @@ var mainvue_type_script_lang_js_components;
8677
8693
  });
8678
8694
  },
8679
8695
  checkSelect: function checkSelect(newVal) {
8680
- var _this4 = this;
8696
+ var _this5 = this;
8681
8697
 
8682
8698
  this.$nextTick(function () {
8683
8699
  if (utils_util["a" /* default */].getObjectType(newVal) === 'array') {
8684
8700
  newVal.forEach(function (row) {
8685
8701
  if (utils_util["a" /* default */].isObject(row)) {
8686
- _this4.$refs.oaTable.toggleRowSelection(row, true);
8687
- } else _this4.datas.forEach(function (item) {
8688
- if (item[_this4.checkedKey] === row) {
8689
- _this4.$refs.oaTable.toggleRowSelection(item, true);
8702
+ _this5.$refs.oaTable.toggleRowSelection(row, true);
8703
+ } else _this5.datas.forEach(function (item) {
8704
+ if (item[_this5.checkedKey] === row) {
8705
+ _this5.$refs.oaTable.toggleRowSelection(item, true);
8690
8706
  return;
8691
8707
  }
8692
8708
  });
8693
8709
  });
8694
8710
  } else if (newVal === true) {
8695
- _this4.toggleAllSelection();
8711
+ _this5.toggleAllSelection();
8696
8712
  }
8697
8713
  });
8698
8714
  },
8699
8715
  getTheads: function getTheads() {
8700
- var _this5 = this;
8716
+ var _this6 = this;
8701
8717
 
8702
8718
  utils_util["a" /* default */].ajax({
8703
8719
  url: this.thead,
@@ -8709,27 +8725,27 @@ var mainvue_type_script_lang_js_components;
8709
8725
  if (res.rCode === 0) {
8710
8726
  var results = res.results;
8711
8727
  if (Array.isArray(results)) {
8712
- _this5.theadData = results;
8728
+ _this6.theadData = results;
8713
8729
  } else {
8714
- _this5.theadData = results.theadData || [];
8715
- _this5.list = results.data || results.records || [];
8716
- _this5.config.totalCount = results.count || results.total || results.totalCount;
8717
- _this5.getOptions(_this5.theadData);
8730
+ _this6.theadData = results.theadData || [];
8731
+ _this6.list = results.data || results.records || [];
8732
+ _this6.config.totalCount = results.count || results.total || results.totalCount;
8733
+ _this6.getOptions(_this6.theadData);
8718
8734
  }
8719
8735
  } else {
8720
- _this5.theadData = [];
8736
+ _this6.theadData = [];
8721
8737
  var msg = res.msg || '系统错误,请联系管理员!';
8722
- _this5.$message.error(msg);
8738
+ _this6.$message.error(msg);
8723
8739
  }
8724
- _this5.$emit('success', res);
8740
+ _this6.$emit('success', res);
8725
8741
  }).catch(function (err) {
8726
8742
  if (err.message && err.message !== 'canceled') {
8727
- _this5.$message.error(err.message);
8743
+ _this6.$message.error(err.message);
8728
8744
  }
8729
8745
  });
8730
8746
  },
8731
8747
  getTableData: function getTableData(res) {
8732
- var _this6 = this;
8748
+ var _this7 = this;
8733
8749
 
8734
8750
  var where = void 0;
8735
8751
  var first = void 0;
@@ -8759,27 +8775,27 @@ var mainvue_type_script_lang_js_components;
8759
8775
  params: reqData,
8760
8776
  data: reqData
8761
8777
  }).then(function (res) {
8762
- _this6.tableLoading = false;
8778
+ _this7.tableLoading = false;
8763
8779
  if (res.rCode === 0 || res.status === 'success') {
8764
- var results = _this6.parseData !== undefined ? _this6.parseData(res.results || res.data || res) : res.results || res.data;
8765
- _this6.list = results.data || results.records || results.list || [];
8766
- _this6.config.totalCount = results.count || results.total || results.totalCount;
8767
- _this6.checked && _this6.$nextTick(function () {
8768
- _this6.checkSelect(_this6.checked);
8780
+ var results = _this7.parseData !== undefined ? _this7.parseData(res.results || res.data || res) : res.results || res.data;
8781
+ _this7.list = results.data || results.records || results.list || [];
8782
+ _this7.config.totalCount = results.count || results.total || results.totalCount;
8783
+ _this7.checked && _this7.$nextTick(function () {
8784
+ _this7.checkSelect(_this7.checked);
8769
8785
  });
8770
8786
  } else {
8771
- _this6.list = [];
8787
+ _this7.list = [];
8772
8788
  //this.tableHeight = false;
8773
8789
  var msg = res.msg || '系统错误,请联系管理员!';
8774
- _this6.$message.error(msg);
8790
+ _this7.$message.error(msg);
8775
8791
  }
8776
- _this6.$emit('success', res);
8792
+ _this7.$emit('success', res);
8777
8793
  }).catch(function (err) {
8778
8794
  //this.tableHeight = false;
8779
8795
  if (err.message && err.message !== 'canceled') {
8780
- _this6.$message.error(err.message);
8796
+ _this7.$message.error(err.message);
8781
8797
  }
8782
- _this6.tableLoading = false;
8798
+ _this7.tableLoading = false;
8783
8799
  });
8784
8800
  },
8785
8801
  selectionChange: function selectionChange(data) {
@@ -8824,7 +8840,7 @@ var mainvue_type_script_lang_js_components;
8824
8840
  this.$emit('change', data, this.datas);
8825
8841
  },
8826
8842
  handleAjax: function handleAjax(handle, row) {
8827
- var _this7 = this;
8843
+ var _this8 = this;
8828
8844
 
8829
8845
  this.changeLoading(true, handle.text + '\u4E2D...');
8830
8846
  var params = handle.param || {};
@@ -8880,9 +8896,9 @@ var mainvue_type_script_lang_js_components;
8880
8896
  method: handle.method,
8881
8897
  format: handle.format
8882
8898
  }).then(function (res) {
8883
- _this7.changeLoading(false);
8899
+ _this8.changeLoading(false);
8884
8900
  if (res.rCode === 0) {
8885
- _this7.$message({
8901
+ _this8.$message({
8886
8902
  message: handle.text + '\u6210\u529F',
8887
8903
  duration: 2000,
8888
8904
  type: 'success',
@@ -8890,17 +8906,17 @@ var mainvue_type_script_lang_js_components;
8890
8906
  var first = Object.prototype.hasOwnProperty.call(handle, 'first') ? handle.first : false;
8891
8907
  var reload = handle.reload || true;
8892
8908
  if (reload) {
8893
- _this7.reload({}, first);
8909
+ _this8.reload({}, first);
8894
8910
  }
8895
8911
  }
8896
8912
  });
8897
8913
  } else {
8898
- _this7.$message.error(res.msg || handle.text + '\u5931\u8D25\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\uFF01');
8914
+ _this8.$message.error(res.msg || handle.text + '\u5931\u8D25\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\uFF01');
8899
8915
  }
8900
8916
  }).catch(function (err) {
8901
- _this7.changeLoading(false);
8917
+ _this8.changeLoading(false);
8902
8918
  if (err.message && err.message !== 'canceled') {
8903
- _this7.$message.error(err.message);
8919
+ _this8.$message.error(err.message);
8904
8920
  }
8905
8921
  });
8906
8922
  },
@@ -8925,7 +8941,7 @@ var mainvue_type_script_lang_js_components;
8925
8941
  return data_table_src_mainvue_type_script_lang_js_extends({}, obj, item);
8926
8942
  },
8927
8943
  handleClick: function handleClick(res) {
8928
- var _this8 = this;
8944
+ var _this9 = this;
8929
8945
 
8930
8946
  var row = res.row,
8931
8947
  handle = res.handle;
@@ -8961,7 +8977,7 @@ var mainvue_type_script_lang_js_components;
8961
8977
  cancelButtonText: '取消',
8962
8978
  type: 'warning'
8963
8979
  }).then(function () {
8964
- _this8.handleAjax(handle, rows);
8980
+ _this9.handleAjax(handle, rows);
8965
8981
  }).catch(function () {});
8966
8982
  } else {
8967
8983
  this.handleAjax(handle, rows);
@@ -9154,40 +9170,40 @@ var mainvue_type_script_lang_js_components;
9154
9170
  }
9155
9171
  },
9156
9172
  resetHeight: function resetHeight(warn) {
9157
- var _this9 = this;
9173
+ var _this10 = this;
9158
9174
 
9159
9175
  this.$nextTick(function () {
9160
- if (_this9.full && !_this9.height && !_this9.maxHeight) {
9161
- var height = _this9.$el.parentNode.offsetHeight;
9176
+ if (_this10.full && !_this10.height && !_this10.maxHeight) {
9177
+ var height = _this10.$el.parentNode.offsetHeight;
9162
9178
  if (height) {
9163
- height = parseInt(utils_util["a" /* default */].getStyle(_this9.$el.parentNode, 'height', '%'), 10);
9164
- height = (height == NaN ? 0 : height) - parseInt(utils_util["a" /* default */].getStyle(_this9.$el.parentNode, 'padding-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(_this9.$el.parentNode, 'padding-bottom'), 10);
9165
- for (var i = 0; i < _this9.$el.parentNode.childNodes.length; i++) {
9166
- var ele = _this9.$el.parentNode.childNodes[i];
9167
- if (ele !== _this9.$el && ele.offsetHeight !== undefined) {
9179
+ height = parseInt(utils_util["a" /* default */].getStyle(_this10.$el.parentNode, 'height', '%'), 10);
9180
+ height = (height == NaN ? 0 : height) - parseInt(utils_util["a" /* default */].getStyle(_this10.$el.parentNode, 'padding-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(_this10.$el.parentNode, 'padding-bottom'), 10);
9181
+ for (var i = 0; i < _this10.$el.parentNode.childNodes.length; i++) {
9182
+ var ele = _this10.$el.parentNode.childNodes[i];
9183
+ if (ele !== _this10.$el && ele.offsetHeight !== undefined) {
9168
9184
  height = height - ele.offsetHeight - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-top'), 10) - parseInt(utils_util["a" /* default */].getStyle(ele, 'margin-bottom'), 10);
9169
9185
  }
9170
9186
  }
9171
- height -= _this9.showToolbar ? 45 : 0;
9172
- height -= _this9.page === false ? 0 : 46;
9173
- height -= _this9.title ? _this9.$refs.title.offsetHeight : 0;
9174
- height -= parseInt(utils_util["a" /* default */].getStyle(_this9.$refs.esTableContent, 'padding-top'), 10);
9175
- height -= parseInt(utils_util["a" /* default */].getStyle(_this9.$refs.esTableContent, 'padding-bottom'), 10);
9176
- var emptyText = _this9.$refs.esTableContent.querySelector('.el-table__empty-text');
9187
+ height -= _this10.showToolbar ? 45 : 0;
9188
+ height -= _this10.page === false ? 0 : 46;
9189
+ height -= _this10.title ? _this10.$refs.title.offsetHeight : 0;
9190
+ height -= parseInt(utils_util["a" /* default */].getStyle(_this10.$refs.esTableContent, 'padding-top'), 10);
9191
+ height -= parseInt(utils_util["a" /* default */].getStyle(_this10.$refs.esTableContent, 'padding-bottom'), 10);
9192
+ var emptyText = _this10.$refs.esTableContent.querySelector('.el-table__empty-text');
9177
9193
  var eht = 0;
9178
9194
  if (emptyText) {
9179
9195
  eht = emptyText.offsetHeight;
9180
- var thead = _this9.$refs.esTableContent.querySelector('.el-table__header');
9196
+ var thead = _this10.$refs.esTableContent.querySelector('.el-table__header');
9181
9197
  thead && (eht += thead.offsetHeight);
9182
9198
  }
9183
9199
  if (height > 1 && height - eht > 1) {
9184
- _this9.tableHeight = height;
9200
+ _this10.tableHeight = height;
9185
9201
  } else {
9186
- console.warn(_this9.$el.parentNode, '\u83B7\u53D6\u4E0D\u5230\u9AD8\u5EA6\uFF01');
9202
+ console.warn(_this10.$el.parentNode, '\u83B7\u53D6\u4E0D\u5230\u9AD8\u5EA6\uFF01');
9187
9203
  }
9188
9204
  } else if (!warn) {
9189
9205
  setTimeout(function () {
9190
- _this9.resetHeight(true);
9206
+ _this10.resetHeight(true);
9191
9207
  }, 1000);
9192
9208
  }
9193
9209
  }
@@ -9215,12 +9231,12 @@ var mainvue_type_script_lang_js_components;
9215
9231
  this.$emit('sort-change', res);
9216
9232
  },
9217
9233
  mergeThead: function mergeThead(res) {
9218
- var _this10 = this;
9234
+ var _this11 = this;
9219
9235
 
9220
9236
  this.theadData = res;
9221
9237
  this.icon = true;
9222
9238
  setTimeout(function () {
9223
- _this10.show = true;
9239
+ _this11.show = true;
9224
9240
  }, 100);
9225
9241
  }
9226
9242
  }
@@ -9237,8 +9253,8 @@ var mainvue_type_script_lang_js_components;
9237
9253
 
9238
9254
  var data_table_src_main_component = normalizeComponent(
9239
9255
  packages_data_table_src_mainvue_type_script_lang_js_,
9240
- mainvue_type_template_id_5ae5ffe4_render,
9241
- mainvue_type_template_id_5ae5ffe4_staticRenderFns,
9256
+ mainvue_type_template_id_8d31e592_render,
9257
+ mainvue_type_template_id_8d31e592_staticRenderFns,
9242
9258
  false,
9243
9259
  null,
9244
9260
  null,
@@ -12636,8 +12652,8 @@ error_page_src_main.install = function (Vue) {
12636
12652
  };
12637
12653
 
12638
12654
  /* harmony default export */ var error_page = (error_page_src_main);
12639
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=57e29fe4&
12640
- var mainvue_type_template_id_57e29fe4_render = function () {
12655
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=1499355a&
12656
+ var mainvue_type_template_id_1499355a_render = function () {
12641
12657
  var _vm = this
12642
12658
  var _h = _vm.$createElement
12643
12659
  var _c = _vm._self._c || _h
@@ -13247,7 +13263,12 @@ var mainvue_type_template_id_57e29fe4_render = function () {
13247
13263
  _vm.style(item),
13248
13264
  attrs: {
13249
13265
  "label-width":
13250
- _vm.labelWidth,
13266
+ item.showLabel !==
13267
+ false &&
13268
+ item.label &&
13269
+ _vm.showLabel
13270
+ ? _vm.labelWidth
13271
+ : "0",
13251
13272
  prop: item.name,
13252
13273
  rules:
13253
13274
  _vm.getRules(
@@ -15899,7 +15920,12 @@ var mainvue_type_template_id_57e29fe4_render = function () {
15899
15920
  ],
15900
15921
  style: _vm.style(item),
15901
15922
  attrs: {
15902
- "label-width": _vm.labelWidth,
15923
+ "label-width":
15924
+ item.showLabel !== false &&
15925
+ item.label &&
15926
+ _vm.showLabel
15927
+ ? _vm.labelWidth
15928
+ : "0",
15903
15929
  prop: item.name,
15904
15930
  rules: _vm.getRules(item),
15905
15931
  "label-class": [
@@ -18744,7 +18770,12 @@ var mainvue_type_template_id_57e29fe4_render = function () {
18744
18770
  _vm.style(item),
18745
18771
  attrs: {
18746
18772
  "label-width":
18747
- _vm.labelWidth,
18773
+ item.showLabel !==
18774
+ false &&
18775
+ item.label &&
18776
+ _vm.showLabel
18777
+ ? _vm.labelWidth
18778
+ : "0",
18748
18779
  prop: item.name,
18749
18780
  rules:
18750
18781
  _vm.getRules(
@@ -21235,7 +21266,12 @@ var mainvue_type_template_id_57e29fe4_render = function () {
21235
21266
  ],
21236
21267
  style: _vm.style(item),
21237
21268
  attrs: {
21238
- "label-width": _vm.labelWidth,
21269
+ "label-width":
21270
+ item.showLabel !== false &&
21271
+ item.label &&
21272
+ _vm.showLabel
21273
+ ? _vm.labelWidth
21274
+ : "0",
21239
21275
  prop: item.name,
21240
21276
  rules: _vm.getRules(item),
21241
21277
  "label-class": [
@@ -23502,11 +23538,11 @@ var mainvue_type_template_id_57e29fe4_render = function () {
23502
23538
  )
23503
23539
  : _vm._e()
23504
23540
  }
23505
- var mainvue_type_template_id_57e29fe4_staticRenderFns = []
23506
- mainvue_type_template_id_57e29fe4_render._withStripped = true
23541
+ var mainvue_type_template_id_1499355a_staticRenderFns = []
23542
+ mainvue_type_template_id_1499355a_render._withStripped = true
23507
23543
 
23508
23544
 
23509
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=57e29fe4&
23545
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=1499355a&
23510
23546
 
23511
23547
  // CONCATENATED MODULE: ./src/utils/rules.js
23512
23548
  // 手机号
@@ -27370,6 +27406,22 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
27370
27406
  //
27371
27407
  //
27372
27408
  //
27409
+ //
27410
+ //
27411
+ //
27412
+ //
27413
+ //
27414
+ //
27415
+ //
27416
+ //
27417
+ //
27418
+ //
27419
+ //
27420
+ //
27421
+ //
27422
+ //
27423
+ //
27424
+ //
27373
27425
 
27374
27426
 
27375
27427
 
@@ -28497,7 +28549,7 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
28497
28549
  }
28498
28550
  var obj = JSON.parse(JSON.stringify(models));
28499
28551
  if (this.within) {
28500
- //within:把提交数据装到指定属性中
28552
+ //within:把提交数据装到指定属性中(分表)
28501
28553
  var newData = {};
28502
28554
  if (typeof this.within === 'string') {
28503
28555
  newData[this.within] = obj;
@@ -28580,8 +28632,8 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
28580
28632
 
28581
28633
  var form_src_main_component = normalizeComponent(
28582
28634
  packages_form_src_mainvue_type_script_lang_js_,
28583
- mainvue_type_template_id_57e29fe4_render,
28584
- mainvue_type_template_id_57e29fe4_staticRenderFns,
28635
+ mainvue_type_template_id_1499355a_render,
28636
+ mainvue_type_template_id_1499355a_staticRenderFns,
28585
28637
  false,
28586
28638
  null,
28587
28639
  null,
@@ -41326,8 +41378,8 @@ flow_group_src_main.install = function (Vue) {
41326
41378
  };
41327
41379
 
41328
41380
  /* harmony default export */ var flow_group = (flow_group_src_main);
41329
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=2dfec5cf&
41330
- var mainvue_type_template_id_2dfec5cf_render = function () {
41381
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=e47d85b2&
41382
+ var mainvue_type_template_id_e47d85b2_render = function () {
41331
41383
  var _vm = this
41332
41384
  var _h = _vm.$createElement
41333
41385
  var _c = _vm._self._c || _h
@@ -41519,11 +41571,11 @@ var mainvue_type_template_id_2dfec5cf_render = function () {
41519
41571
  2
41520
41572
  )
41521
41573
  }
41522
- var mainvue_type_template_id_2dfec5cf_staticRenderFns = []
41523
- mainvue_type_template_id_2dfec5cf_render._withStripped = true
41574
+ var mainvue_type_template_id_e47d85b2_staticRenderFns = []
41575
+ mainvue_type_template_id_e47d85b2_render._withStripped = true
41524
41576
 
41525
41577
 
41526
- // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=2dfec5cf&
41578
+ // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=e47d85b2&
41527
41579
 
41528
41580
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=script&lang=js&
41529
41581
  var flow_list_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; };
@@ -41804,8 +41856,6 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41804
41856
  };
41805
41857
  },
41806
41858
  theads: function theads() {
41807
- var _this2 = this;
41808
-
41809
41859
  var _that = this;
41810
41860
  return {
41811
41861
  flow: [{
@@ -41826,6 +41876,12 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41826
41876
  align: 'center',
41827
41877
  showOverflowTooltip: true,
41828
41878
  width: 110
41879
+ }, {
41880
+ label: '办理人部门',
41881
+ field: 'deptName',
41882
+ align: 'center',
41883
+ showOverflowTooltip: true,
41884
+ width: 110
41829
41885
  }, {
41830
41886
  label: '状态',
41831
41887
  field: 'pendstate',
@@ -41908,11 +41964,6 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41908
41964
  rules: function rules(rows) {
41909
41965
  return rows.canDelete;
41910
41966
  }
41911
- }, {
41912
- text: '修改',
41913
- rules: function rules(rows) {
41914
- return _this2.modify && rows.pendstate == 2;
41915
- }
41916
41967
  }]
41917
41968
  }],
41918
41969
  preset: this.thead,
@@ -42021,23 +42072,23 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42021
42072
  };
42022
42073
  },
42023
42074
  content: function content() {
42024
- var _this3 = this;
42075
+ var _this2 = this;
42025
42076
 
42026
42077
  var contents = this.contents.map(function (item) {
42027
42078
  if (typeof item === 'string') {
42028
42079
  return {
42029
42080
  type: item,
42030
- toolbar: _this3.toolbars[item],
42031
- thead: _this3.theads[item],
42081
+ toolbar: _this2.toolbars[item],
42082
+ thead: _this2.theads[item],
42032
42083
  showFormBtn: false
42033
42084
  };
42034
42085
  } else {
42035
42086
  if (!Object.prototype.hasOwnProperty.call(item, 'toolbar')) {
42036
- var toolbars = _this3.toolbars[item.type];
42087
+ var toolbars = _this2.toolbars[item.type];
42037
42088
  return flow_list_src_mainvue_type_script_lang_js_extends({}, item, { toolbars: toolbars });
42038
42089
  }
42039
42090
  if (!Object.prototype.hasOwnProperty.call(item, 'thead')) {
42040
- var thead = _this3.theads[item.type];
42091
+ var thead = _this2.theads[item.type];
42041
42092
  return flow_list_src_mainvue_type_script_lang_js_extends({}, item, { thead: thead });
42042
42093
  }
42043
42094
  return item;
@@ -42053,7 +42104,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42053
42104
  }
42054
42105
  },
42055
42106
  thead: function thead() {
42056
- var _this4 = this;
42107
+ var _this3 = this;
42057
42108
 
42058
42109
  var table = [{
42059
42110
  title: '步骤',
@@ -42071,7 +42122,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42071
42122
  align: 'center',
42072
42123
  width: '100',
42073
42124
  render: function render(h, params) {
42074
- return h('span', _this4.getCodeValue(params.row.isEdit, 'is_edit'));
42125
+ return h('span', _this3.getCodeValue(params.row.isEdit, 'is_edit'));
42075
42126
  },
42076
42127
  field: 'isEdit'
42077
42128
  }, {
@@ -42086,7 +42137,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42086
42137
  width: '120',
42087
42138
  align: 'center',
42088
42139
  render: function render(h, params) {
42089
- return h('span', _this4.getCodeValue(params.row.presetType, 'preset_type'));
42140
+ return h('span', _this3.getCodeValue(params.row.presetType, 'preset_type'));
42090
42141
  },
42091
42142
  field: 'presetType'
42092
42143
  }, {
@@ -42130,7 +42181,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42130
42181
  }];
42131
42182
  if (this.presetInfoListHiddenColumns != undefined && this.presetInfoListHiddenColumns != '') {
42132
42183
  table = table.filter(function (items) {
42133
- return _this4.presetInfoListHiddenColumns.indexOf(items.key) == -1;
42184
+ return _this3.presetInfoListHiddenColumns.indexOf(items.key) == -1;
42134
42185
  });
42135
42186
  }
42136
42187
  if (!this.canDelete) table.splice(table.length - 1, 1);
@@ -42183,7 +42234,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42183
42234
  * @date 2022年11月29日
42184
42235
  **/
42185
42236
  handleFormSubmit: function handleFormSubmit(formData) {
42186
- var _this5 = this;
42237
+ var _this4 = this;
42187
42238
 
42188
42239
  this.delLoading = true;
42189
42240
  var params = {
@@ -42195,18 +42246,18 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42195
42246
  var status = res.status,
42196
42247
  message = res.message;
42197
42248
 
42198
- _this5.delLoading = false;
42249
+ _this4.delLoading = false;
42199
42250
  if (status === 'success') {
42200
- _this5.$message.success('删除成功');
42201
- _this5.showDel = false;
42202
- _this5.handleChange();
42251
+ _this4.$message.success('删除成功');
42252
+ _this4.showDel = false;
42253
+ _this4.handleChange();
42203
42254
  } else {
42204
- _this5.$message.error(message || '系统错误,请联系管理员!');
42255
+ _this4.$message.error(message || '系统错误,请联系管理员!');
42205
42256
  }
42206
42257
  }).catch(function (err) {
42207
- _this5.delLoading = false;
42258
+ _this4.delLoading = false;
42208
42259
  if (err.message && err.message !== 'canceled') {
42209
- _this5.$message.error(err.message);
42260
+ _this4.$message.error(err.message);
42210
42261
  }
42211
42262
  });
42212
42263
  },
@@ -42270,7 +42321,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42270
42321
  * @date 2022年11月29日
42271
42322
  **/
42272
42323
  getPressList: function getPressList() {
42273
- var _this6 = this;
42324
+ var _this5 = this;
42274
42325
 
42275
42326
  var historyId = this.historyId,
42276
42327
  pageSize = this.pageSize,
@@ -42286,13 +42337,13 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42286
42337
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
42287
42338
  };
42288
42339
  utils_util["a" /* default */].ajax(params).then(function (res) {
42289
- _this6.pressTableList = res.data;
42290
- _this6.total = res.totalrecords;
42291
- _this6.pressLoading = false;
42340
+ _this5.pressTableList = res.data;
42341
+ _this5.total = res.totalrecords;
42342
+ _this5.pressLoading = false;
42292
42343
  }).catch(function (err) {
42293
- _this6.pressLoading = false;
42344
+ _this5.pressLoading = false;
42294
42345
  if (err.message && err.message !== 'canceled') {
42295
- _this6.$message.error(err.message);
42346
+ _this5.$message.error(err.message);
42296
42347
  }
42297
42348
  });
42298
42349
  },
@@ -42344,7 +42395,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42344
42395
  * @date 2022年11月22日
42345
42396
  **/
42346
42397
  getFlowList: function getFlowList() {
42347
- var _this7 = this;
42398
+ var _this6 = this;
42348
42399
 
42349
42400
  var params = {
42350
42401
  url: api["eb" /* pendedhistoryListJson */],
@@ -42367,26 +42418,26 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42367
42418
  modify = _res$data.modify,
42368
42419
  taskReadName = _res$data.taskReadName;
42369
42420
 
42370
- _this7.loading.close();
42421
+ _this6.loading.close();
42371
42422
  if (status == 'success') {
42372
- _this7.flowTableInfo.adjunctCode = adjunctCode;
42373
- _this7.flowTableInfo.hasAgent = hasAgent;
42374
- _this7.attachmentPaperClipCssStyle = res.data.attachmentPaperClipCssStyle;
42375
- _this7.isShort = isShort;
42376
- _this7.taskReadName = taskReadName;
42377
- _this7.flowData = wfHistoryList;
42378
- _this7.splitReadingData = fyHistoryList;
42379
- _this7.modify = modify;
42380
- _this7.show = true;
42423
+ _this6.flowTableInfo.adjunctCode = adjunctCode;
42424
+ _this6.flowTableInfo.hasAgent = hasAgent;
42425
+ _this6.attachmentPaperClipCssStyle = res.data.attachmentPaperClipCssStyle;
42426
+ _this6.isShort = isShort;
42427
+ _this6.taskReadName = taskReadName;
42428
+ _this6.flowData = wfHistoryList;
42429
+ _this6.splitReadingData = fyHistoryList;
42430
+ _this6.modify = modify;
42431
+ _this6.show = true;
42381
42432
  } else {
42382
- _this7.$message.error(message || '系统错误,请联系管理员!');
42433
+ _this6.$message.error(message || '系统错误,请联系管理员!');
42383
42434
  }
42384
42435
  }).catch(function (err) {
42385
- _this7.loading.close();
42436
+ _this6.loading.close();
42386
42437
  if (err.message && err.message !== 'canceled') {
42387
- _this7.$message.error(err.message);
42438
+ _this6.$message.error(err.message);
42388
42439
  }
42389
- _this7.show = true;
42440
+ _this6.show = true;
42390
42441
  });
42391
42442
  },
42392
42443
 
@@ -42398,7 +42449,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42398
42449
  * @date 2022年11月10日
42399
42450
  **/
42400
42451
  handleClick: function handleClick(val) {
42401
- var _this8 = this;
42452
+ var _this7 = this;
42402
42453
 
42403
42454
  var text = val.handle.text,
42404
42455
  _val$row = val.row,
@@ -42408,7 +42459,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42408
42459
  if (text === '置为失效') {
42409
42460
  if (status == 0) {
42410
42461
  this.$confirm('您确定要置为失效吗?').then(function () {
42411
- _this8.loading = utils_util["a" /* default */].loading(_this8.$loading, '提交中...');
42462
+ _this7.loading = utils_util["a" /* default */].loading(_this7.$loading, '提交中...');
42412
42463
  var param = {
42413
42464
  url: api["j" /* deletePresetInfo */],
42414
42465
  headers: { Accept: 'application/json,text/plain' },
@@ -42419,17 +42470,17 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42419
42470
  var status = res.status,
42420
42471
  message = res.message;
42421
42472
 
42422
- _this8.loading.close();
42473
+ _this7.loading.close();
42423
42474
  if (status === 'success') {
42424
- _this8.$message.success('操作成功');
42425
- _this8.getListInfo();
42475
+ _this7.$message.success('操作成功');
42476
+ _this7.getListInfo();
42426
42477
  } else {
42427
- _this8.$message.error(message || '系统错误,请联系管理员!');
42478
+ _this7.$message.error(message || '系统错误,请联系管理员!');
42428
42479
  }
42429
42480
  }).catch(function (err) {
42430
- _this8.loading.close();
42481
+ _this7.loading.close();
42431
42482
  if (err.message && err.message !== 'canceled') {
42432
- _this8.$message.error(err.message);
42483
+ _this7.$message.error(err.message);
42433
42484
  }
42434
42485
  });
42435
42486
  }).catch(function (e) {
@@ -42464,7 +42515,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42464
42515
  * @date 2022年11月10日
42465
42516
  **/
42466
42517
  getSysInfo: function getSysInfo(code) {
42467
- var _this9 = this;
42518
+ var _this8 = this;
42468
42519
 
42469
42520
  var params = {
42470
42521
  url: api["t" /* findCodeValues */],
@@ -42476,9 +42527,9 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42476
42527
  data = res.data;
42477
42528
 
42478
42529
  if (status == 'success') {
42479
- _this9[code] = data;
42530
+ _this8[code] = data;
42480
42531
  } else {
42481
- _this9.$message.error(message || '系统错误,请联系管理员!');
42532
+ _this8.$message.error(message || '系统错误,请联系管理员!');
42482
42533
  }
42483
42534
  }).catch(function (e) {});
42484
42535
  },
@@ -42490,7 +42541,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42490
42541
  * @date 2022年11月10日
42491
42542
  **/
42492
42543
  getListInfo: function getListInfo() {
42493
- var _this10 = this;
42544
+ var _this9 = this;
42494
42545
 
42495
42546
  var param = {
42496
42547
  url: api["Db" /* toPresetInfoListIndex */],
@@ -42504,18 +42555,18 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42504
42555
  presetInfoListHiddenColumns = _res$data2.presetInfoListHiddenColumns,
42505
42556
  canDelete = _res$data2.canDelete;
42506
42557
 
42507
- _this10.loading.close();
42558
+ _this9.loading.close();
42508
42559
  if (status == 'success') {
42509
- presetInfoList && (_this10.presetData = presetInfoList);
42510
- _this10.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
42511
- _this10.canDelete = canDelete;
42560
+ presetInfoList && (_this9.presetData = presetInfoList);
42561
+ _this9.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
42562
+ _this9.canDelete = canDelete;
42512
42563
  } else {
42513
- _this10.$message.error(message || '系统错误,请联系管理员!');
42564
+ _this9.$message.error(message || '系统错误,请联系管理员!');
42514
42565
  }
42515
42566
  }).catch(function (err) {
42516
- _this10.loading.close();
42567
+ _this9.loading.close();
42517
42568
  if (err.message && err.message !== 'canceled') {
42518
- _this10.$message.error(err.message);
42569
+ _this9.$message.error(err.message);
42519
42570
  }
42520
42571
  });
42521
42572
  }
@@ -42533,8 +42584,8 @@ var flow_list_src_mainvue_type_script_lang_js_components;
42533
42584
 
42534
42585
  var flow_list_src_main_component = normalizeComponent(
42535
42586
  packages_flow_list_src_mainvue_type_script_lang_js_,
42536
- mainvue_type_template_id_2dfec5cf_render,
42537
- mainvue_type_template_id_2dfec5cf_staticRenderFns,
42587
+ mainvue_type_template_id_e47d85b2_render,
42588
+ mainvue_type_template_id_e47d85b2_staticRenderFns,
42538
42589
  false,
42539
42590
  null,
42540
42591
  null,
@@ -47258,8 +47309,8 @@ login_src_main.install = function (Vue) {
47258
47309
  };
47259
47310
 
47260
47311
  /* harmony default export */ var login = (login_src_main);
47261
- // 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=4b1d4233&
47262
- var mainvue_type_template_id_4b1d4233_render = function () {
47312
+ // 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=5d84af02&
47313
+ var mainvue_type_template_id_5d84af02_render = function () {
47263
47314
  var _vm = this
47264
47315
  var _h = _vm.$createElement
47265
47316
  var _c = _vm._self._c || _h
@@ -47684,11 +47735,11 @@ var mainvue_type_template_id_4b1d4233_render = function () {
47684
47735
  1
47685
47736
  )
47686
47737
  }
47687
- var mainvue_type_template_id_4b1d4233_staticRenderFns = []
47688
- mainvue_type_template_id_4b1d4233_render._withStripped = true
47738
+ var mainvue_type_template_id_5d84af02_staticRenderFns = []
47739
+ mainvue_type_template_id_5d84af02_render._withStripped = true
47689
47740
 
47690
47741
 
47691
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=4b1d4233&
47742
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=5d84af02&
47692
47743
 
47693
47744
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=799780ee&
47694
47745
  var userinfovue_type_template_id_799780ee_render = function () {
@@ -50093,13 +50144,9 @@ var log = utils_util["a" /* default */].getParams('console');
50093
50144
  };
50094
50145
  },
50095
50146
  created: function created() {
50147
+ this.homePage = typeof this.loadHomePage === 'string' ? this.loadHomePage : '';
50096
50148
  this.isHeader = utils_util["a" /* default */].getParams('header');
50097
50149
  this.getConfig();
50098
- if (this.remote) {
50099
- this.getMenu();
50100
- } else {
50101
- this.renderMenu();
50102
- }
50103
50150
  if (this.socket) {
50104
50151
  this.initWebSocket();
50105
50152
  }
@@ -50309,12 +50356,8 @@ var log = utils_util["a" /* default */].getParams('console');
50309
50356
  if (i === 'initApplication' && results[i]) {
50310
50357
  this.results[i] = results[i].split(',');
50311
50358
  }
50312
- if (this.loadHomePage) {
50313
- if (typeof this.loadHomePage === 'string') {
50314
- this.homePage = this.loadHomePage;
50315
- } else if (i === 'indexUrl') {
50316
- this.homePage = results[i];
50317
- }
50359
+ if (i === 'indexUrl' && this.loadHomePage) {
50360
+ this.homePage = typeof this.loadHomePage === 'string' ? this.loadHomePage : results[i];
50318
50361
  if (this.isHomePage && this.homePage) {
50319
50362
  if (this.menus && this.menus.length) {
50320
50363
  var ids = null;
@@ -50327,7 +50370,6 @@ var log = utils_util["a" /* default */].getParams('console');
50327
50370
  this.setMenu(this.menus);
50328
50371
  }
50329
50372
  }
50330
- //this.isHomePage && this.handleJump(this.homePage);
50331
50373
  }
50332
50374
  if (i === 'doorIndex' && results[i]) {
50333
50375
  window.open(results[i]);
@@ -50366,11 +50408,21 @@ var log = utils_util["a" /* default */].getParams('console');
50366
50408
  if (utils_util["a" /* default */].getStorage('mainConfig')) {
50367
50409
  var results = JSON.parse(utils_util["a" /* default */].getStorage('mainConfig'));
50368
50410
  this.setConfig(results);
50411
+ if (this.remote) {
50412
+ this.getMenu();
50413
+ } else {
50414
+ this.renderMenu();
50415
+ }
50369
50416
  return true;
50370
50417
  }
50371
50418
  utils_util["a" /* default */].ajax({ url: this.mainConfig }).then(function (res) {
50372
50419
  if (res && res.rCode === 0) {
50373
50420
  _this3.setConfig(res.results, 1);
50421
+ if (_this3.remote) {
50422
+ _this3.getMenu();
50423
+ } else {
50424
+ _this3.renderMenu();
50425
+ }
50374
50426
  } else {
50375
50427
  var msg = res.msg || '系统错误,请联系管理员!';
50376
50428
  _this3.$message.error(msg);
@@ -51415,8 +51467,8 @@ var log = utils_util["a" /* default */].getParams('console');
51415
51467
 
51416
51468
  var main_src_main_component = normalizeComponent(
51417
51469
  packages_main_src_mainvue_type_script_lang_js_,
51418
- mainvue_type_template_id_4b1d4233_render,
51419
- mainvue_type_template_id_4b1d4233_staticRenderFns,
51470
+ mainvue_type_template_id_5d84af02_render,
51471
+ mainvue_type_template_id_5d84af02_staticRenderFns,
51420
51472
  false,
51421
51473
  null,
51422
51474
  null,
@@ -70580,7 +70632,7 @@ if (typeof window !== 'undefined' && window.Vue) {
70580
70632
  }
70581
70633
 
70582
70634
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
70583
- version: '0.4.87',
70635
+ version: '0.4.89',
70584
70636
  install: install,
70585
70637
  Button: packages_button,
70586
70638
  ButtonGroup: button_group,